Log In  

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

Cart #popotron-0 | 2025-04-18 | Embed ▽ | License: CC4-BY-NC-SA
7

Essentially Sega Swirl with a few variations.
No instructions - click on a ball or two, you'll soon pick it up.

6 modes, 4 difficulty levels.
Some are too easy, some are ridiculous.
Game-balancing suggestions welcome!

7
1 comment


Cart #accept_reject-1 | 2025-05-28 | Embed ▽ | License: CC4-BY-NC-SA
2

Update 1 5/28/2025 (thank you @Kistaro)

  • Changed banker's offer to remove "low balling"
  • Added number of cases to next round
  • Improved setup code
2
4 comments


Cart #duckdropid-0 | 2025-04-18 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
18

18
7 comments


Cart #duck_rescue-0 | 2025-04-18 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
9

Hi everyone! Here's a little project I had sitting around that I've finally decided to finish. The idea behind the game is simple: collect all the ducks indicated in each level and reach the exit point, which only unlocks once you've rescued them all. Controls are straightforward—pressing any action button makes you accelerate, and you steer the direction of propulsion using the arrow keys.

I think the most fun part is trying to beat each level's record time; skilled players can set really fast times.

This is my first game made with PICO-8, and I've tried to stick closely to its original limitations, such as using only the default 16-color palette and editing maps and sprites directly within the built-in editors. This way, anyone can easily modify levels or tweak the sprites through the graphical editor.

[ Continue Reading.. ]

9
5 comments


Cart #mamacabra-0 | 2025-04-18 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
8

CONTENT WARNING
FLASHING LIGHTS

MAMA CABRA is a goat space shooter. Shoot space foes, save sheepies and smell the flowers. Play it with your mouse.

Made for the I, Rebel game jam 2025. Powered by Atari.

8
4 comments


Happy Birthday, PICO-8!!

9
3 comments


Cart #a10yr_p8-0 | 2025-04-18 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
19

It's been 10 years since PICO-8's release...

Let's celebrate! here's a small cart with some PICO-8 history and trivia.

I've been so glad to have found PICO-8 a year ago, and couldn't wait to add to the PICO-8 lore in my own way. That said, I am very happy to have been able to research and share this history with you! Feel free to share what you love about PICO-8 below, etc. Thanks for making the PICO-8 community great!

(The music is Space Lizards by @Gruber.)

19
6 comments


Hi, I'm very new to Pico-8 and coding in general. I've been following some tutorials on how to work in Pico-8, which go over basic elements using separate projects. In order to further my understanding of how the pieces fit together, I wanted to try to incorporate each tutorial into one project. I'm having some trouble though, because my code throws an error when I try to refer to my player class.

This is the code I have in Tab 0, the original code to set up movement and directional sprites for the player:

function _init()
	player={
		x=63,
		y=63,
		fx=false,
		fy=false,
		sp=1,
		speed=1
	}

end

function _update()

--player movement--
	if btn(➡️) then
	player.x+=player.speed
	player.sp=9
	player.fx=false
	player.fy=false
	end

	if btn(⬅️) then
	player.x-=player.speed
	player.sp=9
	player.fx=true
	player.fy=false
	end

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

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

	if mget(flr((player.x+4)/8),flr((player.y+4)/8))==33
	then
		player.speed=1.2
	else
		player.speed=1
	end

end

function _draw()
	cls(3)
	map()
	spr(player.sp,player.x, player.y,1,1,player.fx, player.fy)
	print(mget(flr((player.x+4)/8),flr((player.y+4)/8)))
end

That all works fine, but when I add code from the animation tutorial into Tab 1, it throws
RUNTIME ERROR LINE 15 TAB 1
IF PLAYER.SP<LAST_FRAME THEN
ATTEMPT TO INDEX GLOBAL 'PLAYER'
(A NIL VALUE)

function _init()

	stimer=0
	ani_speed=10
	first_frame=1
	last_frame=4

end

function _update()
--player animation--
	if stimer < ani_speed then
	stimer+=1
	else
		if player.sp < last_frame then
		player.sp+=1
		else
			player.sp=first_frame
		end
	stimer=0
	end

end

function _draw()

end

(There aren't spaces before and after my '<' signs in the code, I added those so it would display correctly here.)

For some reason, it doesn't recognize the class I defined. I tried putting the code into Tab 0 instead, to the same effect. What am I doing wrong here? I was under the impression that defining variables under a class allows you to change those variables by referencing as CLASS.VAR. Any advice would be appreciated.

2 comments


Cart #molemole-1 | 2025-04-18 | Code ▽ | Embed ▽ | No License
43

Both buttons do the same thing, which is place bombs if you've collected any. 25ish levels of hopefully fresh-ish puzzle goodness <3

43
18 comments


Everytime I write a comment or something, some part of me always thinks it comes off as rude or agressive. If that side of me is right, I'm sorry if I have offended you in any way, shape or form.

Best apologes
~proatwork456

1 comment


I made this magnet game prototype.
does anyone know how to make it so you can't go back to the last magnet push/pulled from?

Cart #finatemiti-0 | 2025-04-17 | Code ▽ | Embed ▽ | No License

e
1 comment


Cart #gslihuseyin-0 | 2025-04-17 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

1
0 comments


Cart #soko2-0 | 2025-04-17 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
11

Arrow Keys : Move

X / C : Rewind

Enter / P : Pause Menu (Reset Level / Select Level)

Welcome to Sokobird 2 !

Sokobird 2 is a sokoban game based on Aymeric du Peloux levels.

Can you solve the 32 puzzles ?

Bird sprite inspired by chien_bleu

Levels by Aymeric du Peloux

11
3 comments


Cart #combo_galaxy_cartidge-0 | 2025-04-17 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
9

How to Play

Combo Galaxy is an arcade shoot-em-up game inspired by Space Invaders and Cherry Bomb. Destroy round after round of aliens in your path with your ship the Crimson Swift and try to get the highest score you can!

Controls

Keyboard

• Arrow Keys – Move your ship
• Z / N / C – Blast Lasers
• X / M / V – Deploy Star Bombs

Controller

• L Stick / D-pad – Move your ship
• A / Y – Blast Lasers
• X / B – Deploy Star Bombs

Star Bombs

Star Bombs are a collectible that defeated enemies will sometimes drop. Collecting it will increase your star bomb ammo count by 1 and the more ammo you have the more bombs you will deploy all at once! Collecting 4 Star Bombs will restore 1HP but also reset your star bomb ammo count to 0. If you have full HP, collecting 4 Star Bombs will instead reset your star bomb ammo count to 0 and give you 2500 points, so consider saving your ammo to get a higher score if you feel you can beat the game without them.

[ Continue Reading.. ]

9
2 comments


Cart #infinitemininggame-1 | 2025-04-19 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

0 comments


SSPR sandbox

According to the documentation, sspr is pretty self explanatory :

QUOTE

SSPR(SX, SY, SW, SH, DX, DY, [DW, DH], [FLIP_X], [FLIP_Y]]
Stretch a rectangle of the sprite sheet (sx, sy, sw, sh) to a destination rectangle on the screen (dx, dy, dw, dh). In both cases, the x and y values are coordinates (in pixels) of the rectangle's top left corner, with a width of w, h.
Colour 0 drawn as transparent by default (see PALT())
dw, dh defaults to sw, sh
When FLIP_X is TRUE, flip horizontally.
When FLIP_Y is TRUE, flip vertically.

END OF QUOTE

So I was pretty surprised to see an upside down sprite while debugging, when I knew I wasn't even using the flip parameters anywhere.
Things are pretty normal as long as the coordinates are in the 0-127 range and the sizes in the 1-128.
What happens otherwise is unclear, so I wrote this little test cart. (image in the sprite sheet by Freds72)

Cart #sspr_sandbox-0 | 2025-04-17 | Code ▽ | Embed ▽ | No License

[ Continue Reading.. ]

0 comments


Cessna airplane flying over a farm

16
2 comments


💠💠💠💠

1 comment


Cart #gameformelike-0 | 2025-04-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

0 comments


Flappy Fetus

Cart #flappy_fetus-1 | 2025-04-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

My first game, made with great help of this tutorial

5
2 comments




Top    Load More Posts ->