-- title: Proto Bots
-- author: Silas
-- desc: Defeat the proto bots as you survive.
-- site: website link
-- license:
-- version: 0.1
-- script: lua
music(0)
function GetDistance( x1, y1, x2, y2 )
return math.sqrt( ( x2 - x1 )^2 + ( y2 - y1 )^2 )
end
x = 0
y = 80
s = 2
pd = 1
px = -200
py = -200
pSpr = 7
ex = 100
ey = 50
function TIC()
map(235,3)
spr(8,ex,ey,0)
spr(s,x,y,0)
spr(pSpr,px,py,0)
spr(7,px,py,0)
ex=ex+math.random(-1,1)
ey=ey+math.random(-1,1)
if btn(0) then y=y-1 end -- UP
if btn(1) then y=y+1 end -- DOWN
if btn(2) then x=x-1
s=6
end -- LEFT
if btn(3) then x=x+1
s=4
end -- RIGHT
if btn(5) then -- "x" button -- shoot
pSpr = 7
pd=3
px=x
py=y
elseif btn(4) then
pSpr = 7
pd=-3
px=x
py=y
end
px = px + pd
dist = GetDistance(px,py,ex,ey)
if dist <= 8 then
-- Collision!
ex = -200
end
end
--
-- 000:eeeeeeeeeddddddeeeddddeeeddeeddeeddeeddeeeddddeeeddddddeeeeeeeee
-- 001:6666666666666666666666666666666666666666666666666666666666666666
-- 002:dddddddddd444dddd444ddddd44dddddd44dddddd444dddddd444ddddddddddd
-- 003:dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd
-- 004:0044400004444400d44cdd00d44cdd00d444eee0d444e400044044000dd0dd00
-- 005:dddddddddddddddddddddddddddddddddddddddd6d6d6d6d6666666666666666
-- 006:000444000044444000ddc44d00ddc44d0eee444d004e444d0044044000dd0dd0
-- 007:0000000000000000000000000000000000004000000000000000000000000000
-- 008:00000000000000000000000000ddddd00022d0000dddddd0d0d0d0d0d0d0d0dd
--
--
--
-- 000:00000000ffffffff00000000ffffffff
-- 001:0123456789abcdeffedcba9876543210
-- 002:0123456789abcdef0123456789abcdef
--
--
-- 000:000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000304000000000
--
--
-- 000:000000500000600000600000000000100000700000800000000000500000100000400000600000a00000800000500000100000900000100000000000a00000500000500000500000100000700000900000a00000000000a00000a00000800000600000700000800000100000100000500000100000100000900000000000100000800000900000800000900000800000100000100000f00000c00000000000b00000100000d00000000000d00000c00000100000100000b00000900000a00000
--
--
-- 000:100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060
--
--
-- 000:1a1c2c5d275db13e53ef7d57ffcd75a7f07038b76425717929366f3b5dc941a6f673eff7f4f4f494b0c2566c86333c57
--