is there something new to remove a specific yellow marker? - 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: is there something new to remove a specific yellow marker? (
/showthread.php?tid=335567)
is there something new to remove a specific yellow marker? -
Andy_McKinley - 18.04.2012
heey i haven't played or even scripted sa-mp in 15 months. and 0.3d is now out a while i think? and is there an option to remove only 1 specific yellow marker (when you enter a house or something)?
if not, can someone just give me the code to remove m all?
Re: is there something new to remove a specific yellow marker? -
MP2 - 18.04.2012
No, there is not.
Re: is there something new to remove a specific yellow marker? -
Andy_McKinley - 18.04.2012
Quote:
Originally Posted by MP2
No, there is not.
|
k but is this it?
pawn Код:
DisableInteriorEnterExits();

can i disable from inside interiour only? or will that to both? damn i wish we could just disable the ones you want
Re: is there something new to remove a specific yellow marker? -
MP2 - 18.04.2012
That will disable them ALL, inside AND out.
Re: is there something new to remove a specific yellow marker? -
sleepysnowflake - 18.04.2012
Well, instead of disabling the ones you want, you can do something else! Disable them all and make your own on the ones you want!
Re: is there something new to remove a specific yellow marker? -
Andy_McKinley - 18.04.2012
hmm okay. why isn't there a script to do this, to just disable 1? i don't understand why but okay
Re: is there something new to remove a specific yellow marker? -
sniperwars - 18.04.2012
pawn Код:
public OnGameModeInit()
{
DisableInteriorEnterExits();
//Rest of code here//
return 1;
}