A simple question - 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: A simple question (
/showthread.php?tid=404209)
A simple question -
Racer99 - 02.01.2013
I have a simple question, how can I remove interior markers?
Like the ammunation marker which you step in and you go into the interior.
I simply need that due to such player's buying weapons there and using them to DM
Re: A simple question -
JaKe Elite - 02.01.2013
Add this OnGameModeInit
pawn Код:
DisableInteriorEnterExits();
Re: A simple question -
Threshold - 02.01.2013
https://sampwiki.blast.hk/wiki/DisableInteriorEnterExits
Код:
This forum requires that you wait 120 seconds between posts. Please try again in 71 seconds.
Example:
pawn Код:
public OnGameModeInit()
{
DisableInteriorEnterExits();
return 1;
}
EDIT: Too fucking late
Re: A simple question -
Racer99 - 02.01.2013
Alright thanks ^^