SetPlayerObjectPos

SetPlayerObjectPos

Description:
Function SetPlayerObjectPos sets the position of a player-object to the specified coordinates.


Parameters:
(playerid, objectid, Float:X, Float:Y, Float:Z)
int playerid The ID of the player whose player-object to set the position of.
int objectid The ID of the player-object to set the position of. Returned by CreatePlayerObject.
float X The X coordinate to put the object at.
float Y The Y coordinate to put the object at.
float Z The Z coordinate to put the object at.


Return Values:
  • 1: The function was executed successfully.
  • 0: The function failed to execute. Player and/or object do not exist.


Examples:
new obj = CreatePlayerObject(...);
 
// Later on
 
SetPlayerObjectPos(playerid, obj, 2001.195679, 1547.113892, 14.283400);


Related Functions
The following functions may be useful, as they are related to this function in one way or another.