04.08.2014, 04:51
Hi , when someone does an "Insane Stunt" gets some cash,
How do I disable that?
How do I disable that?
EnableStuntBonusForAll(enable);
public OnGameModeInit()
{
EnableStuntBonusForAll(0); //This will disable all stunt bonus.
return 1;
}
EnableStuntBonusForAll(playerid, enable);
public OnPlayerConnect(playerid)
{
EnableStuntBonusForPlayer(playerid, 0); // Disable stunt bonuses when the player connects to the server.
}