-- EVILMANA.COM PSP LUA CODEBASE
-- www.evilmana.com/tutorials/codebase
-- Move Player
-- SUBMITTED BY: pjspeedy
-- MADE BY PJSPEEDY --
-- move player --
blue = Color.new(0,0,255)
player = Image.createEmpty(32,32)
player:clear(blue)
Player = { x = 30, y = 100 }
function movePlayer()
pad = Controls.read()
if pad:right() then
Player.y = Player.y + 5
end
if pad:left() then
Player.y = Player.y - 5
end
if pad:down() then
Player.x = Player.x + 5
end
if pad:up() then
Player.x = Player.x - 5
end
end
while true do
screen:clear()
movePlayer()
screen:print(50,100,"THIS CODE WAS WRITTEN BY PJSPEEDY!!!", blue)
screen:blit(Player.y,Player.x,player)
screen.waitVblankStart()
screen.flip()
end