EnableStuntBonusForPlayer

EnableStuntBonusForPlayer

Description:
Function EnableStuntBonusForPlayer toggle stunt bonuses for a player. Enabled by default.


Parameters:
(playerid, enable)
int playerid The ID of the player to toggle stunt bonuses for.
bool enable 1 to enable stunt bonuses and 0 to disable them.


Return Values:
  • 1: The function was executed successfully.
  • 0: The function failed to execute. The player is not connected.


Examples:
public OnPlayerConnect(playerid)
{ 
   EnableStuntBonusForPlayer(playerid, 0); // Disable stunt bonuses when the player connects to the server.
}


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