12.05.2013, 17:29
error 017: undefined symbol "i"
warning 217: loose indentation
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
my /admins work. not the /helper don't work keep spaming
Here my /admins command:
warning 217: loose indentation
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Error.
my /admins work. not the /helper don't work keep spaming
Here my /admins command:
PHP код:
// This command lists all online admins
CMD:admins(playerid)
{
new Count;
new str[45], Admin[MAX_PLAYER_NAME];
SendClientMessage(playerid, -1, "Administrators online:");
for(new i = 0; i < MAX_PLAYERS; i ++)
{
if (APlayerData[i][PlayerLevel] >= 1)
{
Count ++;
GetPlayerName(i, Admin, MAX_PLAYER_NAME);
format(str, sizeof str, "%s %s",Admin, LevelName(i));
SendClientMessage(playerid, -1, str);
}
}
if(Count < 1) SendClientMessage(playerid, -1, "No Admin Online!");
// Let the server know that this was a valid command
return 1;
}