06.07.2011, 17:43
Don't C/P codes from other scripts.
Change this:
To this:
I don't know what variable you use to store player's admin level, so yeah.
--
Also, I don't think this will work:
You can't exceed that array's size:
Change this:
pawn Код:
if(PlayerInfo[i][pAdmin] >= 1)
pawn Код:
if(IsPlayerAdmin(i))
--
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,
pawn Код:
new string[128];
new sendername[ MAX_PLAYER_NAME ];
GetPlayerName(i, sendername, sizeof(sendername));
format(string, sizeof(string),