I cant understand why the monsters in my code wont move...
That code is supposed to rotate the monsters to face the player, and move them if there xangle is at 0.
They wont move though...
Anyone try to fix it please...(and yes it isnt indented...)
Thanks.
`position monsters
for t=100 to 150
gh#=get ground height (1,object position x(t),object position z(t))
position object t,object position x(t),gh#,object position z(t)
if object angle x(t)=0
point object t,camera position x(),0,camera position z()
move object t,0.5
endif
next t
for t=100 to 150
if object collision (4,t)
xrotate object t,-90
endif
next t