Help me with this!
#1

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!
Reply
#2

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


Forum Jump:


Users browsing this thread: 1 Guest(s)