04.08.2011, 18:15
(
Последний раз редактировалось ahmed2793; 04.08.2011 в 20:45.
)
this the cmd where the problems are:
and these are the errors i get when i compile:
the lines in red are the lines where errors are.
Quote:
CMD:admins(playerid,params[]) { #pragma unused params new count = 0; new string[128]; new ChangeColor; SendClientMessage(playerid, green, " "); SendClientMessage(playerid, green, "___________ |- Online Admins -| ___________"); SendClientMessage(playerid, green, " "); for(new i = 0; i < MAX_PLAYERS; i++) { if (IsPlayerConnected(i)) { if(PlayerInfo[playerid][Level] >= 1 { if(IsPlayerAdmin(i)) { Level = "RCON Administrator"; ChangeColor = red; } else { switch(PlayerInfo[playerid][i][Level]) { case 1: { Level = "Basic Moderator"; ChangeColor = red; } case 2: { Level = "Moderator"; ChangeColor = red; } case 3: { Level = "Master Moderator"; ChangeColor = red; } case 4: { Level = "Administrator"; ChangeColor = red; } case 5: { Level = "Master Administrator"; ChangeColor = red; } } } format(string, 128, "Admin: (%d)%s [%d]", i, PlayerName2(i), PlayerInfo[i][Level] ); SendClientMessage(playerid, ChangeColor, string); count++; } } } if (count == 0) SendClientMessage(playerid,red,"No admin online in the list"); SendClientMessage(playerid, green, " _______________________________________"); return 1; } |
Код HTML:
C:\Documents and Settings\Administrateur\Mes documents\Downloads\[0.3c R2] SATDM~RP V9_FINAL\[0.3c R2]SATDM~RP V9_FINAL\Gamemodes\SATDM_v9.pwn(22567) : error 029: invalid expression, assumed zero C:\Documents and Settings\Administrateur\Mes documents\Downloads\[0.3c R2] SATDM~RP V9_FINAL\[0.3c R2]SATDM~RP V9_FINAL\Gamemodes\SATDM_v9.pwn(22570) : error 022: must be lvalue (non-constant) C:\Documents and Settings\Administrateur\Mes documents\Downloads\[0.3c R2] SATDM~RP V9_FINAL\[0.3c R2]SATDM~RP V9_FINAL\Gamemodes\SATDM_v9.pwn(22570) : warning 215: expression has no effect C:\Documents and Settings\Administrateur\Mes documents\Downloads\[0.3c R2] SATDM~RP V9_FINAL\[0.3c R2]SATDM~RP V9_FINAL\Gamemodes\SATDM_v9.pwn(22575) : warning 213: tag mismatch C:\Documents and Settings\Administrateur\Mes documents\Downloads\[0.3c R2] SATDM~RP V9_FINAL\[0.3c R2]SATDM~RP V9_FINAL\Gamemodes\SATDM_v9.pwn(22575) : error 001: expected token: ")", but found "[" C:\Documents and Settings\Administrateur\Mes documents\Downloads\[0.3c R2] SATDM~RP V9_FINAL\[0.3c R2]SATDM~RP V9_FINAL\Gamemodes\SATDM_v9.pwn(22575) : warning 215: expression has no effect C:\Documents and Settings\Administrateur\Mes documents\Downloads\[0.3c R2] SATDM~RP V9_FINAL\[0.3c R2]SATDM~RP V9_FINAL\Gamemodes\SATDM_v9.pwn(22575) : error 001: expected token: ";", but found "]" C:\Documents and Settings\Administrateur\Mes documents\Downloads\[0.3c R2] SATDM~RP V9_FINAL\[0.3c R2]SATDM~RP V9_FINAL\Gamemodes\SATDM_v9.pwn(22575) : error 029: invalid expression, assumed zero C:\Documents and Settings\Administrateur\Mes documents\Downloads\[0.3c R2] SATDM~RP V9_FINAL\[0.3c R2]SATDM~RP V9_FINAL\Gamemodes\SATDM_v9.pwn(22575) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 6 Errors.