hi
here is the code i use but read my question first!
autocam on
load image "soldier.bmp",1
sprite 1,350,100,1
print "this engine is made by : The Nerd"
print "press E to quit use D for moving left and A for moving right"
move:
if inkey$()= "d" then sprite 1,sprite x(1) + 1,sprite y(1),1:WAIT 50
if inkey$()= "a" then sprite 1,sprite x(1) - 1,sprite y(1),1:WAIT 50
if inkey$()= "e" then end
goto move
my queation is: How do i make the sprite jump if i press the spacebar??
The Nerd
i make games, i play games... But the fun thing is that i like to make them more than play them....