05.05.2014, 18:56
I was playing after a while while i was masked then i went to a player , he saw my nametag lol
Anything wrong? please fix it :X
pawn Код:
if(strcmp(cmd, "/mask", true) == 0)
{
if(PlayerInfo[playerid][pMember] != 8)
{
SendClientMessage(playerid, COLOR_GREY, " You are not authorized to use that command !");
return 1;
}
if(PlayerInfo[playerid][pMask] == 0)
{
PlayerInfo[playerid][pMask] = 1;
foreach (Player, i)
{
if(IsPlayerConnected(i))
{
ShowPlayerNameTagForPlayer(i, playerid, 0);
}
}
strmid(sendername, PlayerRPName(playerid), 0, MAX_PLAYER_NAME);
format(string, sizeof(string), "* %s has put a mask on.", sendername);
ProxDetector(15.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
}
else if(PlayerInfo[playerid][pMask] == 1)
{
foreach (Player, i)
{
if(IsPlayerConnected(i))
{
ShowPlayerNameTagForPlayer(i, playerid, 1);
}
}
PlayerInfo[playerid][pMask] = 0;
strmid(sendername, PlayerRPName(playerid), 0, MAX_PLAYER_NAME);
format(string, sizeof(string), "* %s has put their mask away.", sendername);
ProxDetector(15.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
}
}