How to hide all Player markers and name tags from a team?
#3

Quote:
Originally Posted by DJ-CJ89
First Step: Put this on Script Header; #define invisible 0xFFFFFF00


Thats easy
I use the same function in my gamemode
its selfmade

example code! you have to edit your team variables.

//under OnPlayerUpdate
Код:
for(new i=0; i<MAXPLAYERS; i++)
{
if(gTeam[playerid] == your_Team_no1_here)
{
   SetPlayerMarkerForPlayer(playerid, i, GetPlayerColor(playerid) & invisible);
}
else if(gTeam[playerid] == your_Team_no2_here)
{
   SetPlayerMarkerForPlayer(playerid, i, GetPlayerColor(playerid) & invisible);
}
}
I can explain it that way:

SetPlayerMarkerForPlayer(playerid,i, ThePlayerColorForChatBox & ThePlayersMapColor);

To add a command to switch this function on/off u can simply use a variable.
Thanks i will try it
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 3 Guest(s)