Log In  

ive made a some what of a game in picotron playground

--cool
--dyln

function _init()
x=64
y=64
b = userdata("
[8x8]
")
end

function _update()
if (btn(1)) then
x +=1
end
if(btn(0)) then
x-=1
end
if(btn(2)) then
y-=1
end
if(btn(3)) then
y+=1
end

end
function _draw()
cls()
spr(b, x, y)
end

P#129800 2023-05-16 13:22

are you going to be making Hyperactive bunnies on the pico-8 or the picotron?

P#129802 2023-05-16 15:19

[Please log in to post a comment]