in 2-8-13
try do this x,y,z (comma's)
not x y z (here no comma's)
THIS ONE SHOULD WORK (didnt test)
function resource_starts ()
object1 = createObject ( 4729, 463.294220, -1991.257324, 6.617176 )
move1_1 ()
end
addEventHandler ( "onResourceStart", getResourceRootElement(), resource_starts )
function move1_1 ()
moveObject ( object1, 5000, 463.294220, -1991.257324, 10.267131 )
setTimer ( move1_2, 10000, 1 )
end
function move1_2 ()
moveObject ( object1, 5000, 463.294220, -1991.257324, 6.617176 )
setTimer ( move1_1, 10000, 1 )
end