Hi everybody, my problem is that my animation doesn\'t work
I have modelled a football with 3d max and animated it and exported it into .x and imported it into dbpro but the animation won\'t play what\'s the problem
anyway here is my code
REM Project: the football that could
REM Created: 1/24/2009 5:00:22 PM
REM
REM ***** Main Source File *****
REM
sync on
sync rate 0
hide mouse
player=1
load object \"media/player/fotball.x\",player
position object player,0,0,0
set object speed player,30
if move=1 then loop object player,0,50
if move=2 then loop object player,50,100
playerspeed#=0.5
do
move=0
x#=object position x(player)
y#=object position y(player)
z#=object position z(player)
a#=object angle y(player)
d#=100.0
h#=20.0
s#=50.0
set camera to follow x#,y#,z#,a#,d#,h#,s#,1
if rightkey()=1 then yrotate object player,wrapvalue (object angle y(player)+playerspeed#):move=1
if leftkey()=1 then yrotate object player,wrapvalue (object angle y(player)-playerspeed#):move=1
if upkey ()=1 then move object player,playerspeed#:move=1
if downkey()=1 then move object player,-playerspeed#:move=2
sync
loop
thankss