29.05.2013, 01:11
pawn Код:
C:\Users\Daoud\Desktop\Aviation Life\gamemodes\AviationLife.pwn(26704) : warning 217: loose indentation
C:\Users\Daoud\Desktop\Aviation Life\gamemodes\AviationLife.pwn(26704) : error 014: invalid statement; not in switch
C:\Users\Daoud\Desktop\Aviation Life\gamemodes\AviationLife.pwn(26704) : warning 215: expression has no effect
C:\Users\Daoud\Desktop\Aviation Life\gamemodes\AviationLife.pwn(26705) : warning 217: loose indentation
C:\Users\Daoud\Desktop\Aviation Life\gamemodes\AviationLife.pwn(26724) : warning 217: loose indentation
C:\Users\Daoud\Desktop\Aviation Life\gamemodes\AviationLife.pwn(26724) : error 014: invalid statement; not in switch
C:\Users\Daoud\Desktop\Aviation Life\gamemodes\AviationLife.pwn(26724) : warning 215: expression has no effect
C:\Users\Daoud\Desktop\Aviation Life\gamemodes\AviationLife.pwn(26724) : error 001: expected token: ";", but found ":"
C:\Users\Daoud\Desktop\Aviation Life\gamemodes\AviationLife.pwn(26724) : error 029: invalid expression, assumed zero
C:\Users\Daoud\Desktop\Aviation Life\gamemodes\AviationLife.pwn(26724) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
5 Errors.
5 Errors.[/pawn]
i didnt even touch it here is the line
pawn Код:
case 2;//military
{
if(PInfo[playerid][TotalScore] > 49)
{
gTeam[playerid] = TEAM_MILITARY;
SendClientMessage(playerid, COLOR_WHITE, "Welcome to the {FF9900}Military Pilot {FFFFFF}role. Type /help to view all commands related.");
TogglePlayerControllable(playerid, 1);
PlayerSpawned[playerid] = 1;
UpdatePlayerColour(playerid);
PurelySpawned[playerid] = 1;
RespawnPlayer(playerid);
}
else
{
SendClientMessage(playerid, COLOR_ERROR, "You need 50+ score to select this role!");
ShowRole(playerid);
return 1;
}
}