SA-MP Forums Archive
How to disable blips of players on radar when I join my /ltkdm - 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 disable blips of players on radar when I join my /ltkdm (/showthread.php?tid=91252)



How to disable blips of players on radar when I join my /ltkdm - speedruntrainer - 13.08.2009

So, how do I disable all blips on radar when I join it? "Your search query didn't return any matches."

Can anyone help? Thanks.


Re: How to disable blips on radar when I join my /ltkdm - FUNExtreme - 13.08.2009

Do you mean the "blips" showing the position of a player?


Re: How to disable blips of a player on radar when I join my /ltkdm - speedruntrainer - 13.08.2009

Yes.


Re: How to disable blips of players on radar when I join my /ltkdm - Klutty - 13.08.2009

pawn Code:
ShowPlayerMarkers(0);



Re: How to disable blips of players on radar when I join my /ltkdm - FUNExtreme - 13.08.2009

Quote:
Originally Posted by Klutty
pawn Code:
ShowPlayerMarkers(0);
Under OnGameModeInit


Re: How to disable blips of players on radar when I join my /ltkdm - Dark_Kostas - 13.08.2009

Guys he said when he type a command!!! not always. Look your color code first. For example

pawn Code:
#define COLOR_RED 0xFF0000FF
The last 2letters (FF or whatever they are) are the visibility on the map. Create a new color like
pawn Code:
#define COLOR_INVISIBLE 0xFF000000
and then put under your /ltkdm
pawn Code:
SetPlayerColor(playerid, COLOR_INVISIBLE);
This will set the player's color to red but not visible on the map.


Re: How to disable blips of players on radar when I join my /ltkdm - FUNExtreme - 14.08.2009

Quote:
Originally Posted by [DK
AzaxYo ]
Guys he said when he type a command!!! not always. Look your color code first. For example

pawn Code:
#define COLOR_RED 0xFF0000FF
The last 2letters (FF or whatever they are) are the visibility on the map. Create a new color like
pawn Code:
#define COLOR_INVISIBLE 0xFF000000
and then put under your /ltkdm
pawn Code:
SetPlayerColor(playerid, COLOR_INVISIBLE);
This will set the player's color to red but not visible on the map.
No he diddent. Lol


Re: How to disable blips of players on radar when I join my /ltkdm - dice7 - 14.08.2009

Quote:
Originally Posted by FUNExtreme
No he diddent. Lol
"How to disable blips of players on radar when I join my /ltkdm"