Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. CMD:testdoma(playerid, params[])
  2. {
  3. mysql_function_query(connects, "SELECT * FROM `House` WHERE `hOwned` = '0' AND `hKlass` = '0' ORDER BY `hOwned` DESC LIMIT 20", true, "FreeHouses", "d",playerid);
  4. return 1;
  5. }
  6.  
  7.  
  8. forward FreeHouses(playerid);
  9. public FreeHouses(playerid)
  10. {
  11. new rows, fields,string[50],stringall[1000];
  12. cache_get_data(rows, fields);
  13. if(rows)
  14. {
  15. new
  16. ID_H, Value_H;
  17. for(new i = 0; i < rows; i++)
  18. {
  19. ID_H = cache_get_field_content_int(i,"hID");
  20. Value_H = cache_get_field_content_int(i,"hValue");
  21.  
  22. format(string,sizeof(string),"Íîìåð Äîìà: %d - %d$, Êëàññ: 0\n",ID_H,Value_H);
  23. strcat(stringall, string);
  24. continue;
  25.  
  26. }
  27. ShowPlayerDialog(playerid, 7071, DIALOG_STYLE_MSGBOX, "Ñïèñîê ñâîáîäíûõ äîìîâ!",stringall, ".:Îêåé:.", "");
  28. }
  29. else ShowPlayerDialog(playerid, 7071, DIALOG_STYLE_MSGBOX, "{ED1858}Ñïèñîê ñâîáîäíûõ äîìîâ!", "{FF0000}Ñâîáîäíûõ Äîìîâ Íåò", ".:Îê:.", "");
  30. return 1;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement