پرش به مطلب اصلی

SetPlayerPos

Description

Set a player's position.

NameDescription
playeridThe ID of the player to set the position of.
Float:xThe X coordinate to position the player at.
Float:yThe Y coordinate to position the player at.
Float:zThe Z coordinate to position the player at.

Returns

true - The function executed successfully.

false - The function failed to execute. This means the player specified does not exist.

Examples

public OnPlayerCommandText(playerid,cmdtext[])
{
if (!strcmp(cmdtext, "/middle", true))
{
// Teleports players to the center of San Andreas when they type /middle
SetPlayerPos(playerid, 0.0, 0.0, 3.0);
return 1;
}
return 0;
}

Notes

نکته

Using this function on a player in a vehicle will instantly remove them from the vehicle. Useful for quickly ejecting players.

نکته

When setting a player's position to an interior, their interior must be set also.