30.08.2011, 12:55
Hi Sesitive,
You can disable stunt bonus for all players by adding the following to your OnGameModeInit function:
Or you can disable for an individual by adding the following to your OnPlayerConnect function:
More info on these functions can be found here:
https://sampwiki.blast.hk/wiki/EnableStuntBonusForPlayer
https://sampwiki.blast.hk/wiki/EnableStuntBonusForAll
Cheers,
TJ
You can disable stunt bonus for all players by adding the following to your OnGameModeInit function:
pawn Код:
EnableStuntBonusForAll(false);
pawn Код:
EnableStuntBonusForPlayer(playerid,false);
https://sampwiki.blast.hk/wiki/EnableStuntBonusForPlayer
https://sampwiki.blast.hk/wiki/EnableStuntBonusForAll
Cheers,
TJ