Advertisement
Guest User

Untitled

a guest
Jun 26th, 2014
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1.  
  2. forward CreateHouse();
  3. public CreateHouse()
  4. {
  5. new query[1000];
  6. new house;
  7. HouseInfo[house][ID] = cache_insert_id();
  8. HouseInfo[house][hWorld] = cache_insert_id();
  9. mysql_format(mysql, query, sizeof(query), "INSERT INTO `maisons`(`ID`, `hEntrancex`, `hEntrancey`, `hEntrancez`,`hInt`,`hLevel`, `hValue`, `hExitx`, `hExity`, `hExitz`, `hDiscription`, `hOwner`) VALUES ('%d', '%f', '%f', '%f', '%d', '%d', '%d', '%f', '%f', '%f','%s','%s')",HouseInfo[house][ID],HouseInfo[house][hEntrancex],HouseInfo[house][hEntrancey],
  10. HouseInfo[house][hEntrancez],HouseInfo[house][hInt],HouseInfo[house][hLevel],HouseInfo[house][hValue],HouseInfo[house][hExitx],HouseInfo[house][hExity],HouseInfo[house][hExitz],HouseInfo[house][hDiscription],HouseInfo[house][hOwner]);
  11. mysql_tquery(mysql, query, "", "");
  12. return 1;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement