Move Objects more times - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Move Objects more times (
/showthread.php?tid=156882)
Move Objects more times -
Freddy Z - 24.06.2010
How can i move an object more times? I mean, once an object moved, instead of stopping i want it to move to another point and so on.
Re: Move Objects more times -
Hiddos - 24.06.2010
pawn Код:
StopObject(id)
MoveObject(id,x,y,z,speed);
Stop it, then immediately move it again.
Re: Move Objects more times -
Assyria - 24.06.2010
Or use OnObjectMoved callback, check when the object moved and then move it again to another position.