[HELP] NAMETAGS
#2

Try it:

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;
}
or:

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;
}
ShowPlayerNameTagForPlayer - SAMP WIKI
Reply


Messages In This Thread
[HELP] NAMETAGS - by suwithy04 - 17.09.2010, 13:57
Re: [HELP] NAMETAGS - by Shelby - 17.09.2010, 14:00
Re: [HELP] NAMETAGS - by Hiddos - 17.09.2010, 14:02
Re: [HELP] NAMETAGS - by suwithy04 - 17.09.2010, 15:55
Re: [HELP] NAMETAGS - by Vince - 17.09.2010, 15:59
Re: [HELP] NAMETAGS - by suwithy04 - 17.09.2010, 17:04
Re: [HELP] NAMETAGS - by suwithy04 - 17.09.2010, 19:02
Re: [HELP] NAMETAGS - by Sky4D - 17.09.2010, 20:10

Forum Jump:


Users browsing this thread: 1 Guest(s)