something wrong?
#1

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...
Reply
#2

Remove the "else" and it's brackets.
Reply
#3

The same..
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)