Buy House Command -_-
#9

Quote:
Originally Posted by Konstantinos
Посмотреть сообщение
Don't send the message about not in range in the loop then!

PHP код:
CMD:buyhouse(playeridparams[])
{
    new 
boolin_range;
    for(new 
a!= HouseLoad; ++a)
    {
        if(
IsPlayerInRangeOfPoint(playerid3.0HouseInfo[a][EntranceX], HouseInfo[a][EntranceY], HouseInfo[a][EntranceZ]))
        {
            if(
HouseInfo[a][HousePrice] > GetPlayerMoney(playerid)) return SendClientMessage(playeridCOLOR_RED"You don't have enough money!");
            new 
draw[200];
            
format(draw,sizeof(draw),"ID: %i\nPrice %i\nOwned: Yes\nOwner: %s",PlayerName(playerid));
            new 
query[200];
            
format(querysizeof(query), "UPDATE houses SET owner='%s', owned='true', text='%s' WHERE id='%i'"PlayerName(playerid), drawHouseInfo[a][HouseID]);
            
mysql_query(1query);
            
Update3DTextLabelText(HouseLabelCOLOR_GREENHouseInfo[a][HouseText]);
            
GivePlayerMoney(playerid, -HouseInfo[a][HousePrice]);
            
PlayerInfo[playerid][pHouseID] = HouseInfo[a][HouseID];
            
SendClientMessage(playeridCOLOR_GREEN"You've bought this house successfully!");
            
in_range true;
            break;
        }
    }
    if (!
in_rangeSendClientMessage(playeridCOLOR_RED"You are not near any house");
    return 
1;

By the way, I don't know about the update thing you mentioned but the query seems correct and there is a WHERE clause. Print the query and execute it through phpMyAdmin, does it update only for that specific house?
Yes it did, And I will re-load it again to update the text, right?
Reply


Messages In This Thread
Buy House Command -_- - by nezo2001 - 17.06.2015, 11:05
Re: Buy House Command -_- - by Darrenr - 17.06.2015, 11:18
Re: Buy House Command -_- - by Darrenr - 17.06.2015, 11:22
Re: Buy House Command -_- - by nezo2001 - 17.06.2015, 11:26
Re: Buy House Command -_- - by Darrenr - 17.06.2015, 11:31
Re: Buy House Command -_- - by nezo2001 - 17.06.2015, 11:46
Re: Buy House Command -_- - by Konstantinos - 17.06.2015, 11:49
Re: Buy House Command -_- - by Darrenr - 17.06.2015, 11:50
Re: Buy House Command -_- - by nezo2001 - 17.06.2015, 11:55

Forum Jump:


Users browsing this thread: 4 Guest(s)