Okay I'm haveing more trouble. Run this and you will see what dosn't work.
sync on
sync rate 30
disable escapekey
make matrix 1,1000,1000,50,50
make object cylinder 1,10
x1=90
y1=180
cy=0
cx=0
xrotate object 1,x1
yrotate object 1,y1
do
move object 1,5
move camera 5
if upkey()=1
x1=x1+10
cx=cx+10
xrotate object 1,wrapvalue(x1)
xrotate camera wrapvalue(cx)
endif
if downkey()=1
x1=x1-10
cx=cx-10
xrotate object 1,wrapvalue(x1)
xrotate camera wrapvalue(cx)
endif
if leftkey()=1
y1=y1+10
cy=cy-10
yrotate object 1,wrapvalue(y1)
yrotate camera wrapvalue(cy)
endif
if rightkey()=1
y1=y1-10
cy=cy+10
yrotate object 1,wrapvalue(y1)
yrotate camera wrapvalue(cy)
endif
sync
loop
Can anyone help?
Dont worry and keep a cool head.