SA-MP Forums Archive
Help me with this! - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Help me with this! (/showthread.php?tid=543231)



Help me with this! - Barnwell - 25.10.2014

Hello All i try to add ShowPlayerNameTags and i put this

PHP код:
    for(new 0MAX_PLAYERSi++)
{
     if(
IsPlayerConnected(i))
     {
           
ShowPlayerNameTag(iplayerid0);
     }

i got this error!

Код:
C:\Users\albsharat\Desktop\PG-RP Verison 4.5\pawno\PGRP.pwn(646) : error 017: undefined symbol "ShowPlayerNameTag"
i want only to see the PlayerName in my server really +rep if you can help with this!


Re: Help me with this! - MasonSFW - 25.10.2014

pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++)
{
     if(IsPlayerConnected(i))
     {
            ShowPlayerNameTagForPlayer(i, playerid, 0);
     }
}