Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
A jam submission

dodgeit-tinyView game page

557 characters TweetTweetJam!
Submitted by tonetheman (@tonetheman) — 3 days, 16 hours before the deadline
Add to collection

Play game

dodgeit-tiny's itch.io page

How 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=64
y=100
v=2
e={}
g=false
r=rect
pr=print
s=rnd
t=20
u=0
c=128
for i=1,t do e[i]={x=s(c),y=s(50)} end
function _update()
if (btn(0) and x>0) x-=2
if (btn(1) and x<c-2) x+=2
for i=1,t do
p=e[i]
if(x>=p.x and x<=p.x+4 and y>=p.y and y<=p.y+4)g=true;x=-9;w=u
p.y+=v
if p.y>c then
p.x=s(c)
p.y=s(50)
if (i==1)u+=1;add(e,{x=s(c),y=0});t+=1
end
end
end
function _draw()
if g then
cls(0)
pr(":("..w,64,64)
else
cls(0);pr("s:"..u,0,0,12);r(x,y,x+2,y+2,6)
for i=1,t do
q=e[i]
r(q.x,q.y,q.x+4,q.y+4,s(6)+1)
end
for i=1,9 do
poke(0x6000+s(500)*16,s(100))
end
end
end

Leave a comment

Log in with itch.io to leave a comment.

Comments

No one has posted a comment yet