[Help] How to remove this things? - 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: [Help] How to remove this things? (
/showthread.php?tid=407144)
[Help] How to remove this things? -
virusa1 - 12.01.2013
Hello guys am making a new gm.
How can i remove this things?
And this?
As always the helper will get +Rep
Re: [Help] How to remove this things? -
ThePhenix - 12.01.2013
PHP код:
public OnGameModeInit()
{
DisableInteriorEnterExits();
return 1;
}
Re: [Help] How to remove this things? -
Kudoz - 12.01.2013
Код:
public OnGameModeInit()
{
DisableInteriorEnterExits();
EnableStuntBonusForAll(0);
return 1;
}
Re: [Help] How to remove this things? - Patrick - 12.01.2013
pawn Код:
public OnGameModeInit()
{
DisableInteriorEnterExits();//disable interior/exit
EnableStuntBonusForAll(0);// disable stunt bonus
//Rest of code here
return 1;
}
Re: [Help] How to remove this things? -
virusa1 - 12.01.2013
thanx guys, + Rep ALL