Advertisement
Guest User

Untitled

a guest
May 24th, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PL/SQL 1.17 KB | None | 0 0
  1. NEW Text:quantity;
  2. NEW Text:people;
  3. NEW Text:usebox;
  4. NEW peoplei;
  5. format(peoplei, sizeof(peoplei), "%d", peoplei);
  6.  
  7.  
  8. quantity = TextDrawCreate(519.111389, 396.728668, "Ilosc osob w budynku:");
  9. TextDrawLetterSize(quantity, 0.300556, 1.136933);
  10. TextDrawAlignment(quantity, 1);
  11. TextDrawColor(quantity, -1);
  12. TextDrawSetShadow(quantity, 0);
  13. TextDrawSetOutline(quantity, 1);
  14. TextDrawBackgroundColor(quantity, 51);
  15. TextDrawFont(quantity, 1);
  16. TextDrawSetProportional(quantity, 1);
  17.  
  18. people = TextDrawCreate(577.777770, 409.173431, peoplei);
  19. TextDrawLetterSize(people, 0.300000, 1.136000);
  20. TextDrawAlignment(people, 2);
  21. TextDrawColor(people, -5963521);
  22. TextDrawSetShadow(people, 0);
  23. TextDrawSetOutline(people, 1);
  24. TextDrawBackgroundColor(people, 51);
  25. TextDrawFont(people, 1);
  26. TextDrawSetProportional(people, 1);
  27.  
  28. usebox = TextDrawCreate(639.333312, 398.228881, "usebox");
  29. TextDrawLetterSize(usebox, 0.000000, 2.504076);
  30. TextDrawTextSize(usebox, 516.222229, 0.000000);
  31. TextDrawAlignment(usebox, 1);
  32. TextDrawColor(usebox, 0);
  33. TextDrawUseBox(usebox, TRUE);
  34. TextDrawBoxColor(usebox, 102);
  35. TextDrawSetShadow(usebox, 0);
  36. TextDrawSetOutline(usebox, 0);
  37. TextDrawFont(usebox, 0);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement