14.05.2016, 22:22
Help me please
Lines
PHP код:
C:\Users\Pгo Doce\Desktop\Mafia\gamemodes\mafia.pwn(383) : error 002: only a single statement (or expression) can follow each "case"
C:\Users\Pгo Doce\Desktop\Mafia\gamemodes\mafia.pwn(383 -- 384) : error 028: invalid subscript (not an array or too many subscripts): "GetPlayerScore"
C:\Users\Pгo Doce\Desktop\Mafia\gamemodes\mafia.pwn(383 -- 385) : error 001: expected token: "}", but found "case"
C:\Users\Pгo Doce\Desktop\Mafia\gamemodes\mafia.pwn(383 -- 385) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
4 Errors.
PHP код:
public OnPlayerRequestClass(playerid, classid)
{
switch(classid) {
case 0 .. 2: Gang[playerid] = grove;
case 3 .. 5: Gang[playerid] = ballas;
case 6 .. 8: Gang[playerid] = vagos;
case 9 .. 11: Gang[playerid] = aztecas;
if(GetPlayerScore(playerid) > 500)
{
case 12 .. 14: Gang[playerid] = cops;
}
}
SetPlayerPos(playerid,1984.4445,157.9501,55.9384);
SetPlayerCameraPos(playerid,1984.4445,160.9501,55.9384);
SetPlayerCameraLookAt(playerid,1984.4445,157.9501,55.9384);
SetPlayerFacingAngle(playerid,0.0);
return 1;
}