warning 225: unreachable code
#1

I compile my gamemode and i get this warning. Can someone help me?


pawn Код:
(43531) : warning 225: unreachable code
pawn Код:
if (PlayerToPoint(3, playerid,SBizzInfo[i][sbEntranceX], SBizzInfo[i][sbEntranceY], SBizzInfo[i][sbEntranceZ]))
    {
        if(PlayerInfo[playerid][pPbiskey] == i || GetPlayerMoney(playerid) >= SBizzInfo[i][sbEntranceCost])
        {
            if(PlayerInfo[playerid][pPbiskey] != i)
            {
                if(SBizzInfo[i][sbLocked] == 1)
                {
                    GameTextForPlayer(playerid, "~r~Closed", 5000, 1);
                    return 1;
                }
                if(SBizzInfo[i][sbProducts] == 0)
                {
                    GameTextForPlayer(playerid, "~r~Out of stock", 5000, 1);
                    return 1;
                }
                else
                {
                    return 1;
                }
                new string[256];
                SafeGivePlayerMoney(playerid,-SBizzInfo[i][sbEntranceCost]);
                gSpentCash[playerid] = GetPlayerMoney(playerid);
                SBizzInfo[i][sbProducts]--;
                SBizzInfo[i][sbTill] += SBizzInfo[i][sbEntranceCost];
                ExtortionSBiz(i, SBizzInfo[i][sbEntranceCost]);
                new dood[MAX_PLAYER_NAME];
                GetPlayerName(playerid, dood, sizeof(dood));
                format(string, sizeof(string), "%s [Text] $%d [text] %d", dood, SBizzInfo[i][sbEntranceCost], i);
                printf("%s", string);
                PayLog(string);
                OnPropUpdate();
            }
        }
        else
        {
            GameTextForPlayer(playerid, "~r~You don't have money.", 5000, 1);
        }
    }
}
}
    return 1; }
pawn Код:
new string[256];
Reply


Messages In This Thread
warning 225: unreachable code - by HardRock - 03.06.2013, 12:09
Re: warning 225: unreachable code - by Vince - 03.06.2013, 12:28
Re: warning 225: unreachable code - by HardRock - 03.06.2013, 12:49
Re: warning 225: unreachable code - by Konstantinos - 03.06.2013, 12:56
Re: warning 225: unreachable code - by HardRock - 03.06.2013, 13:02
Re: warning 225: unreachable code - by Konstantinos - 03.06.2013, 13:06
Re: warning 225: unreachable code - by HardRock - 03.06.2013, 14:34

Forum Jump:


Users browsing this thread: 3 Guest(s)