OnObjectMoved

From SA-MP Wiki

Revision as of 10:55, 9 August 2017; view current revision
←Older revision | Newer revision→
Jump to: navigation, search


Description:

This callback is called when an object is moved after MoveObject (when it stops moving).


Parameters:
(objectid)
objectidThe ID of the object that was moved


Return Values:

This callback does not handle returns.
  • It is always called first in filterscripts.


Image:32px-Ambox_warning_orange.png

Note

SetObjectPos does not work when used in this callback. To fix it, recreate the object.


Example Usage:

public OnObjectMoved(objectid)
{
    printf("Object %d finished moving.",objectid);
    return 1;
}

Related Functions

The following functions might be useful, as they're related to this callback in one way or another.


Related Callbacks

The following callbacks might be useful as well, as they are related to this callback in one way or another.

In other languages