26.11.2015, 13:02
try this!
PHP код:
CMD:buyhouse(playerid,params[])
{
new hid = GetHouseID(playerid);
new price = HouseInfo[hid][HPrice];
if(GetPlayerMoney(playerid) < price) return SendFM(playerid, COLOR_WHITE, "COL_RED"SERVER"COL_WHITE":You can't buy this house it is too expensive for you! House Price %d",price);
if(HouseInfo[hid][HOwned] == 1) return SendClientMessage(playerid,-1,"COLOR_RED"SERVER"COL_WHITE"You can't buy this house because it is already bought!");
if(HouseInfo[hid][HOwnerID] == pinfo[playerid][ID]) return SendClientMessage(playerid, -1, "COL_RED"You can't buy your own house!");
HouseBuy(playerid);
return