01.03.2017, 13:19
Try this.
PHP код:
CMD:chouse(playerid, params[])
{
new Price;
new ID;
if(sscanf(params,"ii",Price,ID)) return SendClientMessage(playerid,-1,"Use: /chouse [price] [intid]");
if(Price <= 0) return SendClientMessage(playerid,-1,"Invalid house price. The house price must be between $"#MIN_HOUSE_PRICE" and $"#MAX_HOUSE_PRICE"");
CreateHouse(playerid,GetFreeHouseID,Price,ID);
SendClientMessage(playerid,-1,"House Created");
return 1;
}