ok... here is my current code:
sync on
hide mouse
x = 32
y = 32
ink 0,1
load bitmap "floor.bmp"
load image "guy.bmp",1
set sprite 1,1,0
load bitmap "floor.bmp",11
bitmapnumber=0
set current bitmap 0
cls 0
copy bitmap 11,0
do
if upkey()=1 then y=y-32
if downkey()=1 then y=y+32
if leftkey()=1 then x=x-32
if rightkey()=1 then x=x+32
sprite 1,x,y,1
sync
loop
with this part of the code:
do
if upkey()=1 then y=y-32
if downkey()=1 then y=y+32
if leftkey()=1 then x=x-32
if rightkey()=1 then x=x+32
sprite 1,x,y,1
sync
loop
i want it so that my character doesn't keep moving if i hold down the up/down/left/or right keys... how? thanx for ur help though...
THANKS FOR STOPING AT A RED LIGHT... AND LETTING ME CRASH INTO YOU AT 80 MILES AN HOUR!!!