Play game
tiny80UNCE's itch.io pageHow many characters of code did you use?
557
If you're comfortable with it, paste your game code here, so we can marvel at your achievement!
x,y,u,v,g=120,68,0,-2,.15
z,w,d=0,60,1
s=0
function TIC()if f then
cls()if key(18)then reset()end
else
cls(2)if key(23)then v=v-.3 end
if key(1)then u=u-.2 end
if key(4)then u=u+.2 end
if x<0 then x=240 u=u*.5 end
if x>240 then x=0 u=u*.5 end
if y<0 then v=v*-.2 y=0 end
if y>125 and x>z and x<z+w then v=-5 y=125 s=s+1 g=.15 end
if y>136 then f=1 end
v=v+g
x=x+u
y=y+v
g=g+.002
if math.floor(time())%120==0 then w=w-1 end
z=z+d+d*math.sqrt(time())/200
if z<0 then z=0 d=1 elseif z>240-w then z=240-w d=-1 end
rect(z,130,w,9,14)circ(x,y,5,14)end
print(s)end
Leave a comment
Log in with itch.io to leave a comment.
Comments
This was surprisingly satisfying, good work!