15.08.2009, 19:56
Error:
Error line:
Full code:
Код:
(1343) : warning 225: unreachable code Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Warning.
Код:
1343: return 1;
Код:
public OnPlayerRequestClass(playerid, classid) { new string[MAX_PLAYER_NAME]; new plname[MAX_PLAYER_NAME]; GetPlayerName(playerid, plname, sizeof(plname)); format(string, sizeof(string), "mg/%s.ini", plname); if(fexist(string)) { gPlayerAccount[playerid] = 1; SendClientMessage(playerid, COLOR_WHITE, "SERVER: You are a registered citizen of San Andreas."); SendClientMessage(playerid, COLOR_WHITE, "SERVER: Use /login [password] to log in to your account."); return 1; } else { gPlayerAccount[playerid] = 0; SendClientMessage(playerid,COLOR_WHITE,"SERVER: Your'e are not registered,type to register, /register [password]"); return 1; } return 1; }