Lewati ke konten utama

GetPlayerCameraMode

Description

Returns the current GTA camera mode for the requested player. The camera modes are useful in determining whether a player is aiming, doing a passenger driveby etc.

NameDescription
playeridThe ID of the player whose camera mode to retrieve

Returns

The camera mode as an integer (or -1 if player is not connected)

Examples

/* when the player types 'cameramode' in to the chat box, they'll see this. */
public OnPlayerText(playerid, text[])
{
if (strcmp(text, "cameramode", true) == 0)
{
new string[48];
format(string, sizeof(string), "Your camera mode: %d", GetPlayerCameraMode(playerid));
SendClientMessage(playerid, 0xA9C4E4FF, string);
}
return 0;
}