I have taken a couple of snippets from this forum and now i have a base to work on but the problem is i can't move my character down so it is level with the terrain.
this is the code
cls 0
hide mouse
sync on
rem Setup Player
rem ************
rem Load Images
rem ***********
load image "underground.jpg",10
rem Make Level Data
rem ***************
sprite 1,0,0,10
rem DBPro Code:
load image "player.bmp",4
sprite 2,x#,y#,4
x#=0
y#=0
rem *************
rem * Main Loop *
rem *************
do
gosub updatePlayer
sync
loop
rem ***************
rem * Subroutines *
rem ***************
rem UpdatePlayer Sub
rem ****************
updatePlayer:
return