Advertisement
StefkeZ

Untitled

Aug 5th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.37 KB | None | 0 0
  1. //==================================[ Igraci ]==================================
  2.  
  3. #define OBJECT_SLOT_MASKSUNGL 0
  4. #define OBJECT_SLOT_HEAD 1
  5. #define OBJECT_SLOT_BANDANA 2
  6. #define OBJECT_SLOT_FREE 3
  7. #define OBJECT_SLOT_RHAND 4
  8. #define OBJECT_SLOT_LHAND 5
  9. #define OBJECT_SLOT_HELMET 6
  10. #define OBJECT_SLOT_MASK 7
  11. #define OBJECT_SLOT_BADGE 8
  12. #define OBJECT_SLOT_WINTERCAP 9
  13.  
  14. #define POSAO_NEMA 0
  15. #define POSAO_MEHANICAR 1
  16. #define POSAO_MASINOVODJA 2
  17. #define POSAO_PREVOZNIK 3
  18. #define POSAO_KOSAC 4
  19. #define POSAO_KOMUNALAC 5
  20. #define POSAO_GRADJEVINAR 6
  21. #define POSAO_PIZZA 7
  22. #define POSAO_PILOT 8
  23. #define POSAO_FARMER 9
  24. #define POSAO_BUSVOZAC 10
  25. #define POSAO_RUDAR 11
  26. #define POSAO_PREVOZNOVCA 12
  27. #define POSAO_RIBAR 13
  28. #define POSAO_PNAMESTAJA 14
  29. #define POSAO_PEPSI 15
  30.  
  31. // poslovi bus vozac i rudar obavezno i sistem imanja i casino.
  32.  
  33. #define MAX_JOBS 15
  34.  
  35. enum jobData {
  36.  
  37. jName[ 64 ],
  38. Float:jPos[ 3 ],
  39. jType,
  40. jUniformSkin_Male,
  41. jUniformSkin_Female,
  42. Float:jUniformPos[ 3 ]
  43. };
  44.  
  45. new jobsInfos[ MAX_JOBS ][ jobData ] = {
  46.  
  47. {"Mehanicar", {1952.8616, -1594.2709, 13.5732}, POSAO_MEHANICAR, 0, 0, { 0.0, 0.0, 0.0 } },
  48. {"Masinovodja", {1714.6831, -1941.8939, 13.5753}, POSAO_MASINOVODJA, 7, 69, { 1751.5702, -1943.7581, 13.5691 } },
  49. {"Prevoznik", {-76.7671, -1136.5931, 1.0781}, POSAO_PREVOZNIK, 206, 69, { -79.6867, -1140.4409, 1.0781 } },
  50. {"Kosac Trave", {1957.1165,-1197.0793,20.0571}, POSAO_KOSAC, 202, 69, { 1959.4341,-1200.6848,20.0571 } },
  51. {"Komunalac", {2453.1184, -2090.8301, 13.5469}, POSAO_KOMUNALAC, 16, 69, { 2510.8708, -2112.6892, 14.9090 } },
  52. {"Gradjevinar", {2390.4060, -1284.7384, 26.2582}, POSAO_GRADJEVINAR, 27, 69, { 2387.6628, -1292.4750, 25.0725 } },
  53. {"Pizza Dostavljac", {2092.3064, -1804.2070, 13.5485}, POSAO_PIZZA, 0, 0, { 0.0, 0.0, 0.0 } },
  54. {"Pilot", {1892.8370, -2328.5259, 13.5469}, POSAO_PILOT, 61, 69, { 1892.5968, -2244.0378, 13.5469 } },
  55. {"Farmer", {-1047.9996,-1230.6726,128.6476}, POSAO_FARMER},
  56. {"Bus vozac", {1769.9144,-1901.4576,13.5578}, POSAO_BUSVOZAC, 61, 69, { 1769.7861,-1903.8315,13.5580 } },
  57. {"Rudar", {590.3492, 875.4081, -42.496}, POSAO_RUDAR, 260, 69, { 964.3640, 392.4265, -33.1746 } },
  58. {"Prevoznik Novca", {1443.3070,-991.1316,801.5000}, POSAO_PREVOZNOVCA, 71, 69, { 1454.1973,-993.1821,801.5000 } },
  59. {"Ribar", {2128.8340, 181.2520, 1.7772}, POSAO_RIBAR, 33, 69, { 2133.6624, 201.5592, 2.1109 } },
  60. {"Proizvodjac Namestaja", {2170.9680, -2296.4177, 13.6469}, POSAO_PNAMESTAJA, 8, 69, { 2150.0945, -2284.2131, 14.7734 } },
  61. {"Pepsi Dostavljac", {930.6859, -1582.6653, 13.5593}, POSAO_PEPSI, 261, 69, { 932.9435, -1606.0803, 14.0430 } }
  62. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement