After seeing https://www.quaxio.com/tron/ I wanted to see the smallest version we can do in PICO-8
Currently 251 characters
I'm absolutely sure we can do even better!
(Yes it is useless, yes that probably the lamest game on earth, but who care? :D)
P#44693 2017-09-27 17:52 ( Edited 2017-09-27 23:56)


I wanna try this.
One player mode.
by dw817


cls()rect(0,6,127,127)x,y,a,b,s=64,68,1,0,0 f={-1,0,1,0,0,-1,0,1}::z::pset(x,y)s+=1flip()for i=0,3do if btn(i)then c=i*2+1 a=f[c] b=f[c+1]end end x+=a y+=b if pget(x,y)==0then goto z end print("game over:"..s) |
209-chars !
But I think it can be compressed even further. Is 128x128 >32767 ? If not, this next idea might work.
P#68623 2019-10-07 19:32 ( Edited 2019-10-08 01:00)
[Please log in to post a comment]