Log In  

BBS > Superblog
Posts: All | Following    GIFs: All | Postcarts    Off-site: Accounts

Cart #flame_sage-1 | 2025-02-27 | Code ▽ | Embed ▽ | No License
10

First Pico-8 game, been pretty amazed at what some of you are able to pull off. Started off trying to implement a grid-like movement system like StarTropics and went from there. Spent a bit too much time trying to cram in some flashy effects, but I eventually saw my ideas through.

10
3 comments


> A Minesweeper clone — mine!

Cart #minetime-4 | 2025-02-28 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6

I picked the game to learn how PICO-8 handles mouse input and built-in menus, but in the end decided to turn the project in a close-to-respectable cart, perhaps even worth sharing :)


Minesweeper for people in a hurry. Can you clear mines in less than 99 seconds? Perhaps even less than 60?

Controls

> when feeling lost, there's always a smile

Keyboard

  • "x" key to move between screens and to reveal cells

  • "o" to toggle a few options on the unrevealed cells

  • arrow keys to move the pointer unless a curious mouse enters the scene

[ Continue Reading.. ]

6
6 comments


Cart #hesihazasi-0 | 2025-02-27 | Code ▽ | Embed ▽ | No License
8

An attempt at a vertical scroller...
themed upon the (sort-of) popular cryptocurrency Unicorn Fart Dust.
I lifted a few snippets of code such as simplex noise and sprite rotation from the bbs.

Music by https://fettuccini.itch.io/

8
4 comments


Cart #swapshot-4 | 2025-02-27 | Code ▽ | Embed ▽ | No License

0 comments


Cart #teachersimu-0 | 2025-02-26 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
8

This is my first ever pico-8 game !!
The game is basic, just help your students when they need you, and if it's too much, just leave.

The game was actually a homework i had to do in game design class, all the students (and the teacher) are actually based on IRL people

The game over jingle was made by MPRanger

8
4 comments


Cart #hugoyezise-2 | 2025-03-05 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
13

Hi everyone!

This is my first cart, and it's a particle cloud simulation. A simple one with grid optimization.

Also I noticed that PICO-8 doesn't completely remove an element from tables when you do something like table[key] = nil. To solve this I had to implement timed table clears, otherwise the app would just crash from running out of memory. Is it a bug or intended behavior?

Update

Yep, this is actually a bug and here is the minimal setup to reproduce it.

Also, I found a better way to work around this issue. Instead of doing a full grid clear from time to time, it is better to clear 200 random cells each frame.

13
11 comments


Cart #catchthemouse-1 | 2025-02-26 | Code ▽ | Embed ▽ | No License

0 comments


Cart #hamukatsu_f-0 | 2025-02-26 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6

Konnichiwa from Japan!

This is my first work.

This is a simple game in the style of a fighting game.

She is my original character.
Marumoyo-chan!
She likes ham cutlets.

She appears in a fighting game called Uchu Mega Fight!

Dodge enemy attacks!

X(X)。。。Punch
O(Z)。。。Confirm
UP。。。Jump
DOWN。。。Crouch

6
10 comments


Cart #nbimimiga-0 | 2025-02-26 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

2
1 comment


Cart #pots001-1 | 2025-02-26 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
9


Path of the Snail

controls : arrow UP and DOWN

Game is an endless runner, the speed is slowly increasing with time. You can collect stuff, because NOTHING CAN GO WRONG (as the theme of the jam says).

The game has been made during the Brackeys Game Jam, and every asset has been done by me and during the jam. I have spend about 7hours on this game, as I was very limited... but hey, nothing can go wrong :D

Collectibles:

Apple - adds additional HP
Skull - removes HP
Mushroom - gives extra points, switches the controls (UP is DOWN and DOWN is UP)
Carrot - speeds up the game, gives extra points
Banana - slows down the game, removes 1HP
If you have any feedback or additions, please let me know. I can' t promise that I will make a post jam version of the game, but I can feel that some Quality of Life updates would be cool.

[ Continue Reading.. ]

9
5 comments


trouble with animation

i am learning pico 8 and watching some videos to kind of learn how to do things but not copy directly so i actually retain knowledge, and im animating sprite and i got it to work going right and left but not up and down. im wondering if anyone can look at my code and see if its glaringly obvious? its my second day learning game dev in general so any notes would be helpful. here is the code:

okay, the bbs will not let me post my code in a nice little box, it cuts it off very short, so excuse the wall of text if anyone has tips on that too, i would appreciate it.

poke( 0x5f2e, 1 )
pal({[0]=0,4,128,133,1,129,3,139,140,12,14,15,135,138,9,7},1)
-- color palette --

function _init()

position=63

player={
x=63,
y=63,
f=false,
sp=1,
speed=1,
stimer=0,
ani_speed=10,
first_frame=1,
last_frame=4,

}

end

function _update()

--amimation player--
if btn(➡️) then
if player.stimer<player.ani_speed then
player.stimer+=1
else
if player.sp<player.last_frame then
player.sp+=.3
else
player.sp=player.first_frame
end

stimer=0

end
end

if btn(⬅️) then
if player.stimer<player.ani_speed then
player.stimer+=1
else
if player.sp<player.last_frame then
player.sp+=.3
else
player.sp=player.first_frame
end

stimer=0

end
end

if btn(⬇️) then
if player.stimer<player.ani_speed then
player.stimer+=1
else
if player.sp<player.last_frame then
player.sp+=.3
else
player.sp=player.first_frame
end

stimer=0

end
end

if btn(⬆️) then
if player.stimer<player.ani_speed then
player.stimer+=1
else
if player.sp<20 then
player.sp+=.3
else
player.sp=17
end

stimer=0

end
end

--player movement--
if btn (➡️) then
player.x+=player.speed
player.f=false
end
if btn (⬅️) then
player.x-=player.speed
player.f=true
end

if btn (⬇️) then
player.y+=player.speed
player.sp=1
end

if btn (⬆️) then
player.y-=player.speed
player.sp=17
end

end
--speed on roads--
// if mget(flr((player.x+4)/8),flr((player.y+4)/8))==27 then
// player.speed=1.5
// end

function _draw()
cls(7)
map()
spr(player.sp,player.x,player.y,1,1,player.f)

end

2 comments


Cart #jojahumijo-0 | 2025-02-26 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

Hey Fellas, this is my first Pico 8 game with extremely unoptimized code. It was a great time and learning experience.

4
2 comments


Cart #worm_walk-1 | 2025-02-25 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

Walk without rhythm in this game where you just walk to a target

BUT be careful because if your steps are too even you can summon THE WORM

Originally developed for Ludum Dare 55 in 3 hours because I was on vacation :D

I spent the last 2 years polishing this game

music was composed by Hannes Zimmmmmmer

Lisan al gaib!

3
4 comments




Cart #christmaslike-0 | 2025-02-25 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

Controls

use the arrows to move the reindeer and navigate between the menus, use the X key to confirm.
The shots are automatic, it's like vampire survivors.

Rules

Survive the shots and enemies, when you survive for a certain time you will receive rewards. After choosing a reward you will have to survive again. This is the gameplay loop.

Behind The Scenes

This Game is made in 7 days, i made it for The a Game jam, and i win the Game jam.
This is an updated version of the game, the original is in Brazilian Portuguese, so I had to translate the game into English, forgive me for any translation errors.

Credits

the game entirely made by riko, if you want to check out my itchio here is the link:

[ Continue Reading.. ]

2
0 comments


Cart #pehuzohudi-0 | 2025-02-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

Melloh's Revenge

A fun lil' game I made for a friend named Melloh, for her birthday!!

The controls are the arrow keys (or other directional device, such as a DPad)

Try to eat all the "food" that falls into your domain in the ocean!! Get as many as you can.. Before you get bored ;3

1
1 comment


Cart #eabaa-0 | 2025-02-24 | Code ▽ | Embed ▽ | No License
9

34644

play it now
or don't

9
1 comment


5 years after its release, Shift Trap receives an enhanced edition! This great cart by Sol was held back by sound design that wasn't on the same level of polish as the rest of the game. I loved this game and wanted to tighten it up just a little bit to create the definitive version.

SHIFTTRAP - Enhanced improvements:
• Entirely new music composed by me!
• Removed the constant banging of the gears in the background.
• More pleasing sound effects.
• Added difficulty toggles in the menu between normal and hard.
• Cutscene timing and writing was tweaked to be more concise.
• Several new sound effects added to cutscenes.
• Three levels were tweaked slightly to improve the difficulty curve (levels 2, 11 and 21)
• The duration of the hourglass energy was increased to make it more useable and fun.

Cart #shifttrap_enhanced-1 | 2025-02-24 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

[ Continue Reading.. ]

7
5 comments


Eyes Wide Open.

Produced for Lovebyte 2025, on the theme of 'Blind Date'. While we may begin blind, we need fearless vision to succeed in love.

Our story is told in exactly 64 characters:

With eyes wide open, our separated halves find their way as one.

– and animated with just 64 bytes!

More info here: https://github.com/ace-dent/demo-toybox/tree/main/Lovebyte2025

(64 chars)

while(♥)?"⁶t⁶.<𝘷◜ュヲユナらᶜeᵇb,ᶜ8𝘧⁶1⁶c1⁶!5f2c⁵",56*min(t()/3,1)^8,56

2
0 comments


Cart #jakebullet-7 | 2025-02-25 | Code ▽ | Embed ▽ | No License
10

You are JAKE BULLET!!!! Exorcist Extraordinaire................

........and you`re on a mission from God!!

You have been sent into the Bowels of hell to rescue stolen innocent souls who have been body-napped by vile demons and using your mighty Exorcism powers, its your job to save these souls and allow them to ASCEND to heaven!

Only when all the souls are saved, will you be ready for ASCENSION!

HOW TO PLAY

Throw or drop Holy Bombs into the path of a demon to turn them vulnerable for an exorcism then pull out your holy cross for a bolt of GOD POWER!!!!!

Crouching and dropping a bomb will make the bomb not roll, useful when playing for oncomming enemies!

Demons will get angry if you leave it too long to exorcise them so dont dily daly!

  • A Z-Soft Game -

Shaun Watters - Coding & Graphics

Tim Gilbert - Graphics

Mike Richmond - Music

v1.1 - Various Bug Fixes

[ Continue Reading.. ]

10
5 comments




Top    Load More Posts ->