07.07.2013, 20:31
Jeff-s code is not working for me,all ID-s are 2 and the other stuff from the query below is still not working.
Код:
stock CreatePlayerHouse(playerid, sellprice, HouseLvl) { new Float:X, Float:Y, Float:Z; GetPlayerPos(playerid, X, Y, Z); new ID, Query[256], DBResult: result; format(Query, sizeof(Query), "SELECT COUNT(*) FROM `HOUSES`"); result = db_query(Database, Query); ID = db_num_rows(result) + 1; db_free_result(result); format(Query, sizeof(Query), "INSERT INTO `HOUSES` ('ID') VALUES('%d')", ID); db_query(Database, Query); format(Query, sizeof(Query), "UPDATE `HOUSES` SET NAME = 'Grad', FOR_SELL = '1', SELL_PRICE = '%d', RENTPRICE = '1000', HOUSE_LEVEL = '%d', X = '%f', Y = '%f', Z = '%f' WHERE `ID` = '%d' ", sellprice, HouseLvl, X, Y, Z, ID); db_query(Database, Query); SendClientMessage(playerid, COLOR_WHITE, ".:: [HOUSE]: House has been Successfully created."); //LoadPlayerHouse(ID); return true; }