note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
SetPlayerSpecialAction
Description
This function allows to set players special action.
Name | Description |
---|---|
playerid | The player that should perform the action |
actionid | The action that should be performed. |
Returns
1: The function executed successfully.
0: The function failed to execute. This means the player is not connected.
Examples
if (strcmp(cmd, "/handsup", true) == 0)
{
SetPlayerSpecialAction(playerid, SPECIAL_ACTION_HANDSUP);
return 1;
}
Notes
tip
Removing jetpacks from players by setting their special action to 0 causes the sound to stay until death.
Related Functions
- GetPlayerSpecialAction: Get a player's current special action.
- ApplyAnimation: Apply an animation to a player.