Cool idea!
Play game
Pixel Climber's itch.io pageHow many characters did you use?
550
Include your code here, if you'd like to show it off!
x=63 y=127 v=0 s=0 function _init()cls()end function _draw() pset(x,y,0) if(pget(x,y+1)==6 or y>=127)then v=0 y=min(y,127) if(btn(2))v=-1 end if(pget(x,y-1)==6)v=max(v,0) y+=v v+=0.05 v=min(v,1) if(btn(0) and pget(x-1,y)!=6)x-=0.5 if(btn(1) and pget(x+1,y)!=6)x+=0.5 pset(x,y,7) if(btn(4))then pset(x,y,6) x=63 y=127 end if(btn(5))then circfill(x,y,1,0) x=63 y=127 end if(y<=0 and s==0)s=1 if(s==1)then y=0 v=0 print("you win!",50,20) print("z to coninue",35,30) if(btn(4))then s=2 end print("x to restart",35,40) if(btn(5))then cls() s=0 end end end
Leave a comment
Log in with itch.io to leave a comment.