14.07.2015, 18:13
PHP код:
CMD:chouse(playerid, params[])
{
new tmp[256];
new cmd[256+1];
new idx;
cmd = strtok(cmdtext, idx);
tmp = strtok(cmdtext,idx);
new tmp2[256];
tmp2 = strtok(cmdtext,idx);
if(!strlen(tmp) || !strlen(tmp2)) return SendClientMessage(playerid,-1,"Use: /chouse [price] [intid]");
new id = strval(tmp2);
new Price = strval(tmp);
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;
}