SA-MP Forums Archive
something wrong? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: something wrong? (/showthread.php?tid=164538)



something wrong? - GaGlets(R) - 31.07.2010

pawn Код:
CMD:view(playerid,params[])
{
    for(new i = 0; i < sizeof(HouseInfo); i++)
    {
        if (IsPlayerInRangeOfPoint(playerid, 3.0, HouseInfo[i][hEntrancex], HouseInfo[i][hEntrancey], HouseInfo[i][hEntrancez]) && HouseInfo[i][hOwned] != 1)
        {
            if(PlayerInfo[playerid][pMoneyH] >= HouseInfo[i][hValue])
            {
                SetPlayerInterior(playerid,HouseInfo[i][hInt]);
                SetPlayerVirtualWorld(playerid,HouseInfo[i][hWorld]);
                SetPlayerPos(playerid,HouseInfo[i][hExitx],HouseInfo[i][hExity],HouseInfo[i][hExitz]);
                GameTextForPlayer(playerid, "~r~/exit any time", 5000, 1);
                PlayerInfo[playerid][pInt] = HouseInfo[i][hInt];
                PlayerInfo[playerid][pLocal] = i;
                HouseEntered[playerid] = i;
            }
            else
            {
                SendClientMessage(playerid,COLOR_GREY,"You dont have enough money.");
                return 1;
            }
        }
        else
        {
            SendClientMessage(playerid,COLOR_GREY,"You are not at house.");
            return 1;
        }
    }
    return 1;
}
Command all the time is showing You are not at house...


Re: something wrong? - Hiddos - 31.07.2010

Remove the "else" and it's brackets.


Re: something wrong? - GaGlets(R) - 01.08.2010

The same..