17.09.2010, 14:00
Try it:
or:
ShowPlayerNameTagForPlayer - SAMP WIKI
pawn Код:
if(strcmp(cmd, "/mycommand", true) == 0)
{
if(IsPlayerConnected(playerid)){for(new i = 0; i < MAX_PLAYERS; i++){if(IsPlayerConnected(i)){ShowPlayerNameTagForPlayer(playerid, i, 0);}}}
return 1;
}
pawn Код:
if(strcmp(cmd, "/mycommand", true) == 0)
{
if(IsPlayerConnected(playerid))
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
ShowPlayerNameTagForPlayer(playerid, i, 0);
}
}
}
return 1;
}

