How do i disable these.. - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: How do i disable these.. (
/showthread.php?tid=636436)
How do i disable these.. - ItzColaBoi - 27.06.2017
I've found the command EnablePlayerStuntBonus or something like that, ive removed it from the GM, but it still gives me the stunt bonus.How do i remove them tho?Thanks in advance.
Re: How do i disable these.. -
Kane - 27.06.2017
You're meant to be using EnableStuntBonusForAll if you want to disable it globally.
PHP код:
public OnGameModeInit()
{
EnableStuntBonusForAll(0);
return 1;
}
Re: How do i disable these.. - ItzColaBoi - 28.06.2017
Quote:
Originally Posted by Arthur Kane
You're meant to be using EnableStuntBonusForAll if you want to disable it globally.
PHP код:
public OnGameModeInit()
{
EnableStuntBonusForAll(0);
return 1;
}
|
Thanks man!