09.02.2012, 21:59
This line is giving me 2 really annoying warnings:
It's giving these 2 warnings:
Whole part of the script i'm adding:
dcmd's are all working fine, but under that all fucked -_- Tried everything. :/
pawn Код:
if (PLAYERLIST_authed[playerid]==0){
Код:
C:\Users\Joni\Desktop\TDM\filterscripts\saving.pwn(83) : warning 225: unreachable code C:\Users\Joni\Desktop\TDM\filterscripts\saving.pwn(83) : warning 217: loose indentation Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 2 Warnings.
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
dcmd(login,5,cmdtext);
dcmd(register,8,cmdtext);
return 0;
if (PLAYERLIST_authed[playerid]==0){
if (udb_Exists(PlayerName(playerid))){
SystemMsg(playerid,"You're not logged in yet.");
}
return 0;
}
return 1;
}