hello... i am using DBC, and i set it so that my character starts at x 32 and y 32... but it won't start there... here is my code:
sync on
hide mouse
oldx = x
oldy = y
ink 0,1
load bitmap "floor.bmp"
load image "guy.bmp",1
load image "hay.bmp",2
sprite 1,32,32,1
`hay
for a = 2 to 21
sprite a,0+(a-2)*32,0,2
set sprite a,1,1
next a
set sprite 1,1,1
load bitmap "floor.bmp",11
bitmapnumber=0
set current bitmap 0
cls 0
copy bitmap 11,0
do
if keystate(200)=1 and up=0 then up=1 : y=y-32
if keystate(208)=1 and down=0 then down=1 : y=y+32
if keystate(203)=1 and left=0 then left=1 : x=x-32
if keystate(205)=1 and right=0 then right=1 : x=x+32
if keystate(200)=0 then up=0
if keystate(208)=0 then down=0
if keystate(203)=0 then left=0
if keystate(205)=0 then right=0
sprite 1,x,y,1
sync
if x < 1 then x = 0
if x > 620 then x = 620
if y < 1 then y = 0
if y > 432 then y = 432
loop
y won't the thing go to 32,32???
THANKS FOR STOPING AT A RED LIGHT... AND LETTING ME CRASH INTO YOU AT 80 MILES AN HOUR!!!