09.07.2013, 16:58
pawn Код:
CMD:camuflar(playerid)
{
for(new i; i < MAX_PLAYERS; i++)
ShowPlayerNameTagForPlayer(i, playerid, false);
SetPlayerColor(playerid, 0xFFFFFF00);
SendClientMessage(playerid, -1, "{ffff00}Camuflado com sucesso!");
return 1;
}
CMD:descamuflar(playerid)
{
for(new i; i < MAX_PLAYERS; i++)
ShowPlayerNameTagForPlayer(i, playerid, true);
SetPlayerColor(playerid, 0xFFFFFF80);
SendClientMessage(playerid, -1, "{0000ff}Descamuflado com sucesso!");
return 1;
}