Log In  

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

Cart #golden_gorge_steeled-0 | 2025-06-21 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

0 comments


Cart #falcondown-2 | 2025-06-22 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

1
0 comments


I just got picotron, tried all the demos. just wondering how to close birds.p64? I know I can just reboot but is there a way to force close it?

3 comments


Cart #simple_sokoban-4 | 2025-06-29 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

: add multi boxes and multi target and few more levels

im creating a simple box pushing game to practice lua scripting and basic pico8 programming by using simple, readable code

please comment if you have better practice on the implementation!!

i'm still learning and this little game sure will be further developed

7
13 comments


Cart #puzzlestarfighter-1 | 2025-06-25 | Code ▽ | Embed ▽ | No License
1

Puzzle Starfighter is a simple yet addictive arcade game inspired by the classic gameplay of Galaga and Puzzle Bobble.

Controls:

Arrow keys - Move ship
X/O - shoot.

Enjoy!

1
0 comments


Hi.
Do you have any examples of crazy secret/bonus levels (or rom hacks) that don't follow the theme/aesthetic of the rest of the game?
I want to incorporate something like that into my own game (and nobody can stop me)

2 comments


Rail Grind
This one looks better in 60fps, load the code in the PICO-8 editor if you want to see that. I probably could've made it 30fps to save space, but I'm happy with this result, and I likely wouldn't have had room for anything else anyway.

(299 chars)

p=pal
p(1,-9,1)p(3,-8,1)p(4,-14,1)c={7,1,10,9,8,3,2,4}s={}function _update60()cls()w=sin(t()/4)*16+96z=48+w/2add(s,{x=w,y=z,a=rnd()-2,b=rnd(2)-3,l=1})line(0,48,127,112,6)?"웃",w,z-3
for i in all(s)do
i.b+=.05i.x+=i.a
i.y+=i.b
i.l+=.2if(i.l>#c)del(s,i)
line(i.x,i.y,i.x-i.a,i.y-i.b,c[flr(i.l)])end
end
8
1 comment


Cart #hosyufto-0 | 2025-06-21 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

0 comments


Cart #turnbasedfightclub-5 | 2025-06-22 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5


You've been invited to Pico City's highly exclusive, sickeningly violent fight club, where you can unleash your pent-up rage on strangers-- as long as it's your turn! Weave through attacks while collecting Debloons that can charge special abilities. Features five encounters, 30 unique bullet patterns, and Local hot commodity Tangerine.

.

.

.

,

5
2 comments


Cart #esperexile00-0 | 2025-06-21 | Code ▽ | Embed ▽ | No License

this is the playtest version of the shmup I'm currently working on.

O - primary fire
X - reflect bullets (hold and release)

my goal is to release it at the end of the month.
it'll have 5 stages in total!

0 comments


Cart #setazigeja-0 | 2025-06-21 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

0 comments


A simple clock postcart. The cartridge is at https://www.lexaloffle.com/bbs/?tid=149684 so you can see your current time instead of just the one in the gif.

(290 chars)

s=sin
c=cos
t=stat
v=ovalfill
o=64.5function l(a,b)line(o,o,o-s(a)*b,o-c(a)*b)end::_::srand()cls(4)rectfill(8,8,119,119,2)v(0,0,127,127,4)v(8,8,119,119,7)for i=1,12do?i,-s(i/12)*48+62,-c(i/12)*48+61,0
end?"●",61,62
e=t(95)/60%1m=(e+t(94))/60%1h=(m+t(93))/12l(e,52)l(m,44)l(h,32)flip()goto _
3
0 comments


Cart #picocoderclock-0 | 2025-06-21 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

A simple clock made in 290 characters. I decided to upload the cartridge and not just the gif of this postcart, because it would be pointless if you couldn't see the current time with it.

Source code:

s=sin
c=cos
t=stat
v=ovalfill
o=64.5function l(a,b)line(o,o,o-s(a)*b,o-c(a)*b)end::_::srand()cls(4)rectfill(8,8,119,119,2)v(0,0,127,127,4)v(8,8,119,119,7)for i=1,12do?i,-s(i/12)*48+62,-c(i/12)*48+61,0
end?"●",61,62
e=t(95)/60%1m=(e+t(94))/60%1h=(m+t(93))/12l(e,52)l(m,44)l(h,32)flip()goto _
4
3 comments


making waves

(213 chars)

x=0
y=0
function _draw()
srand()
cls()
x+=1
y=sin(x/256)*32
for i=0,21 do
for j=0,21 do
c=(i*6+j-x)%132-5
r=0
d=(c+rnd(8)-x)%132-5
if (64<d and d<96) r=min(sin(d/32)*4)
?"웃",c,(j*6-y+r)%132-4,rnd(15)+1
end
end
end
6
0 comments


DOOM clone (WIP)

Early WIP of a DOOM-like 3D game, which I've simply named "DOOM clone" for now.

Cart #doomclone-1 | 2025-06-27 | Embed ▽ | License: CC4-BY-NC-SA

Controls

Primary stick: Move
Secondary stick: Look (also mouse)
Left/Right Bumper: cycle through video modes

Changelog

Revision 1 (June 27th 2025)

Added floors and ceilings and a performance counter.

Initial release

Walls & basic movement are in, no collision yet.

Plans

I'm not sure what I want to do with this tech yet, but I knew the first step was to actually make a few functions that can draw the required 3D primitives. The engine can so far draw dots, bars, and walls in 3D space. The walls are perspective correct and get clipped by the near plane so there's no glitching when looking at walls from close up or at acute angles or anything. Primitives that are completely behind the camera even get culled.

[ Continue Reading.. ]

2
2 comments


Cart #paha_escape_notes-0 | 2025-06-20 | Code ▽ | Embed ▽ | No License
3

Cool adventure for one player! Leave from school and have fun!

3
0 comments


Cart #mars_rescue_v1-6 | 2025-06-24 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
8

Game overview

This is the first alpha release of Mars Rescue, a (hopefully!) challenging top-down action game.

Your mission: find and rescue Martian colonists under attack by hostile alien lifeforms.
Make the colonists follow you to the exit point to complete each level.

So far, 22 levels are available — I plan to create more if requested.
Creating this game has been a real pleasure, Pico-8 is awesome!

I hope you'll enjoy playing it,
feel free to reach out with any feedback to [email protected].

Controls

→ ARROWS: Move
→ X: Shoot
→ C: Toggle follow/freeze for nearby colonists

[ Continue Reading.. ]

8
2 comments


Cart #dante_test-0 | 2025-06-20 | Code ▽ | Embed ▽ | No License

🚧This is just a test post for early prototype game!🚧

Very early version – just testing out basic mechanics and seeing if anything works at all

Controls:

X – jump
(yeah, that's pretty much it for now)

Idea

You play as a cat.
But not just any cat – a stubborn one sitting inside a cardboard box and refusing to get out. Ever.

So if you want to move?
You’re jumping with the box.

0 comments


Cart #okulp14-0 | 2025-06-20 | Code ▽ | Embed ▽ | No License

The Pew Pew

The Pew Pew is a shooting game located in space. With two bad guys one big that shoot bullet and takes two bullet to kill, and the smaller bad guy does not have any powers at all and it only takes one bullet to kill. The player ship has two bullets that come out through the two things at the front of the ship. There are power ups that give you 500 points and they give you a free live.

0 comments


Cart #under_shot-0 | 2025-06-20 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2


under shot

press x to start

DONT PRESS Z

if you get hit by a little enemy you take 1 damage
if you get hit by a big enemy you die instantly
small die in 1 hit big die in 2 hit
press x to shoot
still DONT PRESS Z you will die
colect king of multivres sans to earn lives

2
5 comments




Top    Load More Posts ->