I have a sscanf warning please help
#5

PHP код:
CMD:unfreeze(playerid,params[])
    {
        if(
PlayerInfo[playerid][pAdminLevel] >=1)
        {
            new 
id,n[MAX_PLAYER_NAME],reason[35], on[MAX_PLAYER_NAME], string[128], string2[128];
            
sscanf(params,"uS[35](no reason)",idreason) return SendClientMessage(playerid,COLOR_RED,"Usage:/unfreeze [ID] [reason]");
            else if(
playerid == INVALID_PLAYER_IDSendClientMessage(playerid,COLOR_RED,"System: Invalid ID");
            if (
id == INVALID_PLAYER_ID) return SendClientMessage(playeridCOLOR_RED"System: Invalid ID");
            else
            {
            
GetPlayerName(playerid,n,sizeof(n));
            
GetPlayerName(id,on,sizeof(on));
            
format(string,sizeof(string),"You have been unfreezed by Admin: %s for %s",n,reason);
            
SendClientMessage(playerid,COLOR_RED,string);//
            
format(string2sizeof(string), "Admin Action: %s has unfreezed %s because: %s",n,on,reason);
            
SendClientMessageToAll(COLOR_RED,string2);
            
TogglePlayerControllable(playerid,1);
            }
        }
        else return 
SendClientMessage(playerid,COLOR_RED,"  You are not allowed to use this command!");
        return 
1;
    } 
And im getting the error

Код:
C:\Documents and Settings\Chris\Desktop\Desktop\Mastalol\Grand Theft Auto San Andreas Samp Server\filterscripts\SideShock.pwn(224) : error 001: expected token: ";", but found "return"
C:\Documents and Settings\Chris\Desktop\Desktop\Mastalol\Grand Theft Auto San Andreas Samp Server\filterscripts\SideShock.pwn(225) : warning 225: unreachable code
C:\Documents and Settings\Chris\Desktop\Desktop\Mastalol\Grand Theft Auto San Andreas Samp Server\filterscripts\SideShock.pwn(225) : error 029: invalid expression, assumed zero
C:\Documents and Settings\Chris\Desktop\Desktop\Mastalol\Grand Theft Auto San Andreas Samp Server\filterscripts\SideShock.pwn(225) : warning 215: expression has no effect
C:\Documents and Settings\Chris\Desktop\Desktop\Mastalol\Grand Theft Auto San Andreas Samp Server\filterscripts\SideShock.pwn(225) : error 001: expected token: ";", but found "if"
Reply


Messages In This Thread
I have a sscanf warning please help - by Shockey HD - 27.07.2011, 06:12
Re: I have a sscanf warning please help - by iggy1 - 27.07.2011, 06:15
Re: I have a sscanf warning please help - by Shockey HD - 27.07.2011, 06:40
Re: I have a sscanf warning please help - by Ironboy - 27.07.2011, 06:49
Re: I have a sscanf warning please help - by Shockey HD - 27.07.2011, 06:54
Re: I have a sscanf warning please help - by Burridge - 27.07.2011, 06:55
Re: I have a sscanf warning please help - by Shockey HD - 27.07.2011, 06:57
Re: I have a sscanf warning please help - by Burridge - 27.07.2011, 06:57
Re: I have a sscanf warning please help - by Shockey HD - 27.07.2011, 06:59

Forum Jump:


Users browsing this thread: 1 Guest(s)