How to remove the yellow arrows - 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: How to remove the yellow arrows (
/showthread.php?tid=273107)
How to remove the yellow arrows -
DaRoderick - 31.07.2011
Pointing to topic title, with the yellow arrows I mean those entrances/exits at houses, businesses and/or police departments and such. I currently use a PEN:LS script, where can I find the file in where all those yellow arrows are located and how can I remove them? Thanks for answering a stupid question.
Re: How to remove the yellow arrows -
CmZxC - 31.07.2011
at OnGameModeInit()
DisableInteriorEnterExits(); ( Will disable all )
Re: How to remove the yellow arrows -
Calgon - 31.07.2011
ENEX markers are hard-coded in to GTA, you need to use a SA-MP function that injects some code in to GTA to remove the ENEX markers, there's no single file you can edit to remove the markers, you have to remove them by using a specially crafted SA-MP function for the task.
Place this function:
pawn Код:
DisableInteriorEnterExits();
inside your OnGameModeInit() callback.
Quote:
Originally Posted by CmZxC
at OnGameModeInIt()
DisableInteriorEnterExits(); ( Will disable all )
|
You messed up the casing, it's 'Init' not 'InIt'.
Re: How to remove the yellow arrows -
Lorenc_ - 31.07.2011
DisableInteriorEnterExits();
That function (Not sure if its exactly it may be wrong)
That disables all those yellow checkpoints.
Note: Late...
Re: How to remove the yellow arrows -
CmZxC - 31.07.2011
and no, there is no file for those arrows.
Re: How to remove the yellow arrows -
DaRoderick - 31.07.2011
Ah alright, and there is no way of removing a few of them? It's either all of them or none?
Re: How to remove the yellow arrows -
CmZxC - 31.07.2011
Yes, all or none.
Re: How to remove the yellow arrows -
Calgon - 31.07.2011
It's all or none, but you can replicate the markers with pickups, using the data from
here (or somewhere else).
Re: How to remove the yellow arrows -
DaRoderick - 31.07.2011
Alright, thanks guys.