OnPlayerObjectMoved
From SA-MP Wiki
Description:
This callback is called when a player object is moved after MovePlayerObject (when it stops moving).
Note | This callback can also be called for NPC. |
(playerid,objectid)
playerid | The playerid the object is assigned to |
objectid | The ID of the player object that was moved |
Return Values:
This callback does not handle returns.
- It is always called first in filterscripts.
Example Usage:
public OnPlayerObjectMoved(playerid,objectid) { printf("Player object moved: objectid: %d playerid: %d",objectid,playerid); return 1; }
Related Callbacks
The following callbacks might be useful as well, as they are related to this callback in one way or another.
- OnObjectMoved: Called when an object stops moving.
Related Functions
The following functions might be useful, as they're related to this callback in one way or another.
- MovePlayerObject: Move a player object.
- IsPlayerObjectMoving: Check if the player object is moving.
- StopPlayerObject: Stop a player object from moving.
- CreatePlayerObject: Create an object for only one player.
- DestroyPlayerObject: Destroy a player object.