:]] De ce spuneti ca e imposibil? Totul e posibil pana la un moment dat. Incearca asta /nton sa activezi si /ntoff sa dezactivezi. if(strcmp(cmdtext, "/nton", true)==0)
{
SendClientMessage(playerid, COLOR_YELLOW, "{00AA00}SERVER: {FFFFFF}Nametags are {00FF00}enabled. {FFFFFF}To disable use {999999}/ntoff ");
PlayerPlaySound(playerid, 1137, 0.0, 0.0, 0.0);
for(new i = 0; i < MAX_PLAYERS; i ++)
{
ShowPlayerNameTagForPlayer(playerid, i, 1);
}
return 1;
}
if(strcmp(cmdtext, "/ntoff", true)==0)
{
SendClientMessage(playerid, COLOR_YELLOW, "{00AA00}SERVER: {FFFFFF}Nametags are {FF0000}disabled.");
PlayerPlaySound(playerid, 1058, 0.0, 0.0, 0.0);
for(new i = 0; i < MAX_PLAYERS; i ++)
{
ShowPlayerNameTagForPlayer(playerid, i, 0);
}
return 1;
}