Disabling 'Yellow Markers' - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Disabling 'Yellow Markers' (
/showthread.php?tid=161905)
Disabling 'Yellow Markers' -
Garc1a - 21.07.2010
I've started a TDM server from scratch and in some places it has a yellow 'Marker' like in single player, when I walk into it I go inside/outside.
How can I remove these?
Re: Disabling 'Yellow Markers' -
ViruZZzZ_ChiLLL - 21.07.2010
pawn Код:
public OnGameModeInit()
{
DisableInteriorEnterExits();
return 1;
}
Re: Disabling 'Yellow Markers' -
Garc1a - 21.07.2010
Quote:
Originally Posted by ViruZZzZ_ChiLLL
pawn Код:
public OnGameModeInit() { DisableInteriorEnterExits(); return 1; }
|
Thanks, much appreciated!