GetPlayerState
From SA-MP Wiki
Get a player's current state
(playerid)
| playerid | The ID of the player to get the current state of. |
| Returns | The player's current state as an integer. |
public OnPlayerDeath(playerid, killerid, reason) { new playerState = GetPlayerState(killerid); // Get the killer's state if (playerState == PLAYER_STATE_PASSENGER || playerState == PLAYER_STATE_DRIVER) // If the killer was in a vehicle { //It's a driveby, take some money GivePlayerMoney(killerid, -10000); } return 1; }
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- GetPlayerSpecialAction: Get a player's current special action.
- SetPlayerSpecialAction: Set a player's special action.
Related Callbacks
The following callbacks might be useful, as they're related to this function in one way or another.
- OnPlayerStateChange: Called when a player changes state.
