GetPlayerSpecialAction

From SA-MP Wiki

Jump to: navigation, search


Description:

Retrieves a player's current special action.


Parameters:
(playerid)
playeridThe ID of the player to get the special action of.


Return Values:

The special action of the player.


Example Usage:

public OnPlayerUpdate(playerid)
{
    // Ban players if they have a jetpack
    if(GetPlayerSpecialAction(playerid) == SPECIAL_ACTION_USEJETPACK)
    {
        Ban(playerid);
    }
    return 1;
}

Related Functions

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

Personal tools
Navigation
Toolbox
In other languages