Posts: 98
Threads: 24
Joined: Jun 2009
Reputation:
0
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.
Posts: 373
Threads: 8
Joined: Apr 2011
Reputation:
0
at OnGameModeInit()
DisableInteriorEnterExits(); ( Will disable all )
Posts: 6,129
Threads: 36
Joined: Jan 2009
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'.
Posts: 3,793
Threads: 196
Joined: Jan 2010
Reputation:
0
DisableInteriorEnterExits();
That function (Not sure if its exactly it may be wrong)
That disables all those yellow checkpoints.
Note: Late...
Posts: 373
Threads: 8
Joined: Apr 2011
Reputation:
0
and no, there is no file for those arrows.
Posts: 98
Threads: 24
Joined: Jun 2009
Reputation:
0
Ah alright, and there is no way of removing a few of them? It's either all of them or none?
Posts: 6,129
Threads: 36
Joined: Jan 2009
It's all or none, but you can replicate the markers with pickups, using the data from
here (or somewhere else).