[help Please Fast]
#5

Don't C/P codes from other scripts.

Change this:
pawn Код:
if(PlayerInfo[i][pAdmin] >= 1)
To this:
pawn Код:
if(IsPlayerAdmin(i))
I don't know what variable you use to store player's admin level, so yeah.

--
Also, I don't think this will work:
pawn Код:
new string[128];
                        new sendername[ MAX_PLAYER_NAME ];
                        GetPlayerName(i, sendername, sizeof(sendername));
                        format(string, 256,
You can't exceed that array's size:
pawn Код:
new string[128];
                        new sendername[ MAX_PLAYER_NAME ];
                        GetPlayerName(i, sendername, sizeof(sendername));
                        format(string, sizeof(string),
Reply


Messages In This Thread
error 017: undefined symbol "pAdmin" - by HayZatic - 06.07.2011, 17:01
Re: [help Please Fast] - by Snipa - 06.07.2011, 17:40
Re: [help Please Fast] - by HayZatic - 06.07.2011, 17:40
Re: [help Please Fast] - by Snipa - 06.07.2011, 17:42
Re: [help Please Fast] - by [L3th4l] - 06.07.2011, 17:43
Re: [help Please Fast] - by HayZatic - 06.07.2011, 18:03
Re: [help Please Fast] - by Snipa - 06.07.2011, 18:08
Re: [help Please Fast] - by HayZatic - 06.07.2011, 18:09
Re: [help Please Fast] - by Laronic - 06.07.2011, 18:09
Re: [help Please Fast] - by HayZatic - 06.07.2011, 18:14
Re: [help Please Fast] - by HayZatic - 06.07.2011, 18:21
Re: [help Please Fast] - by Laronic - 06.07.2011, 18:22
Re: [help Please Fast] - by HayZatic - 06.07.2011, 18:36
Re: [help Please Fast] - by [LCK]Chris - 06.07.2011, 18:55
Re: [help Please Fast] - by HayZatic - 06.07.2011, 19:00
Re: [help Please Fast] - by [LCK]Chris - 06.07.2011, 19:10
Re: [help Please Fast] - by HayZatic - 06.07.2011, 19:12
Re: [help Please Fast] - by [LCK]Chris - 06.07.2011, 19:12
Re: [help Please Fast] - by HayZatic - 06.07.2011, 19:15
Re: [help Please Fast] - by [LCK]Chris - 06.07.2011, 19:16
Re: [help Please Fast] - by Shadoww5 - 06.07.2011, 19:18
Re: [help Please Fast] - by Snipa - 06.07.2011, 20:19
Re: [help Please Fast] - by HayZatic - 06.07.2011, 20:20

Forum Jump:


Users browsing this thread: 5 Guest(s)