SA-MP Forums Archive
[SUGGESTION] Disable cars icons. - 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: [SUGGESTION] Disable cars icons. (/showthread.php?tid=198384)



[SUGGESTION] Disable cars icons. - The_Moddler - 12.12.2010

Well, I know that is in feature lockdown, but Kye could do a exception here ^^

Title is self explanatory, something like:

pawn Код:
public OnGameModeInit()
{
    CarIcons(false);
    return 1;
}
pawn Код:
native CarIcons(bool:on = true);
This would disable the car dots on the minimap.

Thanks


Re: [SUGGESTION] Disable cars icons. - [DOG]irinel1996 - 12.12.2010

+1 Good sugesstion!


Re: [SUGGESTION] Disable cars icons. - Sky4D - 12.12.2010

This would be absolutely wonderful.


Re: [SUGGESTION] Disable cars icons. - Steamator - 12.12.2010

Quote:

ToggleCarMarker(vehicleid, bool:toggle);

To hide only one car.


Re: [SUGGESTION] Disable cars icons. - GooMan - 12.12.2010

Cool!! Good suggestions . Like it.


Re : [SUGGESTION] Disable cars icons. - scott1 - 12.12.2010

+ 1 Awesome


Re: [SUGGESTION] Disable cars icons. - blackwave - 12.12.2010

Quote:
Originally Posted by The_Moddler
Посмотреть сообщение
Well, I know that is in feature lockdown, but Kye could do a exception here ^^

Title is self explanatory, something like:

pawn Код:
public OnGameModeInit()
{
    CarIcons(false);
    return 1;
}
pawn Код:
native CarIcons(bool:on = true);
This would disable the car dots on the minimap.

Thanks
Hehe, since someone asked it once, I ever kept wanting it :P. +1, really nice


Respuesta: [SUGGESTION] Disable cars icons. - DarkChildren - 12.12.2010

+ 1 yea


Re: [SUGGESTION] Disable cars icons. - Dusl12 - 12.12.2010

Quote:
Originally Posted by Steamator
Посмотреть сообщение
To hide only one car.
And to hide ALL Cars:

Код:
public OnGameModeInit()
{
for(new v=0;v<MAX_VEHICLES;v++)
{
ToggleCarMarker(v,false);
}
}
//EDIT: Wrong ?Syntax?


Re: [SUGGESTION] Disable cars icons. - The_Moddler - 12.12.2010

Quote:
Originally Posted by Dusl12
Посмотреть сообщение
And to hide ALL Cars:

Код:
public OnGameModeInit()
{
for(new v=0;v<MAX_VEHICLES;v++)
{
ToggleCarMarker(v,false);
}
}
//EDIT: Wrong ?Syntax?
Nope.. it's fine I guess.. ^_^