SA-MP Forums Archive
need help - 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: need help (/showthread.php?tid=89506)



need help - nuriel8833 - 02.08.2009

how can i delete the interiors arrow and the city names?
like when you are entering a new city its say the city name in the right?
how can i delete it?
tanks for helpers


Re: need help - Mr_Finnigan - 02.08.2009

remove arrows goes under OnGameModeInit:
Код:
DisableInteriorEnterExits();
Quote:
Originally Posted by Jefff
Remove
Код:
EnableZoneNames(true);



Re: need help - member - 02.08.2009

and also... for your area/zone names to be removed, find this in your script:
pawn Код:
EnableZoneNames(1); // or EnableZoneNames(true);
and remove it or change '1' to '0'.
https://sampwiki.blast.hk/wiki/EnableZoneNames


Re: need help - nuriel8833 - 02.08.2009

OK Tanks for both of you!