How to make only 1 player to be visible on the all map
#1

I want only 1 player to be shown at the map.How to do it
Reply
#2

Use SetPlayerColor and a fully transparent color.

To make a color visible:
pawn Код:
new color = GetPlayerColor(playerid);
color |= 0xFF;
To make a color invisible:
pawn Код:
new color = GetPlayerColor(playerid);
color &= ~0xFF;
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)