Going Crazy ^^
#10

Quote:
Originally Posted by admantis
Посмотреть сообщение
pawn Код:
if(strcmp(cmd, "/buyhouse", true) == 0)
{
    for(new i; i<MAX_HOUSES; i++)
    {
        if(IsPlayerInRangeOfPoint(playerid, 3, HouseInfo[i][PickupX], HouseInfo[i][PickupY], HouseInfo[i][PickupZ]))
        {
            new Pname[24]; GetPlayerName(playerid, Pname, 24);
            for(new S; S<MAX_HOUSES; S++)
            {
                if(!strcmp(dini_Get("Owned.ini", HouseInfo[S][HouseNames]), Pname)) return SendClientMessage(playerid, 0xF60000AA, "You already have a house!");
            }
            if(GetPlayerMoney(playerid) < HouseInfo[i][HouseCost]) return SendClientMessage(playerid, 0xF60000AA, "You don't have enough money to buy this house");
            if(HouseInfo[i][Owned] == 1) return SendClientMessage(playerid, 0xF60000AA, "This house is already owned!");
            GivePlayerMoney(playerid, - HouseInfo[i][HouseCost]);
            GameTextForPlayer(playerid, "~r~House Purchased!", 2000, 3);
            HouseInfo[i][Owned] = 1;
            GetPlayerName(playerid, Pname, 24);
            format(HouseInfo[i][HouseOwner], 24, "%s", Pname);
            dini_Set("Owners.ini", HouseInfo[i][HouseNames], Pname);
        }
        else SendClientMessage(playerid, 0xF60000AA, "You are not close enough to a house");
    }
    return 0;
}
That one works Thank you
Reply


Messages In This Thread
Going Crazy ^^ - by BizzyD - 26.03.2011, 16:04
Re: Going Crazy ^^ - by antonio112 - 26.03.2011, 16:06
Re: Going Crazy ^^ - by admantis - 26.03.2011, 16:08
Re: Going Crazy ^^ - by BizzyD - 26.03.2011, 16:09
Re: Going Crazy ^^ - by admantis - 26.03.2011, 16:12
Re: Going Crazy ^^ - by BizzyD - 26.03.2011, 16:13
Re: Going Crazy ^^ - by admantis - 26.03.2011, 16:19
Re: Going Crazy ^^ - by BizzyD - 26.03.2011, 16:21
Re: Going Crazy ^^ - by admantis - 26.03.2011, 16:24
Re: Going Crazy ^^ - by BizzyD - 26.03.2011, 16:38

Forum Jump:


Users browsing this thread: 2 Guest(s)