Advertisement
Guest User

Untitled

a guest
Mar 11th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 251.08 KB | None | 0 0
  1. /**
  2. * config
  3. *
  4. * Exile Mod
  5. * www.exilemod.com
  6. * © 2015 Exile Mod Team
  7. *
  8. * This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
  9. * To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/.
  10. */
  11.  
  12. class CfgPatches
  13. {
  14. class exile_server_config
  15. {
  16. requiredVersion = 0.1;
  17. requiredAddons[] = {};
  18. units[] = {};
  19. weapons[] = {};
  20. magazines[] = {};
  21. ammo[] = {};
  22. };
  23. };
  24.  
  25.  
  26. class CfgBuildings
  27. {
  28.  
  29. ///////////////////////////////////////////////////////////////////////////
  30. // Castles & Lighthouses & Life Guard Towers
  31. ///////////////////////////////////////////////////////////////////////////
  32. class Land_LifeguardTower_01_F
  33. {
  34. table = "Tourist";
  35. positions[] = {{-0.498047, -0.222656, 1.13312}};
  36. };
  37.  
  38. class Land_LightHouse_F
  39. {
  40. table = "Tourist";
  41. positions[] = {{-5.74805, 11.0859, -3.75002}, {0.789063, -2.94336, -11.0953}, {1.07813, -2.83008, 5.39755}};
  42. };
  43.  
  44. class Land_Lighthouse_small_F
  45. {
  46. table = "Tourist";
  47. positions[] = {{-0.369141, 1.18555, -3.39546}, {4.32617, -0.462891, -3.39546}};
  48. };
  49.  
  50. class Land_Castle_01_tower_F
  51. {
  52. table = "Tourist";
  53. positions[] = {{-1.66602, 0.603516, 7.94255}, {-1.99023, -1.70508, -1.0866}, {-2.14453, 2.73633, -3.95897}, {0.164063, 1.33203, -9.47995}, {1.14844, -1.18359, 7.94255}, {2.06641, 2.66992, -6.67494}, {2.15039, -1.89063, 1.70487}, {2.27344, 2.70703, 4.42336}};
  54. };
  55.  
  56. ///////////////////////////////////////////////////////////////////////////
  57. // Military
  58. ///////////////////////////////////////////////////////////////////////////
  59. //"Land_Airport_center_F"
  60. //"Land_Airport_left_F"
  61. //"Land_Airport_right_F"
  62. // TODO: "Land_Cargo_House_V2_F",
  63.  
  64. class Land_TentHangar_V1_F
  65. {
  66. table = "Military";
  67. positions[] = {{-8.1582, -2.20703, -4.08853}, {-8.1582, 6.85547, -4.08853}, {-8.52734, -7.57227, -4.08853}, {7.76953, -7.64453, -4.08853}, {8.16016, 1.89453, -4.08853}, {8.57617, 7.48438, -4.08853}};
  68. };
  69.  
  70. class Land_Hangar_F
  71. {
  72. table = "Military";
  73. positions[] = {{-11.6641, 20.9063, -5.38129}, {-12.1133, 9.19336, -5.38129}, {-12.1543, -3.90625, -5.38129}, {-12.1816, -16.8906, -5.38129}, {1.75, 20.9688, -5.38129}, {11.3711, -19.2734, -5.38129}, {12.0469, -5.7168, -5.38129}, {12.7305, 6.83203, -5.38129}, {13.7285, 18.1602, -5.38129}};
  74. };
  75.  
  76. class Land_Airport_Tower_F
  77. {
  78. table = "Military";
  79. positions[] = {{-0.363281, 6.25586, -10.4415}, {-0.636719, -2.08203, -1.4408}, {-0.638672, 2.21875, -4.44063}, {-0.705078, 1.94336, -7.44128}, {-0.751953, 5.2793, 1.55464}, {-1.10742, -4.67578, 2.25613}};
  80. };
  81.  
  82. class Land_Cargo_House_V1_F
  83. {
  84. table = "Military";
  85. positions[] = {{-1.38281, 3.12109, 0.040287}, {1.24805, 2.54102, 0.0402873}};
  86. };
  87.  
  88. class Land_Cargo_House_V3_F
  89. {
  90. table = "Military";
  91. positions[] = {{-2.0918, 1.58984, -0.0957484}, {1.11914, 3.17969, 0.0402873}};
  92. };
  93.  
  94. class Land_Cargo_HQ_V1_F
  95. {
  96. table = "Military";
  97. positions[] = {{-0.294922, -3.42188, -3.27229}, {-1.46484, 3.26172, -3.27229}, {-2.02734, -2.62891, -0.747443}, {4.24609, 1.51758, -0.747443}, {4.98633, 3.64844, -3.27229}};
  98. };
  99.  
  100. class Land_Cargo_HQ_V2_F
  101. {
  102. table = "Military";
  103. positions[] = {{-1.25586, 1.48828, -0.747442}, {-1.50391, -2.52148, -3.27229}, {-1.50391, 2.67773, -3.27229}, {-1.9043, -4.61133, -0.747442}, {5.35156, 1.64648, -0.747442}, {5.5332, 3.30859, -3.27229}};
  104. };
  105.  
  106. class Land_Cargo_HQ_V3_F
  107. {
  108. table = "Military";
  109. positions[] = {{-1.56641, -2.93164, -0.747444}, {-1.81641, -4.90234, -3.27229}, {-1.89648, 0.654297, -3.27229}, {4.65234, 2.41602, -3.27229}, {5.24805, 1.60742, -0.747444}};
  110. };
  111.  
  112. class Land_u_Barracks_V2_F
  113. {
  114. table = "Military";
  115. // There are broken?
  116. //positions[] = {{-0.505859, 3.2168, 0.605521}, {-0.601563, 3.07617, 3.9395}, {-11.0234, -2.65625, 0.60552}, {-11.1328, -3.58398, 3.9395}, {-12.377, 0.271484, 3.9395}, {-2.39453, -3.92773, 0.605342}, {-5.09766, -4.89844, 3.93943}, {-8.69922, 3.24414, 3.9395}, {-9.12695, 3.73047, 0.60552}, {10.3711, 3.51367, 0.605521}, {10.6484, 2.85156, 3.9395}, {13.0684, -3.30469, 0.605521}, {13.1934, -3.42383, 3.9395}, {3.28711, -3.98633, 0.605521}, {3.4707, -3.55469, 3.9395}, {6.22852, 3.50391, 3.9395}, {6.39258, 3.05664, 0.605521}};
  117. positions[] = {{9.75244, -1.66211, 1.43508}, {9.70215, -1.77148, -1.89791}, {-5.31592, -2.94531, -1.89791}, {-16.0903, 1.21094, -1.8979}, {6.95557, 4.13867, -1.89791}, {-14.6865, -2.08008, -1.89791}, {-3.89746, 3.95898, -1.89791}, {0.0639648, -2.16406, 1.43507}, {2.74951, 4.44336, 1.43507}, {2.84521, 4.22461, -1.89791}, {-12.3584, 4.30469, 1.43508}, {-12.1733, 4.46875, -1.89791}, {-16.123, 1.125, 1.43507}, {0.137695, -1.90625, -1.89791}, {-14.585, -1.94336, 1.43508}, {-5.88818, -3.99609, 1.43507}, {-3.96143, 4.37109, 1.43508}, {6.89014, 4.32227, 1.43507}};
  118. };
  119.  
  120. class Land_i_Barracks_V2_F
  121. {
  122. table = "Military";
  123. positions[] = {{-0.505859, 3.2168, 0.605521}, {-0.601563, 3.07617, 3.9395}, {-11.0234, -2.65625, 0.60552}, {-11.1328, -3.58398, 3.9395}, {-12.377, 0.271484, 3.9395}, {-2.39453, -3.92773, 0.605342}, {-5.09766, -4.89844, 3.93943}, {-8.69922, 3.24414, 3.9395}, {-9.12695, 3.73047, 0.60552}, {10.3711, 3.51367, 0.605521}, {10.6484, 2.85156, 3.9395}, {13.0684, -3.30469, 0.605521}, {13.1934, -3.42383, 3.9395}, {3.28711, -3.98633, 0.605521}, {3.4707, -3.55469, 3.9395}, {6.22852, 3.50391, 3.9395}, {6.39258, 3.05664, 0.605521}};
  124. };
  125.  
  126. class Land_i_Barracks_V1_F
  127. {
  128. table = "Military";
  129. positions[] = {{-0.464844, 3.49219, 0.605521}, {-0.476563, 3.95703, 3.9395}, {-10.4844, -3.32422, 3.9395}, {-11.1055, -2.92188, 0.605521}, {-12.3066, 0.222656, 0.605521}, {-2.29688, -4.23828, 0.605283}, {-3.89648, -4.80078, 3.93923}, {-8.66992, 3.86328, 0.605521}, {-9.03516, 3.31055, 3.9395}, {10.3301, 2.77734, 0.605521}, {10.4023, 3.18945, 3.9395}, {13.0352, -3.23438, 3.9395}, {13.1738, -3.31055, 0.605521}, {3.57227, -3.49414, 0.605522}, {3.61133, -2.98047, 3.9395}, {6.38281, 3.41992, 0.60552}, {6.4082, 2.87695, 3.9395}};
  130. };
  131.  
  132. class Land_Cargo_Patrol_V1_F
  133. {
  134. table = "Military";
  135. positions[] = {{-1.6875, -1.03906, -0.55952}, {1.73828, -1.17383, -0.55952}};
  136. };
  137.  
  138. class Land_Cargo_Patrol_V2_F
  139. {
  140. table = "Military";
  141. positions[] = {{-1.01953, -1.0918, -0.55952}, {1.82031, -0.695313, -0.55952}};
  142. };
  143.  
  144. class Land_Cargo_Tower_V1_F
  145. {
  146. table = "Military";
  147. positions[] = {{-3.54785, -3.01758, 2.47987},{-3.15625, -0.837891, 5.00472},{-2.0498, -3.29883, -0.120125},{4.55957, 4.39258, -0.120125},{-4.42383, 2.45117, -0.120125},{-2.87598, 2.20898, -4.2958},{-2.88281, 4.14258, 5.00472},{0.235352, -1.19727, 5.07987},{3.58105, 4.11719, 2.47988},{1.27441, 3.17773, -8.24333},{2.50488, 0.0625, 5.00472}};
  148. };
  149.  
  150. class Land_Cargo_Tower_V1_No1_F
  151. {
  152. table = "Military";
  153. positions[] = {{-2.4668, -4.10156, 5.00471}, {-2.7168, 1.0625, -0.120123}, {-2.83984, -2.95313, 2.47987}, {-3.06641, -2.66992, -0.120123}, {-3.12109, 2.42773, -4.2958}, {-3.16211, 4.51563, 5.00471}, {1.26367, 2.49609, -8.24333}, {2.25195, 4.30664, -0.120123}, {3.34766, 3.33203, 2.47987}, {3.66797, 1.8457, 5.00471}};
  154. };
  155.  
  156. class Land_Cargo_Tower_V1_No2_F
  157. {
  158. table = "Military";
  159. positions[] = {{-2.71289, 3.0957, -0.120123}, {-2.83203, 5.06445, 5.00472}, {-3.48633, 2.28906, -4.2958}, {-3.64844, -2.87891, 2.47988}, {-3.77344, -3.32617, 5.00472}, {-3.80664, -1.75977, -0.120123}, {0.0625, -0.287109, 5.07988}, {1.58984, -2.11523, -0.120123}, {2.13672, 2.20703, -8.24332}, {3.57422, 4.22461, 2.47988}, {3.75, 1.31055, 5.00472}, {4.98633, 3.90625, -0.120123}};
  160. };
  161.  
  162. class Land_Cargo_Tower_V1_No3_F
  163. {
  164. table = "Military";
  165. positions[] = {{-0.214844, -0.460938, 5.07988}, {-2.33203, -2.96094, -0.120119}, {-2.89648, -4.0625, 5.00472}, {-3.08008, -2.8125, 2.47988}, {-3.28711, 2.60352, -4.2958}, {-3.61328, 4.44141, 5.00472}, {-4.01758, 1.86133, -0.120119}, {1.54688, 2.61133, -8.24332}, {3.52734, 3.8418, 2.47988}, {3.5332, -0.386719, 5.00472}, {4.88477, 4.18945, -0.120119}};
  166. };
  167.  
  168. class Land_Cargo_Tower_V1_No4_F
  169. {
  170. table = "Military";
  171. positions[] = {{-2.68555, -3.07031, -0.120119}, {-2.93359, -4.27148, 5.00472}, {-3.22461, 4.84375, 5.00472}, {-3.6543, 1.57227, -4.2958}, {-3.70508, -3.0332, 2.47988}, {-4.26367, 0.980469, -0.120119}, {2.1543, 2.08789, -8.24332}, {3.46289, 2.25781, 2.47988}, {3.62305, 2.16797, 5.00472}, {5.10156, 4.20898, -0.120119}};
  172. };
  173.  
  174. class Land_Cargo_Tower_V1_No5_F
  175. {
  176. table = "Military";
  177. positions[] = {{-2.25781, -2.77344, -0.120119}, {-2.375, -4.45508, 5.00472}, {-2.41602, 5.18164, 5.00472}, {-2.94922, 2.4082, -4.2958}, {-3.89648, -2.7832, 2.47988}, {-4.03906, 1.43945, -0.120119}, {0.0410156, -0.8125, 5.07988}, {1.62305, 2.55664, -8.24332}, {2.97461, -0.335938, 5.00472}, {3.90039, 3.68555, 2.47988}, {4.80859, 3.57422, -0.120117}};
  178. };
  179.  
  180. class Land_Cargo_Tower_V1_No6_F
  181. {
  182. table = "Military";
  183. positions[] = {{-1.6875, -2.5918, -0.120119}, {-3.16992, -3.74219, 5.00472}, {-3.41797, 1.87305, -0.120119}, {-3.49805, 2.06836, -4.2958}, {-3.81055, 4.59766, 5.00472}, {-3.92969, -2.12109, 2.47988}, {1.92578, 2.27344, -8.24332}, {3.50195, 2.76563, 2.47988}, {3.64258, 0.0078125, 5.00472}, {5.19141, 4.45117, -0.120119}};
  184. };
  185.  
  186. class Land_Cargo_Tower_V1_No7_F
  187. {
  188. table = "Military";
  189. positions[] = {{-2.59766, -3.14063, -0.120119}, {-2.7832, 1.94531, -4.2958}, {-2.83203, 1.58594, -0.120119}, {-3.20508, 4.62891, 5.00472}, {-3.29883, -2.90234, 5.00472}, {-3.87891, -3.11914, 2.47988}, {0.228516, -1.05273, 5.07988}, {1.65234, 2.58594, -8.24332}, {3.40039, 3.05859, 2.47988}, {4.18164, 0.246094, 5.00472}, {4.42578, 3.99805, -0.120119}};
  190. };
  191.  
  192. class Land_Cargo_Tower_V2_F
  193. {
  194. table = "Military";
  195. positions[] = {{4.29492, 3.70508, -0.120117}, {-2.5293, -3.10742, 2.47988}, {-2.6543, 2.01172, -4.2958}, {-2.66797, -3.4707, 5.00472}, {-2.67773, 4.97461, 5.00472}, {-3.06836, 1.80273, -0.120117}, {-3.25586, -3.56445, -0.120117}, {0.611328, 0.0214844, 5.07988}, {2.46094, 1.92383, -8.24332}, {2.61328, -0.296875, 2.47988}, {3.07422, 4.14063, 2.47988}, {3.50195, 1.22656, 5.00472}};
  196. };
  197.  
  198. class Land_Cargo_Tower_V3_F
  199. {
  200. table = "Military";
  201. positions[] = {{-1.59375, -2.7168, -0.120119}, {-2.40039, 2.39648, -4.2958}, {-3.24023, -3.17773, 5.00472}, {-3.51367, 4.57617, 5.00472}, {-3.70703, -3.60547, 2.47988}, {-4.54883, 2.47266, -0.120119}, {0.142578, -0.179688, 5.07988}, {2.2793, 2.25391, -8.24332}, {3.87109, 3.3418, 2.47988}, {4.22656, 0.390625, 5.00472}, {5.05469, 4.16406, -0.120119}};
  202. };
  203.  
  204. class Land_MilOffices_V1_F
  205. {
  206. table = "Military";
  207. positions[] = {{-11.6309, -5.04492, -2.86675}, {-15.1172, 9.07617, -2.86675}, {-15.123, 2.19336, -2.86675}, {-15.5938, -4.07227, -2.86675}, {-3.46484, -3.22266, -2.86675}, {-4.10352, 9.33398, -2.86675}, {-7.09766, -2.95898, -2.86675}, {-8.6582, 9.02344, -2.86675}, {0.794922, -3.08594, -2.86675}, {1.45703, 8.60156, -2.86675}, {13.9258, 0.492188, -2.86675}, {15.3613, 8.10742, -2.86675}, {8.54883, 8.01563, -2.86675}, {8.61133, -4.3125, -2.86675}, {8.68359, -1.73438, -2.86675}};
  208. };
  209.  
  210. class Land_Radar_F
  211. {
  212. table = "Military";
  213. positions[] = {{-10.1797, -9.80859, -6.00412}, {-9.61719, 10.4219, -6.00412}, {11.6211, 1.06641, -6.00412}, {2.81445, 12.2578, -7.78305}};
  214. };
  215.  
  216. ///////////////////////////////////////////////////////////////////////////
  217. // Medical
  218. ///////////////////////////////////////////////////////////////////////////
  219. //"Land_Hospital_main_F",
  220. //"Land_Hospital_side1_F",
  221. //"Land_Hospital_side2_F",
  222. class Land_Medevac_house_V1_F
  223. {
  224. table = "Medical";
  225. positions[] = {{-1.25, 1.01367, -0.105749}, {1.38281, 2.82227, 0.0302868}};
  226. };
  227.  
  228. class Land_Medevac_HQ_V1_F
  229. {
  230. table = "Medical";
  231. positions[] = {{-0.896484, 2.24219, -3.26622}, {-1.45898, -3.75391, -3.26622}, {-1.54297, 1.05469, -0.741375}, {5.17578, 2.66992, -3.26622}, {5.6875, 1.63477, -0.741374}};
  232. };
  233.  
  234. ///////////////////////////////////////////////////////////////////////////
  235. // Garages / Vehicle
  236. ///////////////////////////////////////////////////////////////////////////
  237. class Land_FuelStation_Build_F
  238. {
  239. table = "VehicleService";
  240. positions[] = {{-1.02344, -0.509766, -1.33601}, {2.07617, 0.580078, -1.3361}};
  241. };
  242.  
  243. class Land_i_Garage_V1_F
  244. {
  245. table = "VehicleService";
  246. positions[] = {{-0.925781, 2.05469, -0.0974805}, {-1.52539, -1.99805, -0.0974805}, {3.80273, -0.939453, -0.0974805}};
  247. };
  248.  
  249. class Land_i_Garage_V2_F
  250. {
  251. table = "VehicleService";
  252. positions[] = {{-0.00585938, -1.24609, -0.0974801}, {-2.16016, 1.54492, -0.0974798}, {1.60547, 2.11719, -0.0974803}, {3.2832, -1.51953, -0.0974796}};
  253. };
  254.  
  255. class Land_CarService_F
  256. {
  257. table = "VehicleService";
  258. positions[] = {{-0.964844, 1.77148, -1.25606}, {-3.15625, 7.39844, -1.25606}, {-4.54688, 4, -1.25606}, {0.492188, 2.8457, -1.25606}, {3.50781, -0.113281, -1.25606}, {3.74414, 6.12891, -1.25606}};
  259. };
  260.  
  261. ///////////////////////////////////////////////////////////////////////////
  262. // Civillian Lower Class
  263. ///////////////////////////////////////////////////////////////////////////
  264. // TODO: "Land_u_Addon_02_V1_F",
  265. // TODO: "Land_i_Addon_02_V1_F",
  266. // TODO: "Land_i_Addon_03mid_V1_F",
  267.  
  268. class Land_Chapel_Small_V1_F
  269. {
  270. table = "CivillianLowerClass";
  271. positions[] = {{0.482422, 0.65625, -0.867858}, {3.08984, -1.2832, -0.867858}};
  272. };
  273.  
  274. class Land_Chapel_Small_V2_F
  275. {
  276. table = "CivillianLowerClass";
  277. positions[] = {{0.556641, -0.966797, -0.867857}, {3.54297, 0.486328, -0.867857}};
  278. };
  279.  
  280. class Land_Chapel_V1_F
  281. {
  282. table = "CivillianLowerClass";
  283. positions[] = {{-3.22852, -3.4043, -2.80848}, {-3.65625, 2.8418, -2.80848}, {-6.47266, -2.20703, -2.80848}, {3.98438, 2.72852, -2.80848}, {4.73242, -2.59375, -2.80848}, {9.35938, -0.285156, -2.60848}};
  284. };
  285.  
  286. class Land_Chapel_V2_F
  287. {
  288. table = "CivillianLowerClass";
  289. positions[] = {{-2.36523, 2.46289, -2.80848}, {-3.06445, -2, -2.80848}, {-6.61328, -1.54688, -2.80848}, {4.75781, 3.67383, -2.80848}, {4.82813, -2.96484, -2.80848}, {9.03711, 0.316406, -2.60848}};
  290. };
  291.  
  292. class Land_Church_01_V1_F
  293. {
  294. table = "CivillianLowerClass";
  295. positions[] = {{-4.36719, -5.81055, -5.46942}, {-4.46875, -2.23633, -5.74363}, {-4.54492, 1.57422, -5.74363}, {-4.8125, 5.58789, -5.49442}, {3.00781, -5.92969, -6.44017}, {4.19141, 5.77148, -6.44865}};
  296. };
  297.  
  298. class Land_i_Addon_03_V1_F
  299. {
  300. table = "CivillianLowerClass";
  301. positions[] = {{-2.98828, -0.244141, -0.0501008}, {3.53711, -0.578125, -0.0501013}};
  302. };
  303.  
  304. class Land_i_Addon_04_V1_F
  305. {
  306. table = "CivillianLowerClass";
  307. positions[] = {{-1.25, 0.0175781, 0.0796976}};
  308. };
  309.  
  310. class Land_u_Addon_01_V1_F
  311. {
  312. table = "CivillianLowerClass";
  313. positions[] = {{1.69727, 3.04102, 0.0627024}, {4.28125, 1.1543, 0.0627022}};
  314. };
  315.  
  316. class Land_i_Windmill01_F
  317. {
  318. table = "CivillianLowerClass";
  319. positions[] = {{-0.585938, 0.908203, -3.53162}};
  320. };
  321.  
  322. class Land_d_Windmill01_F
  323. {
  324. table = "CivillianLowerClass";
  325. positions[] = {{-0.935547, 0.259766, -2.2985}, {-1.65039, 0.365234, 0.947132}};
  326. };
  327.  
  328. class Land_Slum_House01_F
  329. {
  330. table = "CivillianLowerClass";
  331. positions[] = {{0.767578, 0.773438, -1.07847}};
  332. };
  333.  
  334. class Land_Slum_House02_F
  335. {
  336. table = "CivillianLowerClass";
  337. positions[] = {{1.13867, 2.50391, -0.798099}, {1.59375, -0.0566406, -0.798099}};
  338. };
  339.  
  340. class Land_Slum_House03_F
  341. {
  342. table = "CivillianLowerClass";
  343. positions[] = {{-1.29688, 0.566406, -1.07377}, {2.27148, 1.125, -1.07377}};
  344. };
  345.  
  346. class Land_cargo_house_slum_F
  347. {
  348. table = "CivillianLowerClass";
  349. positions[] = {{-3.04688, -0.306641, -0.36025}};
  350. };
  351.  
  352. class Land_i_Stone_HouseBig_V1_F
  353. {
  354. table = "CivillianLowerClass";
  355. positions[] = {{-0.777344, 2.19922, 1.21893}, {-1.33789, 0.355469, -1.65434}, {1.58594, -0.576172, 1.21893}, {3.7793, 1.48828, -1.64097}};
  356. };
  357.  
  358. class Land_i_Stone_HouseBig_V2_F
  359. {
  360. table = "CivillianLowerClass";
  361. positions[] = {{-0.207031, 2.62305, 1.21893}, {-1.26953, 0.136719, -1.65416}, {2.55078, -0.556641, 1.21893}, {4.26367, 1.48828, -1.63971}};
  362. };
  363.  
  364. class Land_i_Stone_HouseBig_V3_F
  365. {
  366. table = "CivillianLowerClass";
  367. positions[] = {{-0.484375, 2.57617, 1.21893}, {-0.759766, 0.404297, -1.65283}, {2.29102, -1.02539, 1.21893}, {4.02734, 1.1543, -1.64032}};
  368. };
  369.  
  370. class Land_i_Stone_HouseSmall_V1_F
  371. {
  372. table = "CivillianLowerClass";
  373. positions[] = {{-3.47656, 2.25195, -0.627007}, {-6.96094, 3.02539, -0.619827}, {3.27148, 2.02734, -0.611488}, {6.61914, 2.50977, -0.596566}};
  374. };
  375.  
  376. class Land_i_Stone_HouseSmall_V2_F
  377. {
  378. table = "CivillianLowerClass";
  379. positions[] = {{-2.41992, 1.76758, -0.632064}, {-7.00391, 1.83594, -0.633547}, {3.77148, 2.05664, -0.609262}, {7.33008, 2.02539, -0.593399}};
  380. };
  381.  
  382. class Land_i_Stone_HouseSmall_V3_F
  383. {
  384. table = "CivillianLowerClass";
  385. positions[] = {{-2.68945, 2.05664, -0.628867}, {-7.74023, 3.45313, -0.615288}, {3.60938, 1.61328, -0.609982}, {6.83984, 3.07227, -0.595582}};
  386. };
  387.  
  388. class Land_i_Stone_Shed_V1_F
  389. {
  390. table = "CivillianLowerClass";
  391. positions[] = {{-2.63867, 1.96484, -0.100502}, {1.19141, 2.16992, -0.100502}};
  392. };
  393.  
  394. class Land_i_Stone_Shed_V2_F
  395. {
  396. table = "CivillianLowerClass";
  397. positions[] = {{-2.12305, 1.86914, -0.100502}, {1.78125, 1.625, -0.100502}};
  398. };
  399.  
  400. class Land_i_Stone_Shed_V3_F
  401. {
  402. table = "CivillianLowerClass";
  403. positions[] = {{-2.3125, 2.05469, -0.100502}, {1.79297, 1.93359, -0.100502}};
  404. };
  405.  
  406. class Land_u_House_Big_01_V1_F
  407. {
  408. table = "CivillianLowerClass";
  409. positions[] = {{-1.89648, 6.0332, 0.855065}, {-2.35742, 5.4082, -2.56494}, {-2.89648, -3.33203, 0.855065}, {-3.0957, -0.896484, -2.65494}, {1.25, -1.31445, -2.56494}, {2.0293, -0.521484, 0.855065}, {2.36523, 5.47461, -2.56493}, {2.95117, 5.49609, 0.855065}, {2.99023, -5.02734, 0.855065}, {3.58789, -4.98828, -2.56494}};
  410. };
  411.  
  412. class Land_u_House_Big_02_V1_F
  413. {
  414. table = "CivillianLowerClass";
  415. positions[] = {{-2.43164, 2.83008, 0.965823}, {-2.70703, -2.07422, 0.965824}, {-2.88281, 1.88086, -2.54418}, {0.871094, -1.66016, -2.54418}, {2.41602, 3.00977, 0.965824}, {3.66992, -5.79883, -2.10418}, {3.9082, 3.56055, -2.54418}};
  416. };
  417.  
  418. class Land_u_House_Small_01_V1_F
  419. {
  420. table = "CivillianLowerClass";
  421. positions[] = {{-1.18359, 3.63281, -0.904629}, {-1.7793, -2.59961, -0.903945}, {3.25195, 3.44531, -0.904572}};
  422. };
  423.  
  424. class Land_u_House_Small_02_V1_F
  425. {
  426. table = "CivillianLowerClass";
  427. positions[] = {{-0.916016, -2.17969, -0.71971}, {-1.49609, 0.962891, -0.714579}, {3.83203, 1.15234, -0.713537}, {5.80469, -1.7207, -0.710968}};
  428. };
  429.  
  430. ///////////////////////////////////////////////////////////////////////////
  431. // Civillian Upper Class
  432. ///////////////////////////////////////////////////////////////////////////
  433. class Land_Offices_01_V1_F
  434. {
  435. table = "CivillianUpperClass";
  436. positions[] = {{-13.502, -6.54883, 9.84601}, {10.7676, -5.27734, 4.66547}, {-10.7031, 6.85156, -7.05899}, {-3.26953, 5.84961, 9.84601}, {1.09375, -4.51172, -7.05899}, {5.52148, 2.22852, 0.752261}, {5.68164, 4.16602, -7.05899}, {5.94531, -2.68945, -3.15997}, {6.1875, 2.40625, 4.66546}, {9.07422, -4.97656, 9.84601}};
  437. };
  438.  
  439. class Land_i_House_Big_01_V1_F
  440. {
  441. table = "CivillianUpperClass";
  442. positions[] = {{-2.21484, 5.46875, -2.56493}, {-3.24023, -1.5918, -2.65493}, {0.558594, -0.640625, 0.855072}, {1.24023, -1.98828, -2.56493}, {1.66602, -5.2832, 0.855072}, {2.19531, 5.19922, -2.56493}, {2.4375, 5.01172, 0.855076}, {2.87305, -5.01758, -2.56493}};
  443. };
  444.  
  445. class Land_i_House_Big_01_V2_F
  446. {
  447. table = "CivillianUpperClass";
  448. positions[] = {{-2.05078, 5.41016, 0.855071}, {-2.11133, 5.51758, -2.56493}, {-3.19531, -1.45117, -2.65493}, {0.328125, 0.283203, -2.56493}, {0.759766, -1.29688, 0.855071}, {1.27539, -5.21484, 0.855071}, {2.25195, -4.56445, -2.56493}, {3.68359, 5.18359, 0.855071}};
  449. };
  450.  
  451. class Land_i_House_Big_01_V3_F
  452. {
  453. table = "CivillianUpperClass";
  454. positions[] = {{-2.78125, 5.69336, -2.56493}, {-2.7832, 5.31055, 0.855072}, {-2.78906, 0.654297, 0.855072}, {-3.03906, -1.11133, -2.65493}, {0.675781, -1.29883, -2.56493}, {1.61133, -0.865234, 0.855072}, {2.51758, 5.85938, 0.855072}, {2.65625, -4.94531, -2.56493}, {2.99414, -5.15625, 0.855073}, {3.16211, 5.16406, -2.56493}};
  455. };
  456.  
  457. class Land_i_House_Big_02_V1_F
  458. {
  459. table = "CivillianUpperClass";
  460. positions[] = {{-1.69141, -2.51172, 0.784063}, {-2.58789, 3.63672, 0.784063}, {-2.86914, 2.97266, -2.62327}, {1.15234, -1.65625, -2.62327}, {2.55273, 1.625, 0.784063}, {3.08203, 2.11914, -2.62327}, {3.33594, -5.625, -2.28594}};
  461. };
  462.  
  463. class Land_i_House_Big_02_V2_F
  464. {
  465. table = "CivillianUpperClass";
  466. positions[] = {{-2.08789, -2.46484, 0.784063}, {-2.54688, 2.53906, -2.62327}, {-3.01758, 3.12109, 0.784063}, {1.11328, -1.46289, -2.62327}, {2.68945, 2.03711, 0.784063}, {3.02734, 2.27344, -2.62327}, {3.26367, -5.55273, -2.28594}};
  467. };
  468.  
  469. class Land_i_House_Big_02_V3_F
  470. {
  471. table = "CivillianUpperClass";
  472. positions[] = {{-2.50391, -2.10742, -2.62327}, {-3.00781, 3.68164, 0.784063}, {-3.0957, 2.57227, -2.62327}, {-3.31055, -2.88867, 0.784063}, {1.26953, -1.73438, -2.62327}, {2.40234, 2.26953, -2.62327}, {2.89844, 2.11719, 0.784064}, {3.26758, -5.52734, -2.28594}};
  473. };
  474.  
  475. class Land_i_House_Small_01_V1_F
  476. {
  477. table = "CivillianUpperClass";
  478. positions[] = {{-1.2207, 3.05078, -1.0419}, {-2.74414, -0.560547, -1.04199}, {3.06641, -1.90234, -1.0404}, {3.35547, 2.94336, -1.04187}};
  479. };
  480.  
  481. class Land_i_House_Small_01_V2_F
  482. {
  483. table = "CivillianUpperClass";
  484. positions[] = {{-2.53711, -1.80664, -1.0418}, {-3.90625, 3.26367, -1.04239}, {3.31836, -1.31641, -1.04058}, {3.38672, 3.78906, -1.04213}};
  485. };
  486.  
  487. class Land_i_House_Small_01_V3_F
  488. {
  489. table = "CivillianUpperClass";
  490. positions[] = {{-0.738281, 3.17578, -1.04194}, {-2.46094, -2.16992, -1.04174}, {-2.68359, -1.76563, -1.04187}, {-2.76563, 3.31641, -1.04232}, {3.07422, -1.27539, -1.04059}, {3.08398, 3.04883, -1.0419}, {3.41406, 3.10547, -1.04192}, {3.61719, -0.394531, -1.04086}};
  491. };
  492.  
  493. class Land_i_House_Small_02_V1_F
  494. {
  495. table = "CivillianUpperClass";
  496. positions[] = {{-1.08008, -2.11133, -0.709651}, {-1.18945, 0.785156, -0.705689}, {2.64258, -2.09766, -0.704848}, {5.95313, 0.556641, -0.700583}};
  497. };
  498.  
  499. class Land_i_House_Small_02_V2_F
  500. {
  501. table = "CivillianUpperClass";
  502. positions[] = {{-1.29688, 1.06641, -0.704727}, {-1.56836, -1.83789, -0.710279}, {2.85352, -1.52148, -0.704572}, {2.88086, 1.76367, -0.702332}, {5.21289, 0.935547, -0.701534}};
  503. };
  504.  
  505. class Land_i_House_Small_02_V3_F
  506. {
  507. table = "CivillianUpperClass";
  508. positions[] = {{-1.35352, 0.873047, -0.705387}, {-1.5, -2.00781, -0.710184}, {3.49219, -1.16602, -0.703744}, {5.61328, 1.51367, -0.70101}};
  509. };
  510.  
  511. class Land_i_House_Small_03_V1_F
  512. {
  513. table = "CivillianUpperClass";
  514. positions[] = {{-3.89648, -0.134766, -0.371629}, {0.419922, 2.68555, -0.371629}, {3.59961, 2.0918, -0.371629}, {3.70703, -4.19727, -0.371629}};
  515. };
  516.  
  517. ///////////////////////////////////////////////////////////////////////////
  518. // Shops
  519. ///////////////////////////////////////////////////////////////////////////
  520. class Land_i_Shop_01_V1_F
  521. {
  522. table = "Shop";
  523. positions[] = {{-0.863281, 6.10938, -2.76158}, {-1.2168, 0.232422, -2.76158}, {-1.2832, -0.884766, 1.10984}, {-2.28516, 6.1875, 1.10975}};
  524. };
  525.  
  526. class Land_i_Shop_01_V2_F
  527. {
  528. table = "Shop";
  529. positions[] = {{-1.17969, 5.32813, -2.76158}, {-18.127, 16.7285, -2.74088}, {-2.39258, 5.51563, 1.10978}, {-2.53906, 0.253906, -2.76158}, {-2.70703, -1.4707, 1.10992}, {-24.2051, 3.65039, 1.25308}, {1.15625, 1.20313, 1.10906}};
  530. };
  531.  
  532. class Land_i_Shop_01_V3_F
  533. {
  534. table = "Shop";
  535. positions[] = {{-1.5918, 5.35156, -2.76158}, {-2.39258, -0.544922, -2.76158}, {-2.73242, -1.03906, 1.10991}, {-2.98242, 5.80664, 1.10999}, {1.66016, 1.70508, 1.10901}};
  536. };
  537.  
  538. class Land_i_Shop_02_V1_F
  539. {
  540. table = "Shop";
  541. positions[] = {{-0.824219, 1.10742, -2.67036}, {-4.04883, -3.18555, 1.2386}, {-4.43359, -1.98242, -2.69136}, {0.78125, -2.35547, -2.66928}, {2.27734, 1.0957, 1.2386}};
  542. };
  543.  
  544. class Land_i_Shop_02_V2_F
  545. {
  546. table = "Shop";
  547. positions[] = {{-0.171875, -1.43359, -2.66855}, {-2.57422, -4.19336, 1.23859}, {-4.51758, 2.74023, -2.66855}, {1.61523, 0.28125, 1.23859}};
  548. };
  549.  
  550. class Land_i_Shop_02_V3_F
  551. {
  552. table = "Shop";
  553. positions[] = {{-1.01953, 0.71875, -2.66924}, {-2.86719, -3.83594, 1.23859}, {-4.25195, 3.58789, -2.66855}, {1.56641, 0.509766, 1.23859}};
  554. };
  555.  
  556. class Land_u_Shop_01_V1_F
  557. {
  558. table = "Shop";
  559. positions[] = {{-1.14258, 1.23438, -2.88084}, {-2.32422, 3.14648, 0.9905}, {-3.31836, 5.81836, 0.990853}, {0.808594, -0.544922, 0.990474}, {2.58789, 5.81641, -2.88084}};
  560. };
  561.  
  562. class Land_u_Shop_02_V1_F
  563. {
  564. table = "Shop";
  565. positions[] = {{-3.46484, -1.625, 1.23859}, {-3.9082, 3.0957, -2.66855}, {0.751953, -3.26563, -2.66855}, {1.71484, 0.486328, 1.23859}};
  566. };
  567.  
  568. class Land_Kiosk_blueking_F
  569. {
  570. table = "Shop";
  571. positions[] = {{-1.62109, 0.341797, -1.76588}, {1.36328, -0.908203, -1.76588}};
  572. };
  573.  
  574. class Land_Kiosk_gyros_F
  575. {
  576. table = "Shop";
  577. positions[] = {{-1.20898, -1.07813, -1.97606}, {1.26758, -0.128906, -1.97606}};
  578. };
  579.  
  580. class Land_Kiosk_redburger_F
  581. {
  582. table = "Shop";
  583. positions[] = {{-1.07617, -0.335938, -2.87051}, {1.42188, -0.373047, -2.87051}};
  584. };
  585.  
  586. ///////////////////////////////////////////////////////////////////////////
  587. // Industrial
  588. ///////////////////////////////////////////////////////////////////////////
  589. class Land_Unfinished_Building_01_F
  590. {
  591. table = "Industrial";
  592. positions[] = {{-0.158203, 3.50391, 1.19791}, {-2.34375, 4.20898, -2.29709}, {-2.51563, 0.337891, 1.19791}, {-3.25391, 0.0351563, -2.29709}, {2.45508, -0.144531, -2.29709}, {3.10742, -2.34766, 1.19791}};
  593. };
  594.  
  595. class Land_Unfinished_Building_02_F
  596. {
  597. table = "Industrial";
  598. positions[] = {{-0.890625, -3.35742, 0.976167}, {-2.31055, -1.57227, -2.48553}, {-6.36523, 2.20898, 0.976168}, {-6.58398, 3.67383, -2.50139}, {3.58008, 3.13281, -2.49362}, {4.33594, 3.00391, 0.976168}};
  599. };
  600.  
  601. class Land_WIP_F
  602. {
  603. table = "Industrial";
  604. positions[] = {{-10.0645, -4.58398, 8.3499}, {-12.5254, 10.1191, 8.348}, {-13.3496, 9.04883, 12.3173}, {-14.3477, -2.64844, 0.392311}, {-15.1621, 9.90039, 0.407514}, {-15.9004, -9.26367, 12.3304}, {-16.0352, -2.52734, 4.32572}, {-16.0996, 4.24023, 0.444829}, {-16.4004, 8.88672, 4.32572}, {-16.7813, -8.80078, 0.347982}, {-17.0195, -8.72852, 4.32572}, {-3.60156, -14.6484, 4.32041}, {-4.18359, -1.03516, 0.386505}, {-6.93359, -0.988281, 12.1457}, {-7.66016, 9.24414, 0.417827}, {-7.77344, -10.4785, 0.359629}, {-8.33008, -14.7305, 12.3244}, {-8.73242, 9.51953, 4.32572}, {-8.88867, -13.3887, 0.355543}, {11.9922, -7.99219, 12.2546}, {12.9023, 9.91797, 0.448912}, {18.0801, -9.25781, 4.32428}, {19.5586, -7.8457, 8.33803}, {2.11719, 9.48438, 0.337147}, {20.6309, -9.31445, 0.329187}, {22.334, -2.5332, 4.32572}, {24.0859, -0.179688, 8.29181}, {3.30859, 6.66602, 8.36808}, {3.99219, -8.87891, 8.34295}, {4.74414, -8.89063, 4.32432}, {6.0332, -8.34961, 0.384681}, {7.08984, 10.4727, 4.32572}, {8.53906, 8.4082, 0.415831}, {9.10742, -1.40625, 0.431863}, {9.64844, 6.28906, 12.3112}};
  605. };
  606.  
  607. class Land_dp_smallTank_F
  608. {
  609. table = "Industrial";
  610. positions[] = {{-0.0898438, -1.58203, 5.32797}};
  611. };
  612.  
  613. class Land_dp_bigTank_F
  614. {
  615. table = "Industrial";
  616. positions[] = {{-1.54102, -1.93359, 3.59794}, {-5.79883, -0.496094, 3.59794}, {5.9707, -1.84375, 3.59794}};
  617. };
  618.  
  619. class Land_u_Shed_Ind_F
  620. {
  621. table = "Industrial";
  622. positions[] = {{-2.41211, 4.91602, -1.40862}, {-6.54688, -0.166016, -1.40862}, {10.6914, 2.14648, -1.40862}};
  623. };
  624.  
  625. class Land_Metal_Shed_F
  626. {
  627. table = "Industrial";
  628. positions[] = {{-3.34375, -1.80273, -1.343}, {3.52539, -2.15625, -1.343}};
  629. };
  630.  
  631. class Land_i_Shed_Ind_F
  632. {
  633. table = "Industrial";
  634. positions[] = {{-2.66797, -0.576172, -1.40977}, {-2.85547, 6.49023, -1.40977}, {-5.78906, 0.158203, -1.40977}, {14.1348, 6.31445, -1.40977}, {5.70508, 0.423828, -1.40977}, {6.49609, 6.5625, -1.40977}};
  635. };
  636.  
  637. class Land_Research_house_V1_F
  638. {
  639. table = "Industrial";
  640. positions[] = {{-1.28516, 2.89258, 0.0302877}, {1.12305, 2.04492, -0.0384929}};
  641. };
  642.  
  643. class Land_Research_HQ_F
  644. {
  645. table = "Industrial";
  646. positions[] = {{-1.03125, 2.60547, -3.26622}, {-2.25195, -2.75586, -0.741376}, {-2.28711, -3.94141, -3.26622}, {4.69336, 4.01172, -3.26622}, {6.06445, 3.50391, -0.741376}};
  647. };
  648.  
  649. ///////////////////////////////////////////////////////////////////////////
  650. // Factories
  651. ///////////////////////////////////////////////////////////////////////////
  652. class Land_Factory_Main_F
  653. {
  654. table = "Factories";
  655. positions[] = {{-8.51953,13.5698,-6.45422}, {-8.75,10.9609,-6.41479}};
  656. };
  657.  
  658. class Land_dp_smallFactory_F
  659. {
  660. table = "Factories";
  661. positions[] = {{-1.97266, 3.14844, 2.62608}, {-6.49609, -4.92773, 2.82442}, {5.32422, -3.69531, 2.95848}, {9.49805, -4.71094, 1.21193}, {9.95898, 1.41211, 1.21193}};
  662. };
  663.  
  664. class Land_dp_mainFactory_F
  665. {
  666. table = "Factories";
  667. positions[] = {{-12.8477, -4.8457, -4.45162}, {-15.4961, 6.70703, -4.45162}, {-6.36133, -2.13477, 1.18268}, {-6.91211, -15.3555, 1.18268}, {0.736328, 8.16406, 1.18268}, {1.25391, -10.5801, 1.18268}, {12.8926, 7.0332, -5.51301}, {13.0332, -3.95117, -4.22302}, {13.1719, 4.60742, -4.22302}, {13.2676, 0.710938, -4.22302}, {14.793, -16.8613, -4.08302}, {18.1406, -9.24023, -4.08302}, {19.0566, 5.17969, -7.61482}, {19.0996, -5.68555, -5.51301}, {19.3535, 2.14844, -5.51301}, {3.43555, -2.94141, 1.18268}, {8.82617, -7.33008, -0.280016}, {8.92773, -13.9453, -0.280016}, {9.13281, 8.58203, -0.280016}};
  668. };
  669.  
  670. ///////////////////////////////////////////////////////////////////////////
  671. // Ghost Hotel
  672. ///////////////////////////////////////////////////////////////////////////
  673. class Land_GH_Gazebo_F
  674. {
  675. table = "Radiation";
  676. positions[] = {{-5.93945, 2.15894, -1.77238},{-5.90332, -0.724121, -1.77238},{5.104, 2.22534, -1.77238},{5.26807, -0.790771, -1.77238}};
  677. };
  678.  
  679. class Land_GH_House_1_F
  680. {
  681. table = "Radiation";
  682. positions[] = {{-3.49902, -6.07056, 1.39883},{-3.23633, 0.0153809, 1.39883},{3.36963, 0.337891, 1.39883},{3.39404, -5.21753, 1.39883},{-3.65332, -3.97876, -2.10117},{-3.35889, 0.632324, -2.10117},{3.23438, -5.31934, -2.10117}};
  683. };
  684.  
  685. class Land_GH_House_2_F
  686. {
  687. table = "Radiation";
  688. positions[] = {{3.26563, -5.11426, -0.336174},{-3.23242, -5.51929, -0.336174},{-3.59033, 0.983643, -0.336174},{3.69287, 0.738281, -0.336174}};
  689. };
  690.  
  691. class Land_GH_House_ruins_F
  692. {
  693. table = "Radiation";
  694. positions[] = {{3.16553, -1.15942, 5.97215},{-3.26416, -0.868408, 5.97215}};
  695. };
  696.  
  697. class Land_GH_MainBuilding_entry_F
  698. {
  699. table = "Radiation";
  700. positions[] = {{-3.65039, -17.2097, -0.152101},{-0.499023, -14.7449, -0.152101},{4.09717, -17.7261, -0.152101}};
  701. };
  702.  
  703. class Land_GH_MainBuilding_left_F
  704. {
  705. table = "Radiation";
  706. positions[] = {{-6.44043, 2.63159, -1.05388},{-6.40381, -2.12085, -1.05388},{6.74365, -5.78149, -1.05388},{-0.207031, -7.60864, -1.05388},{2.12793, -10.2429, -1.05388},{5.5249, -15.4812, -1.05388},{-0.98291, -18.1379, -1.05387},{-2.06543, 5.00342, -1.05388},{4.94092, 11.8662, -1.05389},{-1.63135, -1.71094, -1.05388},{9.74365, 1.61304, -1.05389},{4.88525, 6.50024, -1.05389},{14.9434, 3.5686, -1.05389},{13.2563, 8.73413, -1.0539},{17.2432, -4.43799, 3.39144},{13.584, 4.49951, 3.39144},{15.5112, -1.00366, 3.39144},{9.44727, 2.41968, 3.39144},{2.64893, 5.43433, 3.39144},{-0.672363, -6.15454, 3.39144},{1.25537, 0.418213, 3.39144},{-5.28076, -6.47534, 3.39144},{-6.63867, -1.47412, 3.39144},{-7.39063, 4.22949, 3.39144}};
  707. };
  708.  
  709. class Land_GH_MainBuilding_middle_F
  710. {
  711. table = "Radiation";
  712. positions[] = {{-0.408203, 2.26978, 0.538373},{-12.1367, 1.58447, 0.538378},{-2.14014, -7.85303, 1.25473},{-14.9414, -4.22363, 0.538417},{-16.2109, -8.05908, 0.538444},{-4.00293, -17.3718, 0.538503},{11.3765, -5.7373, 0.538428},{15.5952, -9.00879, 0.53845},{14.1016, -3.40771, 0.538412},{0.957031, 11.2915, 2.76766},{9.70215, 6.27051, 4.98464},{13.7354, -1.34595, 4.98465},{2.89844, -14.8083, 4.98466},{-9.37158, -11.5811, 4.98465},{-14.1709, 1.90674, 4.98465},{-10.71, 6.09961, 4.98464}};
  713. };
  714.  
  715. class Land_GH_MainBuilding_right_F
  716. {
  717. table = "Radiation";
  718. positions[] = {{11.9268, -18.7073, 3.82813},{2.43213, -14.093, 3.81848},{6.94629, 2.26904, -1.05388},{7.02637, -1.66724, -1.05387},{-1.81201, -9.91284, -1.05388},{-0.240723, -7.5647, -1.05388},{-5.69873, -6.15967, -1.05388},{3.89648, -11.2732, -1.05387},{1.15527, 3.63159, -1.05388},{2.70215, 9.94263, -1.05389},{-10.3442, 0.716309, -1.05389},{-4.8833, 5.8147, -1.05389},{-7.16406, 1.28369, -1.05389},{-14.3013, 3.41919, -1.05389},{-12.9961, 8.2854, -1.0539},{-11.1431, 13.0371, -1.0539},{-15.7705, -0.219971, -1.05389},{-16.3779, -4.63135, 3.39144},{-14.043, 3.26343, 3.39144},{-6.1499, 6.17603, 3.39144},{-7.31689, 1.0271, 3.39144},{-0.897461, -4.72583, 3.39144},{-1.25635, 1.18457, 3.39144},{1.7832, -4.39404, 3.39144},{7.21973, 3.79077, 3.39144},{5.69287, -1.56128, 3.39144},{5.80078, -6.55884, 3.39144}};
  719. };
  720. class land_1
  721. {
  722. table = "Industrial";
  723. positions[] = {{14.0977, 9.27832, -5.30631},{-6.3584, 8.4375, -5.30632},{-14.2788, 8.0957, -5.30632}};
  724. };
  725.  
  726. class land_2
  727. {
  728. table = "Industrial";
  729. positions[] = {{-8.04541, 6.65527, 4.21223},{-10.0181, -6.0498, 4.38565},{-2.16016, -6.75195, 3.90532},{11.9395, -2.30762, 4.40326}};
  730. };
  731.  
  732. class Land_A_Crane_02a
  733. {
  734. table = "Industrial";
  735. positions[] = {{3.62939, -0.0185547, 1.38779},{-0.175293, 1.78906, 3.10723},{-2.67627, -0.696289, 3.10723}};
  736. };
  737.  
  738. class Land_A_Crane_02b
  739. {
  740. table = "Industrial";
  741. positions[] = {{-8.95557, 1.5498, -7.84474},{-8.51416, -1.5332, -7.84474},{-7.96924, -0.438477, -4.98164}};
  742. };
  743.  
  744. class Land_A_CraneCon
  745. {
  746. table = "Industrial";
  747. positions[] = {{-9.64795, 1.52246, 5.78629},{-7.19531, -0.521484, 5.78629},{-9.91992, -1.56641, 5.78629}};
  748. };
  749.  
  750. class Land_A_Hospital
  751. {
  752. table = "Medical";
  753. positions[] = {{-7.01465, 2.24414, 3.29184},{-12.2856, -2.19336, 3.29184},{0.768066, -4.32227, 3.29184},{9.37646, -2.19238, 3.29184},{16.7549, 4.42871, 6.15884},{21.1167, 1.20996, 6.15884}};
  754. };
  755.  
  756. class Land_A_Office01
  757. {
  758. table = "Shop";
  759. positions[] = {{-15.188, 1.48926, -4.528},{-7.47803, 5.30859, -4.528},{4.396, 0.104492, -4.528},{-0.0356445, 6.66504, -4.528},{1.77539, 3.48145, -4.528},{14.061, -3.15625, -4.528},{0.368164, 6.94727, -2.028},{2.23096, 3.60547, -2.028},{7.13672, -3.03906, -2.028},{9.97021, -1.15332, -2.028},{15.1084, 3.43457, -2.028},{12.9458, 6.34961, -2.028},{-2.69482, 3.47754, 0.472004},{-11.3599, 2.30469, 0.472008},{13.3257, -1.92188, 0.472},{9.39404, 5.50488, 0.472},{4.56396, -3.01855, 6.2049},{-2.58252, -0.799805, 6.20491},{0.802734, 2.69922, 6.20491}};
  760. };
  761.  
  762. class Land_A_Office02
  763. {
  764. table = "Shop";
  765. positions[] = {{-0.581543, -5.67871, -8.15104},{5.14258, -5.7793, -8.15111},{2.02979, -4.74805, -8.15053},{-21.2427, 2.1748, 5.38394},{-11.4209, 0.0673828, 5.38394},{-1.84033, 2.02246, 5.38394},{9.21729, 3.43066, 5.38395},{18.8926, 6.28613, 5.38394},{20.4136, -1.30469, 5.38394},{6.00049, -2.12695, 5.38394},{-17.3633, 1.19434, 8.71684},{-19.123, 3.86719, 8.71684}};
  766. };
  767.  
  768. class land_AII_last_floor
  769. {
  770. table = "Military";
  771. positions[] = {{-1.42236, 5.96289, 4.6129},{-4.45508, 3.43555, 5.46183},{-9.89795, 16.1748, 4.61091},{-14.2314, 22.249, 4.61073},{-23.418, -7.18457, 5.45109},{-10.5127, -16.2051, 5.44856},{4.02783, -21.3271, 5.51657},{5.60254, -11.5703, 6.08711},{-10.6987, 10.3369, 5.43586}};
  772. };
  773.  
  774. class land_AII_middle_floor
  775. {
  776. table = "Military";
  777. positions[] = {{-13.688, 8.02148, 0.513981},{-10.0068, 5.15332, 0.51099},{-13.0356, -0.71875, 0.520344},{-8.25098, 2.8584, 0.513554},{-4.39795, 2.17383, 0.513092},{-6.1333, 8.2168, 0.513794},{-7.30713, 5.61621, 0.520306}};
  778. };
  779.  
  780. class land_AII_upper_part
  781. {
  782. table = "Military";
  783. positions[] = {{-0.750488, -3.58496, -2.31057},{-1.50635, -1.92773, -2.32196},{-3.05322, 2.05176, -2.32196},{0.378418, 3.15332, -2.58292}};
  784. };
  785.  
  786. class land_b_small1
  787. {
  788. table = "Industrial";
  789. positions[] = {{-2.86816, -0.407227, -1.50034},{-0.739258, -4.81543, -1.50034},{-0.48291, -1.04102, -1.50034}};
  790. };
  791.  
  792. class Land_Barn_Metal
  793. {
  794. table = "Industrial";
  795. positions[] = {{-7.60107, -2.67871, -5.46857},{-8.69824, -24.8643, -5.26},{0.746582, -24.2676, -5.46857},{10.2876, -24.8691, -5.43213},{9.39404, -5.85254, -5.46857},{10.248, 22.4385, -5.46857},{-8.69727, -24.8633, -5.46854},{-9.24121, 16.9082, 5.56142},{-9.55469, -3.21875, 5.56142},{10.6216, -3.22656, 5.56142},{0.579102, -25.2393, 5.56143},{10.8906, -26.7842, 5.56142},{-1.28906, 22.6455, 5.58787},{10.5737, 14.3779, 5.58787}};
  796. };
  797.  
  798. class Land_Barn_W_01
  799. {
  800. table = "CivillianLowerClass";
  801. positions[] = {{0.299316, 22.208, -3.1789},{1.85938, 18.2881, -2.66324},{-5.40625, 8.97754, -2.66161},{-6.14551, -9.7207, -2.65836},{5.95947, 9.42578, -2.66169},{5.79053, -9.96973, -2.65831},{-1.08643, -18.0977, -2.65689},{-6.2373, -14.7119, -2.65749},{6.45264, 14.4609, -2.66257},{8.18018, 14.6631, -3.03774},{-8.12012, -14.8809, -2.98197}};
  802. };
  803.  
  804. class Land_bouda2_vnitrek
  805. {
  806. table = "CivillianLowerClass";
  807. positions[] = {{-0.369141, -2.53906, -0.72002},{-3.2168, 1.58691, -0.72002},{0.382324, 0.46875, -0.72002}};
  808. };
  809.  
  810. class land_bud2
  811. {
  812. table = "CivillianLowerClass";
  813. positions[] = {{-2.3623, -1.00586, -1.79023},{1.80273, -0.383789, -1.78249}};
  814. };
  815.  
  816. class Land_budova4_winter
  817. {
  818. table = "Military";
  819. positions[] = {{-8.83984, 2.3584, -1.09823},{5.0708, -1.40625, -1.09823},{6.57959, -0.0283203, -0.934856},{1.56201, -2.17383, -1.09823},{2.6377, -0.046875, -1.09823},{-1.71045, -1.25293, -1.09823},{-0.383789, -0.00976563, -1.09823},{-4.86865, -1.00879, -1.09823},{-9.05322, -2.32129, -1.09823},{-8.2124, -0.428711, -1.09823}};
  820. };
  821.  
  822. class land_bunka
  823. {
  824. table = "Shop";
  825. positions[] = {{2.44971, 1.91992, -1.51244},{-1.84717, 2.53125, -1.51244},{0.172363, 2.63086, -1.51244}};
  826. };
  827.  
  828. class land_cast1
  829. {
  830. table = "Factories";
  831. positions[] = {{-4.93311, -10.6875, -4.38392},{-3.57178, 5.57813, -4.38391},{1.57617, 6.61328, -4.38392},{-3.64893, 10.7246, -4.38392},{-0.235352, 16.6797, -4.38392},{-4.97949, 17.1348, -4.38392},{1.07129, -0.219727, -1.06585}};
  832. };
  833.  
  834. class land_cast2
  835. {
  836. table = "Factories";
  837. positions[] = {{1.37793, 13.9932, -4.38393},{-3.45752, 9.15234, -4.38393},{-1.4082, 1.34863, -4.38393},{-4.85156, -8.19824, -4.38392},{1.20654, -10.6094, -4.35677}};
  838. };
  839.  
  840. class land_chat_tr
  841. {
  842. table = "CivillianLowerClass";
  843. positions[] = {{-2.32764, -2.27051, -2.43594},{-2.16992, 2.02734, -2.44564},{1.8208, 1.6084, -2.43839},{1.31689, -2.08301, -2.42417}};
  844. };
  845.  
  846. class land_dlouhy1
  847. {
  848. table = "CivillianUpperClass";
  849. positions[] = {{5.70068, -2.35059, -9.5115},{5.49121, 3.41992, -9.51136},{0.822266, -2.20508, -9.50821},{-1.96729, -5.15625, -9.61368},{-6.39014, -0.860352, -9.50334},{-13.3608, -5.13965, -9.63223},{-15.8569, 0.00292969, -9.49695},{-15.5884, 2.50098, -9.49713},{-3.16211, 2.76758, -9.50551},{-16.2661, 5.7041, -9.49667},{-13.0146, 11.2822, -9.64676},{-11.2837, 9.32715, -9.50003},{-6.62061, 8.62012, -9.50318},{-2.92334, 11.3408, -9.6426},{-6.5415, 6.89844, -9.50323},{-1.61914, 8.95215, -9.50656},{-3.27881, 5.42578, -9.50544},{7.02686, 9.4043, -4.98993},{3.95801, 9.46191, -4.98993},{4.04297, -1.94531, -4.98993},{4.23047, -3.57031, -4.98993},{7.09863, -3.58887, -4.98993},{-2.54053, -2.91406, -4.9898},{-1.96533, -5.15332, -4.99091},{-2.11963, -0.246094, -4.98847},{-9.86523, -1.53223, -4.98911},{-13.3618, -5.04688, -4.99086},{-16.5234, -3.20801, -4.98994},{-15.563, 0.476563, -4.98811},{-15.835, 2.96875, -4.98687},{-8.98828, 2.89844, -4.9869},{-16.7842, 8.56934, -4.98408},{-21.0645, 9.25879, -5.083},{-21.124, -2.26172, -9.49339},{-13.2056, 11.2344, -4.98275},{-11.3857, 9.54883, -4.98359},{-11.3604, 6.49414, -4.98511},{-6.69189, 6.5332, -4.98509},{-3.00049, 11.5479, -4.98259},{-1.6626, 9.27246, -4.98373},{-3.08301, 4.99023, -4.98586},{-3.1626, 2.7666, -4.98697},{11.1074, -1.90234, -4.98936},{13.8535, 2.19141, -4.98732},{16.3271, -2.69238, -4.98975},{24.4204, -2.52832, -4.98967},{26.0439, -5.43164, -4.99111},{28.8101, -0.598633, -4.9887},{18.2666, -0.443359, -4.98863},{11.2856, 2.38184, -4.98722},{11.2876, 6.40527, -4.98521},{11.2593, 9.49609, -4.98367},{14.6904, 9.21094, -4.98382},{15.7583, 11.3447, -4.98275},{19.2959, 9.25195, -4.9838},{19.1582, 6.39746, -4.98522},{19.207, 2.26758, -4.98728},{14.8828, 6.12207, -4.98535},{26.2935, 2.10645, -4.98736},{22.2964, 1.99121, -4.98742},{22.1465, 5.72754, -4.98555},{22.1973, 9.5625, -4.98368},{26.4482, 9.35254, -4.98378},{26.3408, 11.5605, -4.98265},{29.5107, 9.34082, -4.98375}};
  850. };
  851.  
  852. class land_dlouhy2
  853. {
  854. table = "CivillianLowerClass";
  855. positions[] = {{-0.71875, 5.58789, -9.31654},{1.06543, 0.354492, -9.32137},{-0.845215, -4.54883, -9.31622}};
  856. };
  857.  
  858. class land_domek_podhradi_1
  859. {
  860. table = "CivillianLowerClass";
  861. positions[] = {{-5.3335, 3.54102, -2.75047},{-5.79199, -3.52637, -2.75047},{3.40527, -3.37891, -2.75047},{0.533203, -0.389648, -2.73914},{4.92871, 2.75391, -2.73911},{0.484375, 3.87695, -2.73909}};
  862. };
  863.  
  864. class land_dr_1
  865. {
  866. table = "CivillianLowerClass";
  867. positions[] = {{0.147461, -0.493164, -1.07508},{-0.343262, 1.92383, -1.08438},{-2.8457, 1.74316, -1.08788},{-2.74463, -0.714844, -1.08217}};
  868. };
  869.  
  870. class land_dr_2
  871. {
  872. table = "CivillianLowerClass";
  873. positions[] = {{-2.56934, 1.46094, -0.997974},{-0.309082, 1.42676, -0.994301},{4.38867, 1.53711, -0.98571},{3.71338, -1.39453, -0.973618},{-0.55957, -2.23242, -0.978878}};
  874. };
  875.  
  876. class Land_dulni_bs
  877. {
  878. table = "CivillianLowerClass";
  879. positions[] = {{1.97559, 2.6582, -1.75205},{2.45703, -1.08691, -1.75204},{0.107422, -2.83008, -1.75204}};
  880. };
  881.  
  882. class Land_dum_ras
  883. {
  884. table = "CivillianLowerClass";
  885. positions[] = {{2.5542, 3.49805, -2.66958},{-0.300781, 0.151367, -2.66957},{-0.5625, -2.03125, -2.66957},{-0.710938, -2.58398, 0.272606},{1.75391, 3.47266, 0.272602},{-0.166504, 1.93457, 0.272606}};
  886. };
  887.  
  888. class Land_dum_zboreny
  889. {
  890. table = "CivillianLowerClass";
  891. positions[] = {{-2.14941, -4.11914, -2.37675},{1.11865, -0.722656, -2.37675},{6.43115, -3.39746, -2.37675},{-5.66455, 4.21875, 1.40812},{-2.62988, -3.42188, 1.40902},{1.98584, -0.769531, 1.39545},{-5.13135, -3.81738, 1.41562}};
  892. };
  893.  
  894. class Land_dum_zboreny_total
  895. {
  896. table = "CivillianLowerClass";
  897. positions[] = {{-4.48975, -2.46582, -2.23949},{-4.82227, 2.27539, -2.31548},{4.70947, 2.34668, -2.33912}};
  898. };
  899.  
  900. class land_f_b1
  901. {
  902. table = "VehicleService";
  903. positions[] = {{-4.71436, -0.746094, -2.21533},{-4.91309, -5.07813, -2.21533},{-2.38477, -3.29785, -2.21533}};
  904. };
  905.  
  906. class land_f_b2
  907. {
  908. table = "VehicleService";
  909. positions[] = {{-6.93359, 0.602539, -4.96382},{-4.69922, -2.65625, -4.96382},{-1.76318, 3.53906, -4.97872},{0.286133, -0.306641, -4.21184},{2.08838, -3.16602, -4.21183}};
  910. };
  911.  
  912. class Land_Fuel_tank_stairs
  913. {
  914. table = "Industrial";
  915. positions[] = {{2.56934, -0.169922, 0.806641}};
  916. };
  917.  
  918. class land_fuelstation_w
  919. {
  920. table = "VehicleService";
  921. positions[] = {{-0.119141, 1.2666, -2.28589},{4.01611, -3.81641, -2.25437}};
  922. };
  923.  
  924. class land_garaze
  925. {
  926. table = "VehicleService";
  927. positions[] = {{-3.1582, -3.11328, -1.56419},{2.4375, -3.86035, -2.11892},{0.065918, -6.53613, -1.67742},{5.46143, -6.25977, -2.119},{4.94287, 0.117188, -2.11902},{3.23438, 5.73242, -2.119},{0.188477, 3.70508, -1.88765}};
  928. };
  929.  
  930. class land_hala1
  931. {
  932. table = "Industrial";
  933. positions[] = {{-0.166504, -5.2832, -4.00997},{-0.201172, -0.611328, -4.00996},{0.69873, 4.97949, -4.00997},{5.45996, -3.13867, -3.98352},{-5.16455, 1.19238, -3.98352}};
  934. };
  935.  
  936. class land_hlaska
  937. {
  938. table = "Military";
  939. positions[] = {{-0.668945, 0.740234, 3.77092}};
  940. };
  941.  
  942. class Land_Hlidac_budka
  943. {
  944. table = "Military";
  945. positions[] = {{2.3418, 0.675781, -0.783619},{-1.77197, 1.92773, -0.783619}};
  946. };
  947.  
  948. class land_hotel_p1
  949. {
  950. table = "Shop";
  951. positions[] = {{-11.0967, -3.02246, -4.65403},{-4.54248, -0.703125, -4.65404},{-10.0791, 3.53125, -4.65403},{-1.21143, -1.64648, -4.65403},{13.8491, 8.28711, -1.13431},{13.6074, 0.416016, -1.12066},{13.8945, -7.89648, -1.13431}};
  952. };
  953.  
  954. class land_hotel_p2
  955. {
  956. table = "Shop";
  957. positions[] = {{7.14795, -1.11133, -7.29951},{4.04053, 2.56152, -7.29951},{-0.273926, -0.673828, -7.29951},{-2.74609, 2.04883, -7.29951},{-6.66553, -10.8359, -0.670689},{-3.03906, -25.0195, 1.31509},{-8.25732, 14.0684, -0.188686},{-3.71631, 23.1865, 1.03674},{1.09277, -19.2598, 6.06893},{6.76172, -14.2334, 6.06892},{4.73926, -6.79785, 6.06892},{8.39941, 6.44238, 6.06893},{0.0703125, 6.85352, 6.06892},{-2.85303, 18.458, 6.06893},{6.24023, 17.0322, 6.06893},{1.46582, -0.719727, 6.06893},{4.34424, -2.07324, 6.06893}};
  958. };
  959.  
  960. class Land_HouseV2_01B
  961. {
  962. table = "CivillianUpperClass";
  963. positions[] = {{-4.14014, -2.57031, -5.18788}};
  964. };
  965.  
  966. class Land_HouseV2_04_interier
  967. {
  968. table = "CivillianLowerClass";
  969. positions[] = {{0.289551, 1.33691, -2.89027},{7.24072, -1.63477, -5.74182},{7.44287, 5.53125, -5.73914},{2.66113, 6.87988, -5.73851},{3.3125, 3.62793, -5.73954},{-1.89795, 2.81641, -5.7398},{-5.06152, 6.37695, -5.73866}};
  970. };
  971.  
  972. class Land_HouseV2_05
  973. {
  974. table = "CivillianLowerClass";
  975. positions[] = {{5.28125, 6.9873, -2.65818},{-3.33643, -0.25, -2.7924}};
  976. };
  977.  
  978. class Land_HouseV_1I1
  979. {
  980. table = "CivillianLowerClass";
  981. positions[] = {{-0.629883, -1.9248, -2.82415}};
  982. };
  983.  
  984. class Land_HouseV_1I4
  985. {
  986. table = "CivillianLowerClass";
  987. positions[] = {{-0.486816, 4.16699, -2.7365},{-2.24951, -0.986328, -2.76074},{-3.91016, -4.00195, -2.76509},{0.0488281, -4.36719, -2.76856}};
  988. };
  989.  
  990. class Land_houseV_2T2
  991. {
  992. table = "CivillianLowerClass";
  993. positions[] = {{-3.9585, 0.647461, -4.0352}};
  994. };
  995.  
  996. class Land_HouseV_3I1
  997. {
  998. table = "CivillianLowerClass";
  999. positions[] = {{5.29248, -1.86719, -2.02602}};
  1000. };
  1001.  
  1002. class Land_HouseV_3I2
  1003. {
  1004. table = "CivillianLowerClass";
  1005. positions[] = {{4.07422, 2.50098, -2.02417}};
  1006. };
  1007.  
  1008. class Land_HouseV_3I3
  1009. {
  1010. table = "CivillianLowerClass";
  1011. positions[] = {{0.898926, 2.67871, -1.68621},{4.34033, 2.20215, -1.47564}};
  1012. };
  1013.  
  1014. class Land_HouseV_3I4
  1015. {
  1016. table = "CivillianLowerClass";
  1017. positions[] = {{5.5332, 2.64258, -2.62949}};
  1018. };
  1019.  
  1020. class Land_hut06
  1021. {
  1022. table = "CivillianLowerClass";
  1023. positions[] = {{0.513672, 1.83301, -1.55149},{-0.552246, -0.0419922, -1.54668}};
  1024. };
  1025.  
  1026. class Land_hut_old01
  1027. {
  1028. table = "CivillianLowerClass";
  1029. positions[] = {{-2.82275, 2.26172, -3.0186},{2.39307, -7.42383, -2.96946},{-4.6665, -1.7959, -3.01507},{1.85352, 4.6543, -3.01839},{-6.62744, 6.87695, -3.02645},{-7.50293, -7.14453, -3.01511},{-3.08691, -2.10938, -3.01197}};
  1030. };
  1031.  
  1032. class Land_Ind_Expedice_1
  1033. {
  1034. table = "Factories";
  1035. positions[] = {{-1.82666, -8.5293, -3.48673},{2.97021, -14.4375, -3.48673},{6.88428, -14.9609, -5.75725},{9.41943, -12.6875, -5.75726},{13.5112, -14.624, -5.75725},{12.5645, -20.2344, -5.75725},{-2.28564, -19.9434, -3.48673},{-11.8623, -18.0654, -3.48673},{-9.41211, -7.62305, -3.48672},{-12.9346, -2.08105, -3.48673},{-0.103516, 13.0859, -3.48673},{3.45459, 18.1846, -3.48673},{-0.59375, 16.1543, 9.71017},{-0.312012, 10.4131, 9.71017},{-1.69238, 4.23633, 9.71017},{2.10059, 7.05859, -5.6839},{-1.58301, 13.1543, -5.6839}};
  1036. };
  1037.  
  1038. class Land_Ind_IlluminantTower
  1039. {
  1040. table = "Military";
  1041. positions[] = {{1.17822, -0.277344, 10.3513},{-0.855957, -0.0869141, 10.3513}};
  1042. };
  1043.  
  1044. class Land_Ind_MalyKomin
  1045. {
  1046. table = "Industrial";
  1047. positions[] = {{-0.993652, -0.308594, -7.69932},{2.1958, -0.422852, -7.69932}};
  1048. };
  1049.  
  1050. class Land_Ind_Pec_03a
  1051. {
  1052. table = "Industrial";
  1053. positions[] = {{11.75, 14.8037, 5.76025},{8.36865, 4.24121, 5.76025},{11.6655, -8.36719, 5.76025},{6.96191, -15.7451, 5.76025},{-1.96777, -22.3271, 5.76025},{-4.75537, -5.51563, 5.76025},{-1.86182, 2.5752, 5.76025},{-4.34082, 13.0742, 5.76025},{3.19287, 20.251, 4.02583},{-1.06396, 24.501, 4.02583}};
  1054. };
  1055.  
  1056. class Land_Ind_Pec_03b
  1057. {
  1058. table = "Industrial";
  1059. positions[] = {{2.96289, 25.8848, 4.02583},{-1.07227, 21.6309, 4.02583},{-4.0791, 14.9619, 5.76025},{-0.356934, 4.58594, 5.76025},{-4.32617, -9.64941, 5.76025},{-0.961914, -16.7637, 5.76025},{3.42822, -24.7012, 5.76025},{10.2559, -19.7666, 5.76025},{7.74023, -10.6123, 5.76025},{10.7046, -1.34668, 5.76025},{10.647, 11.499, 5.76025}};
  1060. };
  1061.  
  1062. class Land_Ind_Quarry
  1063. {
  1064. table = "Industrial";
  1065. positions[] = {{-6.91357, 15.0264, -7.47989},{-7.28711, 7.63184, -7.47989},{-6.74414, -1.58301, -7.47989},{-3.35791, -10.8428, -7.47989},{5.45654, 4.74609, -7.47989},{8.17725, 9.01172, -7.47989},{6.17969, 11.9297, -7.47989},{0.290039, 17.2236, 5.29451},{-4.20117, 16.5439, 5.29451},{-4.28516, 8.84277, 5.29451},{-4.30713, -6.3457, 5.29452},{-4.07617, 0.918945, 5.29451}};
  1066. };
  1067.  
  1068. class Land_Ind_SawMill
  1069. {
  1070. table = "Industrial";
  1071. positions[] = {{-4.646, 10.0225, -5.80637},{-4.36963, -2.53516, -5.7921},{3.31152, -11.4541, -5.72437},{10.5, -4.90137, -5.72056},{10.5283, -1.49023, -5.74226},{10.7983, 5.6123, -5.78193}};
  1072. };
  1073.  
  1074. class Land_Ind_Stack_Big
  1075. {
  1076. table = "Industrial";
  1077. positions[] = {{-2.78027, -1.78809, -23.2495},{0.44873, 5.12207, -6.00286},{-3.02539, 5.07227, -6.00286},{-3.05664, 2.21484, -6.00286},{3.35107, -4.76074, -28.4986}};
  1078. };
  1079.  
  1080. class Land_Ind_Workshop01_01
  1081. {
  1082. table = "Industrial";
  1083. positions[] = {{-0.591309, 0.150391, -1.29873},{1.91357, -1.125, -1.29229},{0.628906, -3.35254, -1.29331}};
  1084. };
  1085.  
  1086. class Land_Ind_Workshop01_02
  1087. {
  1088. table = "Industrial";
  1089. positions[] = {{-1.58057, -0.878906, -1.4297},{1.55322, -1.37012, -1.43058},{-0.345215, 1.08691, -1.42694}};
  1090. };
  1091.  
  1092. class Land_Ind_Workshop01_04
  1093. {
  1094. table = "Industrial";
  1095. positions[] = {{-1.4458, 4.62891, -1.53094},{0.562012, 4.6748, -1.52906},{-0.76416, 2.46484, -1.53055}};
  1096. };
  1097.  
  1098. class land_jzd_4silka
  1099. {
  1100. table = "Industrial";
  1101. positions[] = {{-3.3916, 0.258789, -1.17006}};
  1102. };
  1103.  
  1104. class land_jzd_bezstrechy
  1105. {
  1106. table = "CivillianLowerClass";
  1107. positions[] = {{7.93115, 2.51367, -5.22504},{6.21924, -3.71387, -5.22504},{-0.757813, -3.27246, -5.22504},{-10.3262, -1.87891, -5.22504},{-5.85791, 2.8252, -5.22504},{1.70557, 2.6582, -5.22504},{0.855957, 2.20313, -0.404762}};
  1108. };
  1109.  
  1110. class land_jzd_kr1
  1111. {
  1112. table = "Industrial";
  1113. positions[] = {{-4.60498, -16.6143, -6.34966},{-0.616211, -11.9746, -6.26657},{2.00879, 0.411133, -6.26657},{-2.75879, 7.97363, -6.34966},{3.2373, 12.166, -6.34966},{2.22852, 3.82227, -6.26657},{4.25293, -7.25391, -6.34966},{-3.63916, 12.5576, -2.14675},{3.32227, 7.34863, -2.14675},{-3.50049, -1.67871, -2.14676},{0.86377, -8.74902, -2.14675},{-1.79688, -15.4854, -2.14675},{4.17969, -16.0742, -2.14675},{1.33887, -6.41699, 1.31637}};
  1114. };
  1115.  
  1116. class land_jzd_kr2
  1117. {
  1118. table = "Industrial";
  1119. positions[] = {{4.33154, 23.5986, -2.38598},{-7.01855, 22.6494, -6.3362},{3.06006, 15.4053, -2.34158},{-3.38916, 8.94141, -2.07983},{5.90381, 10.1426, -2.07984},{-0.131836, 3.41992, -2.07984},{-2.67334, -4.22363, -2.07983},{7.01074, -4.36426, -2.07984},{2.15918, -9.3125, -2.07983},{6.0249, -15.4023, -2.07984},{2.06885, -12.9785, -2.07984},{-2.85889, -15.7559, -2.07984},{2.05176, -18.6699, -2.07983},{2.04688, -24.3594, -0.117252},{-7.77246, 20.3125, -6.33621},{4.08887, 20.2959, -6.33621},{1.78662, 12.8369, -6.3362},{1.87793, 9.47168, -6.19965},{1.9082, 5.69531, -6.19965},{1.83447, -3.8584, -6.19965},{1.72021, -9.01953, -6.19965},{1.78711, -13.3994, -6.19965},{2.20703, -16.7363, -6.19965},{2.53027, -23.6309, -6.233},{-2.64941, 8.58203, -6.2563},{-2.64307, -12.1484, -6.2563},{6.21387, -3.83008, -6.2563}};
  1120. };
  1121.  
  1122. class land_jzd_silo_tes
  1123. {
  1124. table = "Factories";
  1125. positions[] = {{-2.88379, -1.75977, -16.0503},{17.8921, -6.25586, -15.9365},{24.4775, -0.426758, -15.9552},{18.7129, 5.69043, -16.0179}};
  1126. };
  1127.  
  1128. class land_jzd_stodola1
  1129. {
  1130. table = "CivillianLowerClass";
  1131. positions[] = {{0.400879, -13.5039, -2.0262},{-3.86035, -9.13281, -2.0262},{-0.871582, -1.84473, -2.0262},{-3.12207, 6.1543, -2.0262},{1.37891, 14.0986, -2.0262}};
  1132. };
  1133.  
  1134. class land_jzd_stodola2
  1135. {
  1136. table = "CivillianLowerClass";
  1137. positions[] = {{6.86377, -5.91699, -2.0262},{3.77734, -12.7139, -2.0262},{-0.95459, -1.85254, -2.0262},{-5.56543, 3.05859, -2.0262},{7.41016, 5.45703, -2.0262},{2.16113, 7.55273, -2.0262},{3.38037, 12.7236, -2.0262},{7.05078, 14.0605, -2.0262},{1.06689, 1.17383, 1.31123}};
  1138. };
  1139.  
  1140. class land_jzd_vodojem
  1141. {
  1142. table = "Industrial";
  1143. positions[] = {{-0.27002, 0.380859, -6.83972}};
  1144. };
  1145.  
  1146. class Land_KBud
  1147. {
  1148. table = "Tourist";
  1149. positions[] = {{0.0415039, -0.40625, -1.04616}};
  1150. };
  1151.  
  1152. class Land_komin
  1153. {
  1154. table = "Industrial";
  1155. positions[] = {{1.4082, 0.291992, 12.4562},{-1.29688, 1.70313, 12.4562}};
  1156. };
  1157.  
  1158. class land_kontejner_des
  1159. {
  1160. table = "Industrial";
  1161. positions[] = {{-0.90625, -0.110352, -0.604759}};
  1162. };
  1163.  
  1164. class land_kostelik_final_2122
  1165. {
  1166. table = "CivillianLowerClass";
  1167. positions[] = {{-0.694336, 3.57324, -5.57918},{1.99854, 3.09668, -5.57919},{4.07324, -0.552734, -5.57918},{-0.619141, -6.96094, -5.57918},{2.00195, -6.27051, -5.57918},{-2.23291, -2.90137, -5.57918},{2.39404, 8.44238, -5.55285},{-1.03955, 8.20215, -5.01875},{1.06689, 7.79492, 1.55624},{-0.308594, 7.52832, 1.55565},{0.831543, -1.79492, -5.57918}};
  1168. };
  1169.  
  1170. class Land_kulna
  1171. {
  1172. table = "CivillianLowerClass";
  1173. positions[] = {{-0.358887, 2.14551, -1.1406}};
  1174. };
  1175.  
  1176. class land_lodenice
  1177. {
  1178. table = "CivillianLowerClass";
  1179. positions[] = {{-3.89795, 1.52051, -2.83267},{-1.83301, -5.40625, -2.01773},{-4.23145, -12.6211, -1.10887},{-0.587891, -12.7275, -1.0997}};
  1180. };
  1181.  
  1182. class land_marsh1
  1183. {
  1184. table = "CivillianLowerClass";
  1185. positions[] = {{4.64844, 3.49316, -3.95897},{1.33008, 4.81934, -3.95897},{3.98535, 6.78223, -3.95897},{2.28564, -0.0136719, -3.95897},{3.98193, -3.84277, -3.95897},{0.0605469, -5.29004, -3.95897},{-0.55127, 0.425781, -3.95897},{-2.35938, 4.36133, -3.99553}};
  1186. };
  1187.  
  1188. class land_marsh2
  1189. {
  1190. table = "CivillianLowerClass";
  1191. positions[] = {{-6.88477, -1.49512, -0.265942},{0.22998, 9.88281, -0.541714},{2.99219, 10.4424, -0.73275},{5.43848, 9.24902, -0.941872}};
  1192. };
  1193.  
  1194. class Land_Mil_Barracks_i
  1195. {
  1196. table = "Military";
  1197. positions[] = {{4.72119, -1.99121, -1.09824},{6.64404, -0.0224609, -0.93486},{0.72998, -1.94727, -1.09824},{1.13184, -0.0605469, -1.09824},{-1.7417, -2.11914, -1.09823},{-0.903809, 0.0771484, -1.09823},{-3.85596, 0.00683594, -1.09824},{-5.04834, -1.8125, -1.09824},{-8.65771, 2.46875, -1.09823},{-8.58887, -1.83691, -1.09823}};
  1198. };
  1199.  
  1200. class Land_Misc_Cargo1Ao
  1201. {
  1202. table = "Industrial";
  1203. positions[] = {{-0.20459, 1.27539, -1.09225}};
  1204. };
  1205.  
  1206. class Land_Misc_Cargo1Bo
  1207. {
  1208. table = "Industrial";
  1209. positions[] = {{0.0966797, 0.678711, -1.09225}};
  1210. };
  1211.  
  1212. class Land_Misc_deerstand
  1213. {
  1214. table = "Military";
  1215. positions[] = {{-0.0947266, -0.667969, 1.08539}};
  1216. };
  1217.  
  1218. class Land_Misc_PowerStation
  1219. {
  1220. table = "VehicleService";
  1221. positions[] = {{4.16992, -4.13574, -1.26852},{4.09131, 1.93164, -1.26783},{3.86328, 6.91992, -1.2674}};
  1222. };
  1223.  
  1224. class land_molovabud1
  1225. {
  1226. table = "Industrial";
  1227. positions[] = {{-9.02637, -1.52637, 1.41187},{-8.70215, 6.33398, 1.41187},{-3.35205, 1.04004, 1.41187},{1.27637, 5.45605, 1.41425},{-1.12793, 0.734375, 5.07722}};
  1228. };
  1229.  
  1230. class Land_Nasypka
  1231. {
  1232. table = "Industrial";
  1233. positions[] = {{-1.35791, -0.119141, 6.56824}};
  1234. };
  1235.  
  1236. class land_Tovarna1
  1237. {
  1238. table = "Industrial";
  1239. positions[] = {{3.8584, -5.31836, -5.75442},{-6.19629, -6.02637, -5.75442},{-10.3931, -2.59375, -5.75442},{-10.2061, 3.5791, -5.75442},{-10.7573, 7.00684, -5.75442},{-2.11475, 9.29297, -5.75442},{3.84668, 6.97949, -5.75442},{-4.80566, 2.62891, -5.75441},{1.2417, 2.21973, -5.75442},{-1.66699, -3.27734, -5.75442},{-10.7734, -6.67285, -0.320099},{-10.8408, 4.02832, -0.320103},{3.51465, 4.69336, -0.320103},{3.89551, -3.3457, -0.320103},{-4.44971, -6.65137, -0.320099},{-9.4917, -6.31055, 2.17997},{-6.7041, 2.38379, 2.17997},{-3.7583, 2.5166, 2.17997},{-1.16797, 2.92871, 2.17997},{3.08691, 2.88477, 2.17997},{0.312988, -5.51172, 2.17997},{0.150879, -0.84082, 2.17997},{2.06689, 2.51563, 4.82976},{-3.9248, 1.5957, 4.82985},{-8.56885, 2.5625, 4.82973},{-6.41846, -3.70996, 4.82981},{-0.359863, -5.14648, 4.82973}};
  1240. };
  1241.  
  1242. class Land_Tovarna2
  1243. {
  1244. table = "Industrial";
  1245. positions[] = {{-6.62939, 7.03125, -5.55933},{-4.0459, 4.9707, -5.55933},{-8.83398, 7.84668, -5.55933},{-13.0425, 6.48438, -5.55933},{-11.5796, 3.19824, -5.55933},{-13.1543, -2.66602, -5.55933},{-11.6787, -7.64844, -5.56399},{-4.72412, -1.37012, -5.5772},{-2.51611, 7.9873, -5.55933},{1.68555, 6.6582, -5.5697},{-11.1611, 2.30566, -2.23135},{-12.6118, 8.00586, -2.23135},{-4.28418, 5.01758, -2.23156},{-6.14355, 8.34375, -2.23156},{-13.0337, 2.28418, 1.66661},{-12.2842, 7.39453, 1.66661},{-9.30322, 7.27148, 1.66661},{-4.25, 4.77344, 1.62174},{-6.52637, 8.47266, 1.62174},{-3.7959, 8.35742, 1.62174},{-3.75586, 0.200195, 3.42429},{-9.74365, 0.180664, 3.42429},{-13.1099, -2.29199, 3.4243},{-13.0254, -7.99414, 3.4243},{-6.33496, -8.81641, 3.4243},{0.432129, -8.81445, 3.4243},{2.3584, -4.66992, 3.4243},{2.29883, 5.5752, 3.42429},{5.64795, -4.23926, -4.61871}};
  1246. };
  1247.  
  1248. class land_trubice
  1249. {
  1250. table = "Industrial";
  1251. positions[] = {{-3.31152, 2.16504, 2.59439},{1.09229, 2.82227, 2.59438},{5.39551, 0.498047, 2.59438}};
  1252. };
  1253.  
  1254. class Land_vez
  1255. {
  1256. table = "Military";
  1257. positions[] = {{-0.266602, 1.36523, 1.36331}};
  1258. };
  1259.  
  1260. class land_vstup
  1261. {
  1262. table = "Industrial";
  1263. positions[] = {{-12.4053, -2.3916, -4.57601},{-5.09863, -0.53418, -4.56671},{2.9541, -2.67383, -4.53907},{7.39893, -1.62695, -4.52592}};
  1264. };
  1265.  
  1266. class Land_vys_budova_p2
  1267. {
  1268. table = "CivillianLowerClass";
  1269. positions[] = {{-6.41992, 3.33789, -0.702797},{-2.60352, -2.88379, -0.702797},{-6.21973, -3.98438, -0.702797},{-0.716309, -2.80957, 0.694061}};
  1270. };
  1271.  
  1272. class Land_Vysilac_FM
  1273. {
  1274. table = "Military";
  1275. positions[] = {{1.62988, -0.418945, 8.39022}};
  1276. };
  1277.  
  1278. class land_vysoky2
  1279. {
  1280. table = "CivillianUpperClass";
  1281. positions[] = {{1.23291, 0.397461, -15.4928},{3.23291, -2.34375, -15.5683},{6.66016, 4.94141, -15.6088},{6.50146, -5.2373, -15.6088},{3.46826, -13.1758, -15.5678},{9.36914, -10.8037, -15.5851}};
  1282. };
  1283.  
  1284. class land_x_nadrz
  1285. {
  1286. table = "Industrial";
  1287. positions[] = {{-0.677734, 2.68262, 1.44318}};
  1288. };
  1289.  
  1290. class land_x_skladiste_low_te
  1291. {
  1292. table = "Industrial";
  1293. positions[] = {{-13.2363, -9.30371, -2.8418},{-14.231, 3.10449, -2.84105},{-2.57813, 8.91992, -1.61393},{0.682617, 6.83594, -2.84118},{13.1919, 6.2959, 0.106834},{9.46045, -1.61426, -2.58824},{10.0454, -6.80762, -2.58824},{1.45361, -5.36816, -2.58824},{-6.55615, -9.5127, -2.84166},{-15.5264, -11.1084, 4.04656},{4.94336, -12.0215, 4.04781},{16.9888, -3.24316, 4.04781},{16.814, 10.458, 4.04665},{10.6865, 6.64941, 6.17473}};
  1294. };
  1295.  
  1296. class land_x_vetraci_komin
  1297. {
  1298. table = "Industrial";
  1299. positions[] = {{3.07617, -0.651367, 14.9767},{-0.126953, -0.155273, 14.9466}};
  1300. };
  1301.  
  1302. class land_x_vez_te
  1303. {
  1304. table = "CivillianLowerClass";
  1305. positions[] = {{1.37744, -0.333008, -4.60751},{-0.855469, 2.38574, -4.58929},{0.958984, 2.96875, -4.58572},{1.19434, -0.387695, -0.273819},{0.800781, 2.80176, -0.272766},{-2.59912, 2.79102, -0.272377},{-2.41211, 0.592773, -0.273094},{-4.83057, -3.3623, -0.274063}};
  1306. };
  1307.  
  1308. class land_zd_1
  1309. {
  1310. table = "CivillianLowerClass";
  1311. positions[] = {{-1.92969, 3.09961, -3.67255},{2.68896, 3.86426, -3.67256},{2.27881, -1.89551, -3.67255},{-0.723145, -2.45215, -3.67255},{-4.57813, -1.90918, -4.04225}};
  1312. };
  1313.  
  1314. class land_zd_2
  1315. {
  1316. table = "CivillianLowerClass";
  1317. positions[] = {{-2.1416, -0.546875, -1.82467},{-0.318848, 2.48145, -1.82467},{1.85205, 1.12793, -1.82467}};
  1318. };
  1319.  
  1320. class Land_HouseV2_03
  1321. {
  1322. table = "CivillianUpperClass";
  1323. positions[] = {{18.3115, 1.0625, -5.62046},{10.0884, -9.37305, -5.60065},{-18.4453, 2.13477, -5.90977},{-18.1553, 0.09375, -5.88095}};
  1324. };
  1325.  
  1326. class land_seb_nasypka
  1327. {
  1328. table = "Industrial";
  1329. positions[] = {{2.58789, -3.42188, -4.24763},{4.24707, 9.42383, -6.46843},{7.66113, 8.33203, -6.49762},{8.46094, 3.88672, -6.50448},{10.937, 0.0751953, -6.52561},{5.90869, -2.25098, -6.90967},{8.9917, -9.40332, -0.134293},{8.97705, -3.41602, -0.134289},{6.27197, -2.44629, 1.30363},{6.06689, 4.19922, 1.30363},{4.11523, 8.49805, 1.30363},{7.87158, 6.61621, 1.30363},{5.11279, 4.30566, 3.86848},{7.66943, 1.15723, 3.12964},{5.90625, 9.59668, 3.27484},{2.71143, -6.04297, -0.134289}};
  1330. };
  1331.  
  1332. class land_seb_near_fac
  1333. {
  1334. table = "Factories";
  1335. positions[] = {{-23.6338, -19.4893, -2.74704},{-23.417, -23.2939, -5.23791}};
  1336. };
  1337.  
  1338. class land_seb_residental
  1339. {
  1340. table = "CivillianLowerClass";
  1341. positions[] = {{4.65283, 6.66699, -3.97305},{-5.93555, 9.76367, -3.71556},{-0.84375, 2.00195, -3.69101},{-6.8833, -8.72266, -3.65704},{-6.19385, -0.334961, -3.6836},{-0.363281, 4.80273, -3.69986},{-2.65723, 7.20898, 0.527275},{-6.62402, 5.46777, 0.535892},{-2.62891, 2.04199, 0.552792},{-1.87891, -2.06543, 0.573109},{-6.69287, -3.84863, 0.581905},{-1.95313, -7.14258, 0.448582},{-6.7876, -7.85156, 0.403408}};
  1342. };
  1343.  
  1344. class land_seb_rozvodna
  1345. {
  1346. table = "Industrial";
  1347. positions[] = {{-0.746582, 3.18555, 0.582798}};
  1348. };
  1349.  
  1350. class land_seb_vod_vez
  1351. {
  1352. table = "Industrial";
  1353. positions[] = {{0.291992, 0.31543, 15.0059},{2.41504, -0.685547, 15.0589}};
  1354. };
  1355.  
  1356. class land_senik
  1357. {
  1358. table = "CivillianLowerClass";
  1359. positions[] = {{-1.24219, -0.173828, -4.08134},{-0.446777, 2.09375, -4.07665},{0.0864258, -3.96973, -4.08918},{-3.14014, -7.28711, -4.09602},{-7.97656, -3.49707, -4.0882},{-17.2642, -3.91504, -4.08906},{-17.3037, 0.610352, -4.07971},{-13.439, 4.39355, -4.07189},{-7.9624, -0.228516, -4.08143},{-4.69238, 3.64551, -4.07343}};
  1360. };
  1361.  
  1362. class Land_Shed_Ind02
  1363. {
  1364. table = "Industrial";
  1365. positions[] = {{2.48096, 8.94629, -4.62599},{3.07715, 1.91211, -4.62599},{2.68262, -6.92383, -4.62599},{-2.57568, -1.43359, -4.62599},{4.72559, -5.57227, -1.27567},{4.71387, 4.27734, -1.28024},{-1.03467, 9.94043, -1.27845},{-1.34961, 11.8389, -1.27658},{-3.92725, 3.22363, -1.28432},{-4.08496, -7.4834, -1.28736}};
  1366. };
  1367.  
  1368. class Land_Shed_W01
  1369. {
  1370. table = "CivillianLowerClass";
  1371. positions[] = {{-1.46973, -0.0566406, -1.40097}};
  1372. };
  1373.  
  1374. class land_sklad2
  1375. {
  1376. table = "CivillianLowerClass";
  1377. positions[] = {{-3.17139, -2.12988, -2.38225},{2.39063, -3.15625, -2.38225},{3.30371, 1.88281, -2.38225},{-2.32568, 3.64844, -2.38225}};
  1378. };
  1379.  
  1380. class land_st_vez
  1381. {
  1382. table = "Military";
  1383. positions[] = {{0.0141602, -4.40625, -3.31476},{-5.08496, -2.78223, -3.31476},{-4.76514, 2.26953, -3.31476},{-0.228516, 3.75, -3.31476},{-1.03857, -2.08105, 6.40833},{-4.41309, 0.394531, 6.40833},{-1.98145, 2.73926, 6.40833}};
  1384. };
  1385.  
  1386. class Land_stodola_old_open
  1387. {
  1388. table = "CivillianLowerClass";
  1389. positions[] = {{3.66943, -10.3945, -5.08055},{-2.44189, -6.48633, -5.08055},{2.729, 3.72461, -5.08055},{-2.5835, 9.38379, -5.08055},{2.51514, 10.0439, -5.08055},{-2.20947, 9.76758, -0.993511},{3.87744, 10.6729, -0.993511},{0.335938, 10.3711, 2.96444},{-2.57227, -9.40332, -1.00523},{4.58887, -10.7676, -0.998154},{3.5, -7.14746, -1.00394},{0.982422, -10.6992, 2.96444}};
  1390. };
  1391.  
  1392. class Land_stodola_open
  1393. {
  1394. table = "CivillianLowerClass";
  1395. positions[] = {{1.88086, 5.7959, -4.1124},{-2.96338, 6.39355, -4.10798},{-0.639648, -1.17383, -4.20508},{-3.59912, -6.5332, -3.18184},{-4.01416, 1.04297, -4.11878}};
  1396. };
  1397.  
  1398. class land_syp_r
  1399. {
  1400. table = "CivillianLowerClass";
  1401. positions[] = {{-0.782715, 0.944336, -6.54317},{1.80078, -0.692383, -6.53119}};
  1402. };
  1403.  
  1404. class Land_Nav_Boathouse
  1405. {
  1406. table = "CivillianLowerClass";
  1407. positions[] = {{5.39844, -0.183594, 3.73029},{2.88184, 7.22168, 3.72778},{-3.04541, 7.42578, 3.73394},{-5.12012, -0.625977, 3.73032},{0.262207, -4.09375, 3.64116}};
  1408. };
  1409.  
  1410. class Land_Nav_Boathouse_PierL
  1411. {
  1412. table = "CivillianLowerClass";
  1413. positions[] = {{4.73975, 0.168945, 5.88749},{-1.41748, -0.195313, 5.88749}};
  1414. };
  1415.  
  1416. class Land_Nav_Boathouse_PierR
  1417. {
  1418. table = "CivillianLowerClass";
  1419. positions[] = {{-4.71875, -2.78027, 5.87571},{-0.0219727, -2.75391, 5.87571}};
  1420. };
  1421.  
  1422. class Land_NAV_Lighthouse
  1423. {
  1424. table = "Tourist";
  1425. positions[] = {{-0.452148, 0.0410156, -6.78146},{0.706543, 0.436523, 2.41912},{-0.727051, -0.0292969, 2.41912},{-0.977051, 1.41797, 2.41912},{0.782227, -1.41113, 2.41912}};
  1426. };
  1427.  
  1428. class land_nav_pier_c
  1429. {
  1430. table = "Industrial";
  1431. positions[] = {{-8.15576, -16.2305, 23.0037},{-7.75244, -1.47949, 23.0037},{-7.90234, 15.5029, 23.0037},{-7.47852, 8.41309, 23.0037},{-8.00391, -9.05273, 23.0037}};
  1432. };
  1433.  
  1434. class land_nav_pier_c2
  1435. {
  1436. table = "Industrial";
  1437. positions[] = {{14.0571, 6.25684, 23.8614},{6.81982, 7.10059, 23.8614},{-0.686523, 7.44629, 23.8614},{-7.65723, 7.83301, 23.8614},{-17.3403, 7.67871, 23.8614}};
  1438. };
  1439.  
  1440. class land_nav_pier_c2_end
  1441. {
  1442. table = "Industrial";
  1443. positions[] = {{6.6377, -4.05078, 23.8614},{1.34473, -3.78223, 23.8614},{-6.92529, -3.66504, 23.8614},{-2.79932, -3.23047, 23.8614}};
  1444. };
  1445.  
  1446. class land_nav_pier_c_90
  1447. {
  1448. table = "Industrial";
  1449. positions[] = {{-7.7085, -8.63867, 24.0014},{-7.34619, -3.86133, 24.0014},{-7.38965, 1.01465, 24.0014},{-7.5083, 6.71191, 24.0014},{0.339355, 7.0293, 24.0014},{6.40283, 7.0957, 24.0014}};
  1450. };
  1451.  
  1452. class land_nav_pier_c_big
  1453. {
  1454. table = "Industrial";
  1455. positions[] = {{18.3433, -22.2959, 23.0031},{6.84717, -21.9932, 23.0031},{-3.09033, -22.248, 23.0031},{-14.6865, -22.3359, 23.0031},{-16.9067, -15.0117, 23.0031},{-17.063, 0.720703, 23.0031},{-11.8149, 11.71, 23.0031},{-7.14502, 18.2432, 23.0032},{6.7002, 19.3457, 23.0031},{9.86377, 12.5205, 23.0031},{17.9229, 11.5645, 23.0031},{18.21, 1.91016, 23.0031},{18.3379, -9.86133, 23.0031}};
  1456. };
  1457.  
  1458. class Land_nav_pier_m_2
  1459. {
  1460. table = "CivillianLowerClass";
  1461. positions[] = {{15.189, -2.6123, 23.4414},{6.021, -2.7207, 23.4414},{-2.30273, -2.72461, 23.4414},{-15.8667, -2.66699, 23.4414},{-9.52539, 2.48828, 23.4414},{0.265625, 2.66113, 23.4414},{9.00732, 2.63965, 23.4414}};
  1462. };
  1463.  
  1464. class land_nav_pier_m_end
  1465. {
  1466. table = "CivillianLowerClass";
  1467. positions[] = {{1.65039, -4.83789, 23.4414},{-3.99854, -5.31445, 23.4414},{-4.5835, -0.269531, 23.4414},{-5.29102, 4.99023, 23.4414},{-0.487793, 5.88281, 23.4414}};
  1468. };
  1469.  
  1470. class Land_ns_jbad_A_GeneralStore_01
  1471. {
  1472. table = "CivillianUpperClass";
  1473. positions[] = {{-1.95898, 3.79395, -1.20155},{0.864746, 3.93359, -1.20155},{3.40576, 3.81543, -1.20155},{5.2002, 3.82813, -1.20155},{10.1587, 3.05371, -1.20155},{10.1592, 0.866211, -1.20154},{5.89063, 0.604492, -1.20155},{3.96387, 0.604492, -1.20155},{1.83594, 0.631836, -1.20155},{-0.505371, 0.662109, -1.20155},{5.79248, -4.14746, -1.20155},{12.71, -3.49316, -1.20155},{2.54541, -6.17969, -1.20155},{-1.36865, -5.91016, -1.20155},{-5.46875, -5.92871, -1.20154},{-9.01465, -6.27441, -1.20155},{0.26123, -7.33691, -1.20155},{12.2588, -7.87207, -1.20155},{-9.2002, -3.20605, -1.20155},{0.37207, -1.16309, -1.20155}};
  1474. };
  1475.  
  1476. class Land_ns_Jbad_A_Stationhouse
  1477. {
  1478. table = "Military";
  1479. positions[] = {{-6.93945, -7.13867, -9.46536},{-12.9404, 0.662109, -9.46536},{-6.33008, 1.7041, -9.46536},{-5.67383, -1.94531, -9.46537},{-7.77002, -4.62207, -9.46536},{-6.93506, 4.94922, -9.46536},{-5.90967, 7.74707, -9.46536},{-11.2642, 8.73242, -9.46536},{-12.208, 5.63574, -9.46536},{-14.3066, 6.98828, -9.46536},{-16.7954, 2.97461, -9.46536},{-17.332, -5.8457, -9.46536},{-14.6265, -5.30664, -9.46536},{-2.13672, -3.03613, -9.46536},{-2.03516, 2.78516, -9.46536},{-1.91406, 7.15527, -9.46536},{-8.48096, -6.48535, -6.77364},{-15.7749, -7.71777, -6.77364},{-17.375, -3.10254, -6.77364},{-17.0884, 6.61523, -6.77364},{-12.9873, 6.54883, -6.77364},{-9.61328, 6.80469, -6.77364},{-5.8584, 6.69141, -6.77364},{-2.31299, 6.87305, -6.77364},{-1.86133, -3.58105, -6.77364},{-7.43652, -3.58691, -6.77364},{-14.3545, -7.84277, -3.6493},{-16.6865, -7.78711, -3.6493},{-16.7388, 7.72949, -3.6493},{-13.9004, 7.69336, -3.6493},{-9.65723, 8.08789, -3.6493},{-6.38184, 7.78809, -3.6493},{-3.146, 8.21387, -3.6493},{-9.59473, -3.41113, -3.6493},{-6.93213, -3.34473, -3.6493},{-16.2041, 0.322266, -3.6493},{1.34912, -2.77832, -4.50294},{4.82324, -0.526367, -4.50294},{2.17676, -7.55664, -4.50269},{12.9829, -7.05371, -4.50269},{-9.396, -6.19141, -0.502689},{-15.7285, -6.89355, -0.502689},{-16.8872, 1.82227, -0.502689},{-11.0439, 2.58887, -0.502689},{-4.49365, 2.33301, -0.502686},{-1.93701, -7.98535, 8.49731},{-3.91748, -7.66309, 8.49731}};
  1480. };
  1481.  
  1482. class Land_ns_jbad_hangar_2
  1483. {
  1484. table = "Industrial";
  1485. positions[] = {{12.8218, -8.23438, -2.56319},{13.3193, -2.53516, -2.56318},{13.2275, 3.03223, -2.56319},{13.4185, 9.16797, -2.56319},{1.84619, 4.42578, -2.56319},{0.273438, -1.96875, -2.56319},{0.223633, -7.3418, -2.56319},{-12.1475, -4.97363, -2.56319},{-12.7822, 0.652344, -2.56319},{-12.5186, 5.44141, -2.56319},{0.0429688, 9.13281, -2.56319}};
  1486. };
  1487.  
  1488. class Land_ns_Jbad_Ind_Garage01
  1489. {
  1490. table = "Industrial";
  1491. positions[] = {{-1.56641, 2.76855, -0.70237},{-1.72363, -1.36328, -0.71067},{0.694824, 0.235352, -0.710865}};
  1492. };
  1493.  
  1494. class Land_ns_Jbad_Ind_PowerStation
  1495. {
  1496. table = "Industrial";
  1497. positions[] = {{3.79004, 7.35742, -0.0734406},{3.93555, 2.98242, -0.0776749},{3.91504, -1.97852, -0.0574455}};
  1498. };
  1499.  
  1500. class Land_ns_Jbad_Mil_Barracks
  1501. {
  1502. table = "Military";
  1503. positions[] = {{6.04395, -3.20898, -1.9798},{2.90332, -3.1416, -1.9798},{-0.803223, -2.35547, -1.9798},{-4.16357, -2.34473, -1.9798},{-7.53955, -2.92383, -1.9798},{-7.5293, 3.27734, -1.9798},{-4.19482, 3.24609, -1.9798},{-0.518066, 3.81543, -1.9798},{2.29834, 3.09668, -1.9798},{5.45459, 3.01172, -1.9798},{-5.80371, 0.0537109, -1.9798}};
  1504. };
  1505.  
  1506. class Land_ns_Jbad_Mil_ControlTower
  1507. {
  1508. table = "Military";
  1509. positions[] = {{8.93896, -2.4834, -9.58517},{3.74316, -2.73535, -9.58517},{4.68555, 1.06152, -9.58517},{9.20117, 5.04199, -9.62869},{4.0332, 4.7168, -5.4637},{3.02783, -0.135742, -1.0687},{6.95605, -1.1377, -1.0687},{6.04004, 2.51367, -1.0687},{3.03564, 1.75488, -1.0687},{0.952148, 5.11426, -9.6287},{-9.42725, -0.114258, -9.58517},{0.900391, 2.07813, -9.60597},{8.31592, 0.0869141, -9.58517},{0.416504, -3.0166, -1.05692},{6.09424, -3.65527, -1.05692},{9.68945, 0.405273, -1.05692},{6.51074, 5.625, -1.05692},{6.03662, 3.22949, 2.80917},{3.48291, -0.34375, 2.87234}};
  1510. };
  1511.  
  1512. class Land_ns_Jbad_Mil_Guardhouse
  1513. {
  1514. table = "CivillianLowerClass";
  1515. positions[] = {{-2.66943, 3.2793, -1.66939},{4.04395, 3.66309, -1.66939},{2.69775, 0.196289, -1.66939},{-1.37598, 3.42188, -1.66939}};
  1516. };
  1517.  
  1518. class Land_ns_Jbad_Mil_Guardhouse_winter
  1519. {
  1520. table = "CivillianUpperClass";
  1521. positions[] = {{-3.30664, 2.98242, -1.66938},{3.49316, 3.70313, -1.66939},{-0.645996, 3.14551, -1.66939},{3.88818, 0.946289, -1.66939},{-0.267578, -0.269531, -1.66939}};
  1522. };
  1523.  
  1524. class Land_ns_Jbad_Mil_House
  1525. {
  1526. table = "Military";
  1527. positions[] = {{-1.65674, -5.99219, -5.01462},{8.46973, 4.03516, -5.01462},{7.90967, -5.97266, -5.01463},{5.9165, -7.05273, -5.01463},{2.89111, -6.42676, -5.01462},{1.23682, -5.16504, -5.01462},{1.60205, -2.2207, -5.01462},{1.66943, 3.78125, -5.01463},{13.2617, -0.860352, -5.01462},{13.748, -2.25781, -5.01462},{5.44238, -2.89844, -5.01462},{-1.61182, 3.02344, -0.672493},{-13.0781, 1.9209, -0.696548},{-12.4023, -1.39258, -0.696548},{-13.8862, -4.80859, -0.696548},{-5.20605, -5.17773, -0.696548},{-5.49072, -2.76758, -0.696552},{-5.40479, 0.0078125, -0.696552},{-6.08154, 4.5918, -0.696545},{-4.62744, 0.244141, -5.01463},{-4.49658, -2.52246, -5.01463},{-4.56055, -4.71387, -5.01462},{-4.76465, -7.3584, -5.01462},{-13.5967, -7.61621, -5.01462},{-13.7686, -4.79199, -5.01462},{-13.9316, -1.64355, -5.01462},{-14.3921, 1.50488, -5.01462},{-5.47559, 4.78711, -5.01462},{-8.73828, -3.43945, -5.01462}};
  1528. };
  1529.  
  1530. class land_p1_v1
  1531. {
  1532. table = "CivillianLowerClass";
  1533. positions[] = {{-9.48145, 0.251953, 15.7814},{0.390625, 1.25781, 15.7191},{15.5005, 1.01953, 15.7191},{21.3237, 1.90137, 15.7191},{8.04443, 0.874023, 15.7191}};
  1534. };
  1535.  
  1536. class land_p1_v2
  1537. {
  1538. table = "CivillianLowerClass";
  1539. positions[] = {{13.4614, -0.0595703, 15.8593},{1.31055, 0.222656, 15.8421},{-9.30908, 0.395508, 15.8421},{-22.5, 0.293945, 15.8421}};
  1540. };
  1541.  
  1542. class land_panelova2
  1543. {
  1544. table = "Industrial";
  1545. positions[] = {{-6.35107, 0.430664, 0.5737},{-6.94727, 4.40137, 0.573704},{-3.82031, 6.3252, 0.573708},{8.93311, 7.03906, 5.67995},{9.54736, 0.0117188, 5.67995},{9.4751, -6.79688, 5.67995},{4.10596, -8.95605, 5.67995},{0.784668, 0.615234, 5.67995}};
  1546. };
  1547.  
  1548. class land_panelova3
  1549. {
  1550. table = "CivillianUpperClass";
  1551. positions[] = {{-2.02393, -4.05664, -2.99467},{1.93408, 2.16602, -3.00268},{5.26465, 1.64941, 0.0510063},{5.92432, -2.23242, 0.0510063},{1.86133, -4.71875, 0.0510063},{0.651855, 0.65918, 0.0510063}};
  1552. };
  1553.  
  1554. class land_part1
  1555. {
  1556. table = "Factories";
  1557. positions[] = {{4.9751, 1.4082, -9.1134},{-2.62598, 6.85938, -9.1134},{-3.95654, 0.295898, -9.1134},{0.0849609, 1.74512, -8.23541},{2.55811, -3.95996, -8.23301},{0.67627, -6.23047, -9.26768},{1.84277, 3.89648, -4.40201},{0.464355, 1.73926, -4.402},{-3.25732, 3.24512, -4.402},{4.19775, 6.86621, 1.93876},{4.68311, 1.04492, 1.93857},{1.90576, -2.84375, 1.93798},{-3.38428, -3.04883, 1.93808},{-4.19727, 5.19922, 1.93821},{4.229, 6.31934, 6.62016},{-0.125977, 6.64355, 6.59703},{5.11279, -1.55957, 6.60015},{-0.223145, -1.92969, 6.57503}};
  1558. };
  1559.  
  1560. class land_part2
  1561. {
  1562. table = "Factories";
  1563. positions[] = {{-2.98682, 4.24805, -9.86775},{-2.99121, -4.69824, -9.86775},{1.0835, -4.15332, -9.86775},{0.568848, 1.96582, -9.86775},{4.81738, 0.119141, -9.86775},{-4.07275, -0.433594, -9.86775}};
  1564. };
  1565.  
  1566. class land_part3
  1567. {
  1568. table = "Industrial";
  1569. positions[] = {{4.30029, 3.23242, -9.7823},{-3.11182, -2.9668, -9.7823},{-0.620117, -6.25684, -9.7823},{-2.61475, 3.61328, -9.12671},{4.63379, -3.71582, -9.27485}};
  1570. };
  1571.  
  1572. class land_plynom
  1573. {
  1574. table = "Tourist";
  1575. positions[] = {{-0.615723, -0.589844, -12.5784},{0.469727, -1.18164, -2.60305},{-1.83984, -0.77832, -2.60305},{0.26123, 0.941406, -2.60305}};
  1576. };
  1577.  
  1578. class land_pozorovatelna
  1579. {
  1580. table = "Military";
  1581. positions[] = {{-2.54639, 2.11426, -2.49767},{0.805176, 2.80859, -2.49767},{3.35986, 0.398438, -2.49767},{1.35449, -3.07129, -2.49767},{-1.16162, -2.39453, 7.54509},{-1.94922, 1.42578, 7.54509},{1.96289, 1.92969, 7.54508},{1.56543, -1.3291, 7.54509}};
  1582. };
  1583.  
  1584. class land_provoz1
  1585. {
  1586. table = "CivillianLowerClass";
  1587. positions[] = {{4.17432, 3.20996, -2.30756},{0.660156, 3.69727, -2.30756},{-2.80078, 3.64648, -2.30756},{-1.63428, 1.08496, -2.30756},{-3.64258, -3.09863, -2.30756},{2.36084, -3.6875, -2.30756},{1.75781, -1.48926, -2.30756},{-3.27539, -0.850586, -2.30756}};
  1588. };
  1589.  
  1590. class land_provoz2
  1591. {
  1592. table = "CivillianLowerClass";
  1593. positions[] = {{-2.72998, -1.48828, -2.51849},{-6.00488, 2.05078, -2.51849},{-1.47021, 2.41113, -2.51849},{3.66016, 2.57715, -2.51849},{6.47559, -1.25293, -2.51849},{1.4043, -0.520508, -2.51849}};
  1594. };
  1595.  
  1596. class Land_psi_bouda
  1597. {
  1598. table = "CivillianLowerClass";
  1599. positions[] = {{1.50391, -0.165039, -0.510769}};
  1600. };
  1601.  
  1602. class Land_Rail_Semafor
  1603. {
  1604. table = "Industrial";
  1605. positions[] = {{-1.13672, -2.11914, -3.09424}};
  1606. };
  1607.  
  1608. class Land_Rail_Zavora
  1609. {
  1610. table = "Industrial";
  1611. positions[] = {{0.853516, 1.24902, -3.00996}};
  1612. };
  1613.  
  1614. class Land_repair_center
  1615. {
  1616. table = "Industrial";
  1617. positions[] = {{-2.56934, 2.8252, -1.52847},{-2.44043, -0.498047, -1.52847},{0.723145, 6.05859, -2.51424},{1.18408, -3.59863, -2.48021},{-0.379395, -3.48535, -2.48787}};
  1618. };
  1619.  
  1620. class land_rozvodna
  1621. {
  1622. table = "Industrial";
  1623. positions[] = {{-7.11914, -1.02344, -4.70046},{-7.13574, -1.50488, -0.369423},{-6.91504, -4.40332, -4.69898}};
  1624. };
  1625.  
  1626. class Land_ruin_01
  1627. {
  1628. table = "CivillianLowerClass";
  1629. positions[] = {{-4.22266, -2.38281, -1.85783},{-4.65381, 1.90918, -1.77736},{0.255859, 1.87793, -1.87815},{4.49072, 0.31543, -1.89494}};
  1630. };
  1631.  
  1632. class Land_sara_domek_ruina
  1633. {
  1634. table = "CivillianLowerClass";
  1635. positions[] = {{3.23682, -3.85547, -1.6696},{-2.26611, -3.51855, -1.69232},{5.66895, 1.35547, -1.68663}};
  1636. };
  1637.  
  1638. class land_seb_bouda1
  1639. {
  1640. table = "Medical";
  1641. positions[] = {{-1.98633, 1.73242, -3.28989},{-2.11279, -0.297852, -3.28989},{2.53271, 1.93262, -3.28989},{2.67822, 2.23145, -1.23185},{-3.06787, 0.942383, 0.572216},{2.46191, -2.31348, 1.13067},{-0.516602, 2.16602, 0.571716}};
  1642. };
  1643.  
  1644. class land_seb_bouda3
  1645. {
  1646. table = "CivillianLowerClass";
  1647. positions[] = {{-3.16992, -3.75879, -1.72879},{-3.06592, -0.341797, -1.72878},{-3.12793, 3.84668, -1.72879},{0.696777, 4.05957, -1.72852},{2.52881, 1.74023, -1.72871},{2.53076, -2.77637, -1.72871}};
  1648. };
  1649.  
  1650. class Land_seb_bouda_plech
  1651. {
  1652. table = "VehicleService";
  1653. positions[] = {{0.272949, 1.15723, -1.14411},{0.612793, -1.32129, -1.13259}};
  1654. };
  1655.  
  1656. class land_seb_main_fac
  1657. {
  1658. table = "Industrial";
  1659. positions[] = {{20.2397, -6.28809, -6.0019},{20.1323, -0.277344, -6.0019},{14.7222, -0.286133, -6.00189},{8.71826, -3.16699, -6.0019},{2.87354, -6.94336, -6.0019},{3.64453, 15.7803, 8.63872},{8.84375, 11.8525, 8.63873},{20.7271, 13.3164, 8.63872},{22.0767, 5.18555, 8.63872},{12.668, 4.78711, 8.63873},{3.85889, 3.99121, 8.63872},{9.89307, 16.2549, 4.16873},{14.1387, 17.6328, 4.16873},{20.1953, 21.2832, 4.16873},{-2.13281, 4.35645, 4.16873},{-7.08203, 3.02637, 4.16873},{-5.4502, 11.6123, 4.16873},{-26.3335, -2.50879, 5.78507},{-21.8853, -21.4766, 6.62068},{-11.1016, -7.77637, 5.5584}};
  1660. };
  1661.  
  1662. class land_seb_mine_main_opt
  1663. {
  1664. table = "Industrial";
  1665. positions[] = {{0.200195, -2.64844, -5.11368},{-0.065918, 1.44141, -5.09117},{-6.45654, 5.61523, -4.79106},{-2.86084, 2.72559, -0.995052},{-0.0131836, 4.7207, -0.991344},{-3.49854, 5.5791, -0.989746},{-0.959961, 5.41699, -5.06926},{6.56592, 1.58105, -4.79755},{4.11816, 3.27734, 5.05729},{-4.6626, 3.16699, 7.8684},{-5.74951, -2.37109, 7.86839},{-0.536133, -3.12012, 7.8684}};
  1666. };
  1667.  
  1668. class land_seb_mine_maringotka
  1669. {
  1670. table = "Industrial";
  1671. positions[] = {{0.23291, 0.0742188, -0.612675},{-0.94043, -1.0166, -0.612675},{-1.80273, 1.60645, -1.80481}};
  1672. };
  1673.  
  1674. class land_seb_mine_near
  1675. {
  1676. table = "Industrial";
  1677. positions[] = {{12.7983, -7.2373, -11.7431},{11.0381, -5.07715, -8.8979},{5.08057, -7.26758, -8.8979},{8.21387, -7.15723, -8.8979},{12.3599, 5.94336, -11.8273},{1.08984, 5.6748, -11.8485}};
  1678. };
  1679.  
  1680. class land_seb_mine_near_bordel
  1681. {
  1682. table = "Industrial";
  1683. positions[] = {{-2.35742, 1.12402, -1.5913},{2.18848, 1.50977, -1.58464}};
  1684. };
  1685.  
  1686. class land_seb_nadrze
  1687. {
  1688. table = "Industrial";
  1689. positions[] = {{-1.71924, 7.23828, -1.99941},{0.884766, 7.42383, -1.99976},{1.90088, 2.84473, -1.98533},{2.104, -2.93262, -1.96194},{-1.94531, -7.37988, -1.96484}};
  1690. };
  1691.  
  1692. class Land_vys_budova_p1
  1693. {
  1694. table = "Military";
  1695. positions[] = {{4.67285, -9.89844, -2.95578},{2.59277, -11.4277, -2.9579},{1.34326, -4.62988, -2.95771},{-1.03125, -10.8135, -2.96087},{0.00537109, 3.47266, -2.96087},{3.87695, -1.25293, -2.96087},{2.09131, 9.34766, -2.96236},{0.953125, 6.55859, -2.96087},{-5.84521, 9.24023, -2.96087},{-5.76367, 2.80469, -2.96087},{-6.62109, -2.30859, -2.97414},{-2.52734, -6.43262, -2.96087},{-5.80176, -11.4531, -2.96087},{-3.37793, -3.25098, -2.96087},{-1.10059, 4.71582, -0.407818},{-1.08496, -1.66895, -0.407818},{-0.66748, 4.49902, 2.12336},{1.89697, -1.58594, 2.12336},{0.874512, -0.941406, 5.54735},{-3.29443, -1.69629, 5.59869},{2.32715, -8.84766, 5.59121},{3.23828, 1.57617, 5.59121},{-0.154297, 8.67871, 5.59121},{-5.93896, 2.6543, 5.59121},{-6.43848, -11.2549, 5.59121},{-2.58008, 3.24707, 5.59869}};
  1696. };
  1697. class land_Mi8_Crashed
  1698. {
  1699. table = "Tourist";
  1700. positions[] = {{1.96582, -5.91016, -1.93351},{2.27588, -3.44238, -1.94127},{-0.348633, -4.37793, -1.73772},{-2.43164, -3.96484, -1.96016}};
  1701. };
  1702. //Tanoa
  1703.  
  1704. ///////////////////////////////////////////////////////////////////////////
  1705. // Tourist - Churches, Temples
  1706. ///////////////////////////////////////////////////////////////////////////
  1707. class Land_Temple_Native_01_F
  1708. {
  1709. table = "Tourist";
  1710. positions[] = {{2.86328, 3.62207, -5.94443},{-2.13916, 3.75977, -5.94443},{0.0214844, 2.21387, -5.94443}};
  1711. };
  1712. class Land_BasaltWall_01_gate_F
  1713. {
  1714. table = "Tourist";
  1715. positions[] = {{0.0439453, 0.864258, -0.817093}};
  1716. };
  1717. class Land_Cathedral_01_F
  1718. {
  1719. table = "Tourist";
  1720. positions[] = {{7.21387, -13.8271, -8.8191},{0.727295, -13.9795, -7.82105},{-7.71265, -13.25, -8.8191},{-12.6165, -13.6201, -10.1715},{-8.31592, -5.81348, -9.39412},{8.65625, -5.93066, -9.39412},{12.52, -14.5186, -10.1715}};
  1721. };
  1722. class Land_Church_01_F
  1723. {
  1724. table = "Tourist";
  1725. positions[] = {{7.84204, 8.19629, -9.98111},{7.97876, 4.67188, -9.98111},{8.10913, 0.875977, -9.98111},{-7.82324, -0.583984, -9.98111},{-7.87085, 2.66602, -9.98111},{-7.93921, 6.75977, -9.98111}};
  1726. };
  1727. class Land_Church_02_F
  1728. {
  1729. table = "Tourist";
  1730. positions[] = {{-1.57104, -16.291, -3.31618},{2.27466, -17.1553, -3.31618}};
  1731. };
  1732. class Land_Church_03_F
  1733. {
  1734. table = "Tourist";
  1735. positions[] = {{-2.0188, 8.6582, -6.7793}};
  1736. };
  1737. class Land_Hotel_02_F
  1738. {
  1739. table = "Tourist";
  1740. positions[] = {{-1.92993, -8.71289, -3.41328},{-1.68457, -5.88867, -3.41328},{-2.05542, -3.74316, -3.41328},{-0.919678, 2.72461, -3.41328},{-1.44141, 6.75586, -3.41328},{-2.28882, 10.0713, -3.41328},{-1.7937, 14.9482, -3.41328},{-0.670898, -1.53125, -3.41328},{3.26514, -1.31543, -3.41328},{7.61841, -0.356445, -3.41328},{5.31714, -0.30957, -3.41328},{7.62646, -1.7334, -3.41328},{2.55078, 1.68457, -3.41328},{-8.28198, 0.0371094, 0.0829258},{-5.4873, 0.396484, 0.0830498},{-8.25562, 1.77246, 0.0829353},{-6.80396, 2.12402, 0.0829277},{-2.97876, -1.2832, 0.0829277},{-0.0288086, -0.879883, 0.0829277},{2.29663, -0.895508, 0.201029},{-3.04395, 3.02441, 0.0829277},{0.036377, 2.55762, 0.0829277},{2.36206, 2.54102, 0.201008},{4.4043, 0.210938, 0.201008},{4.35107, 1.84961, 0.20101},{-6.39966, 1.38574, -3.41328},{-8.302, -0.541016, -3.41328},{-3.31665, -0.0693359, -3.41328},{6.95557, 1.69141, -3.41328},{0.772217, 0.842773, 0.0829296},{7.59888, 3.51172, -3.41328}};
  1741. };
  1742. class Land_Mausoleum_01_F
  1743. {
  1744. table = "Tourist";
  1745. positions[] = {{-0.353271, -0.273438, -1.9543},{0.789551, 1.28613, -1.9543}};
  1746. };
  1747.  
  1748. ///////////////////////////////////////////////////////////////////////////
  1749. // Military
  1750. ///////////////////////////////////////////////////////////////////////////
  1751. class Land_Airport_01_controlTower_F
  1752. {
  1753. table = "Military";
  1754. positions[] = {{-1.33838, -2.1748, 4.21085},{2.74023, -2.18848, 4.21085},{3.20215, 3.36816, 4.21085},{0.688477, -0.482422, 7.91645},{-1.7041, 2.05859, 7.91645},{0.241699, 1.05566, 4.65807}};
  1755. };
  1756. class Land_Airport_01_terminal_F
  1757. {
  1758. table = "Military";
  1759. positions[] = {{0.827881, -1.37305, -4.16959},{-7.77563, 6.21191, -4.02355},{-5.3645, 7.58496, -4.02355},{9.20093, 8.3584, -4.05115},{6.49023, 6.29004, -4.05115},{-2.06299, -3.88965, -4.16956},{8.37256, -9.38281, -3.60985},{5.72144, -7.32324, -4.05115},{-12.0342, 0.892578, -4.02597},{-15.1523, 2.55957, -4.02597}};
  1760. };
  1761. class Land_Airport_02_controlTower_F
  1762. {
  1763. table = "Military";
  1764. positions[] = {{-0.812744, 0.282227, -10.661},{0.941406, -2.72852, -7.56659},{1.30371, -2.91895, -4.33187},{0.729492, -2.33203, -1.09817},{-3.49194, 1.33203, 2.13546},{-3.42407, 8.52734, 2.13546},{3.66113, 7.77637, 2.13546},{3.46069, 1.49121, 2.13546},{-1.35278, 5.05273, 2.13546},{1.03467, 4.76367, 2.13546}};
  1765. };
  1766. class Land_Airport_02_terminal_F
  1767. {
  1768. table = "Military";
  1769. positions[] = {{9.60767, -6.86035, -1.40867},{5.26221, -7.11816, -1.40867},{5.20581, 2.50684, -1.40868},{10.1387, 1.65332, -1.40867},{10.0408, -3.44336, -1.40867},{6.25098, -3.10938, -1.40867},{1.42871, 3.71387, -1.40868},{-15.1729, -9.67676, -1.40867},{19.1196, -10.5801, -1.40867}};
  1770. };
  1771. class Land_Barracks_01_camo_F
  1772. {
  1773. table = "Military";
  1774. positions[] = {{-2.03223, -4.17578, 0.518449},{-12.3308, 3.25293, 0.518449},{-8.06128, -2.79688, 0.518449},{-13.0491, -3.41699, 0.518449},{-5.89697, 2.90039, 0.518449},{-0.161133, 3.46387, 0.518449},{6.76074, -3.37207, 0.518448},{3.97217, -3.37793, 0.518448},{3.79028, 3.08203, 0.518449},{13.0432, 2.82031, 0.518449},{10.2876, -2.74316, 0.518448},{-2.78931, -5.56543, 3.85143},{-12.4595, 3.32813, 3.85143},{-9.40015, -2.75, 3.85143},{-3.89746, 2.83496, 3.85143},{6.83984, -3.45605, 3.85143},{3.69678, 3.21973, 3.85143},{13.5459, 3.05859, 3.85143},{10.2222, -2.88086, 3.85143},{15.8203, 4.68457, 3.85143},{5.03662, 5.58203, 3.85143},{-11.1951, 5.7002, 3.85143}};
  1775. };
  1776. class Land_Barracks_01_grey_F
  1777. {
  1778. table = "Military";
  1779. positions[] = {{-4.93823, -3.14258, 0.579082},{-7.1687, -0.0634766, 0.579084},{0.246094, 3.5625, 0.579081},{15.8589, 3.48145, 3.82728},{4.1709, 3.31836, 3.91306},{-4.14941, 2.08008, 0.579082},{-5.45679, 4.16797, 0.579081},{3.21436, 3.62891, 0.579081},{6.79688, 3.63184, 0.579083},{13.6021, 3.58887, 0.579082},{2.74634, -3.52246, 0.579081},{6.47388, -3.57324, 0.579081},{13.2324, -3.56543, 0.579082},{10.2068, -3.60938, 0.579092},{0.724121, -1.92578, 2.14746},{-11.688, -3.53027, 0.579081},{-8.72437, -3.49414, 0.579082},{-5.19409, -1.15625, 3.91299},{-2.52246, 4.02246, 3.91306},{-11.7957, 3.63379, 3.91306},{-8.79614, 3.57129, 3.91306},{0.246094, 3.5625, 3.91306},{-4.85718, 1.84082, 3.91306},{6.79688, 3.63184, 3.91306},{13.0173, 3.62207, 3.91306},{2.74634, -3.52246, 3.91306},{6.47388, -3.57324, 3.91306},{13.2324, -3.56543, 3.91306},{10.2068, -3.60938, 3.91306},{-11.688, -3.53027, 3.91306},{-8.72437, -3.49414, 3.91306},{-2.67603, -5.52637, 3.9129},{-5.47803, -5.47754, 3.91306},{-12.571, 5.66699, 3.82743},{1.52539, 5.85156, 3.82743},{13.0151, 5.56738, 3.82743},{8.60815, 5.64941, 3.82743},{-8.0498, -2.96875, 7.73989},{-7.94238, 4.33301, 7.53899},{-10.9417, 4.27246, 7.54615},{-11.0132, -2.84766, 7.75703},{-3.51318, -3.02734, 7.73164},{0.239258, 2.94727, 7.69844},{5.69629, -3.12012, 7.7184},{6.52026, 3.02539, 7.68936},{13.1848, -3.37891, 7.68175},{12.9956, 3.25977, 7.66242},{-9.55566, 3.30469, 0.579081},{-11.7957, 3.63379, 0.579083}};
  1780. };
  1781. class Land_Cargo_House_V4_F
  1782. {
  1783. table = "Military";
  1784. positions[] = {{-1.54419, 0.999023, -0.272255},{-1.50879, 3.05518, -0.136219},{1.49829, 3.27637, -0.136219}};
  1785. };
  1786. class Land_Cargo_HQ_V4_F
  1787. {
  1788. table = "Military";
  1789. positions[] = {{-2.38062, 2.84961, -3.28473},{3.62866, 5.22852, -3.16431},{6.25708, 3.00537, -3.28473},{4.15381, -4.32813, -3.28473},{-1.63599, 2.06934, -0.759884},{5.61597, 1.51514, -0.759884},{-1.58765, -3.61523, -0.759884}};
  1790. };
  1791. class Land_Cargo_Patrol_V4_F
  1792. {
  1793. table = "Military";
  1794. positions[] = {{1.19702, -1.0708, -0.55952},{-1.55225, -1.25684, -0.55952}};
  1795. };
  1796. class Land_Cargo_Tower_V4_F
  1797. {
  1798. table = "Military";
  1799. positions[] = {{1.24365, 2.92432, -8.27076},{-3.12207, -3.45801, -0.132563},{-4.18994, 2.93652, -0.132563},{4.13135, 4.40283, 2.46744},{-1.19702, -2.97461, 2.46744},{-4.38403, -5.64014, 2.58785},{-3.04907, 5.84717, 2.58785},{4.70801, -0.943848, 4.99228},{3.79785, 2.89355, 4.99228},{-2.58374, 4.81885, 4.99228},{-3.46924, -4.14063, 4.99228},{0.449951, 1.61523, 4.99228}};
  1800. };
  1801.  
  1802. ///////////////////////////////////////////////////////////////////////////
  1803. // Medical
  1804. ///////////////////////////////////////////////////////////////////////////
  1805.  
  1806.  
  1807. ///////////////////////////////////////////////////////////////////////////
  1808. // VehicleService - Garages
  1809. ///////////////////////////////////////////////////////////////////////////
  1810. class Land_FuelStation_01_workshop_F
  1811. {
  1812. table = "VehicleService";
  1813. positions[] = {{1.55859, 0.491211, -2.38167},{5.323, -0.123047, -2.38166},{3.38965, -3.31152, -2.38166},{-4.86279, 3.44043, -2.38166},{-0.757568, 2.62012, -2.38166},{-1.45166, -1.37207, -2.38166},{-0.297607, -4.38965, -2.38166},{-3.42407, -2.7959, -2.38166},{-4.43384, -1.31934, -2.38166}};
  1814. };
  1815. class Land_FuelStation_02_workshop_F
  1816. {
  1817. table = "VehicleService";
  1818. positions[] = {{4.32983, -1.37402, -1.28247},{0.798584, 0.898438, -1.2825},{0.798828, 3.30762, -1.28248},{3.5061, 10.5254, -1.5024},{-4.67676, 0.318359, -1.20392},{-2.73096, 7.27441, -1.2675},{3.92358, 6.36621, -1.2675}};
  1819. };
  1820. class Land_Warehouse_03_F
  1821. {
  1822. table = "VehicleService";
  1823. positions[] = {{-8.48145, -3.27783, -2.37297},{-8.30518, 2.33496, -2.37297},{4.01001, -0.54541, -2.37297},{0.600586, -3.29736, -2.37297},{-2.61084, 2.81201, -2.37297},{6.88647, 4.00146, 0.128591},{6.11084, 0.941895, 0.134463},{7.76172, -1.81592, 0.139763}};
  1824. };
  1825. class Land_GarageShelter_01_F
  1826. {
  1827. table = "VehicleService";
  1828. positions[] = {{2.66284, 0.1875, -1.26478},{-1.15308, -2.07129, -1.26478},{-3.00488, 2.24219, -1.26478}};
  1829. };
  1830.  
  1831.  
  1832. ///////////////////////////////////////////////////////////////////////////
  1833. // Civillian Lower Class
  1834. ///////////////////////////////////////////////////////////////////////////
  1835. class Land_Addon_01_F
  1836. {
  1837. table = "CivillianLowerClass";
  1838. positions[] = {{-0.0771484, -3.42969, -1.18165},{-0.0510254, 3.45508, -1.18165}};
  1839. };
  1840. class Land_Addon_04_F
  1841. {
  1842. table = "CivillianLowerClass";
  1843. positions[] = {{5.11499, 3.44434, 0.313654},{5.3064, -1.28711, 0.313654},{1.43872, 4.01563, 0.313654},{-3.60425, 4.06055, 0.313654},{-5.37915, -1.30859, 0.315462},{-5.4126, -7.74414, 0.315462},{2.18799, -4.7334, 0.295511},{-2.14502, 0.327148, 0.313654},{-2.03418, -6.08789, 0.295511},{-1.64429, -3.04492, 0.295511}};
  1844. };
  1845. class Land_Shed_01_F
  1846. {
  1847. table = "CivillianLowerClass";
  1848. positions[] = {{-1.63525, 0.723633, -0.930923},{0.366943, 0.666992, -0.930905},{1.9231, 0.618164, -0.930935}};
  1849. };
  1850. class Land_Shed_02_F
  1851. {
  1852. table = "CivillianLowerClass";
  1853. positions[] = {{-0.999512, 0.856445, -0.853717},{1.07373, 1.06934, -0.853717}};
  1854. };
  1855. class Land_House_Native_02_F
  1856. {
  1857. table = "CivillianLowerClass";
  1858. positions[] = {{1.4668, 1.57227, -2.37363},{2.01392, -1.94727, -2.37363},{-3.0769, -2.16211, -2.37363},{-3.13428, 1.90625, -2.37363}};
  1859. };
  1860. class Land_House_Small_01_F
  1861. {
  1862. table = "CivillianLowerClass";
  1863. positions[] = {{-5.15918, 3.30469, -0.725801},{-2.37891, -3.66211, -0.725801},{-0.370605, 3.30078, -0.725801},{-5.71069, -1.92188, -0.725801},{-4.61841, -3.47949, -0.725801},{5.7312, 1.41113, -0.725801},{5.73682, 2.94531, -0.725801},{5.73633, -1.61523, -0.725798},{5.72656, -3.4043, -0.7258},{-0.0686035, 0.75293, -0.725799},{1.62427, 3.29199, -0.725801},{2.38892, 0.566406, -0.725801},{2.44507, -3.60059, -0.725801}};
  1864. };
  1865. class Land_House_Small_02_F
  1866. {
  1867. table = "CivillianLowerClass";
  1868. positions[] = {{0.186768, -3.98535, -0.74064},{-1.48145, -5.63574, -0.74064},{-3.90405, 2.8916, -0.740633},{0.19165, 1.88086, -0.740639},{-1.82813, -2.85156, -0.740639},{-3.19019, -1.54199, -0.74064},{-3.32153, -5.41504, -0.74064},{-3.89648, 5.4873, -0.740639},{-1.49097, 5.86426, -0.740638}};
  1869. };
  1870. class Land_House_Small_03_F
  1871. {
  1872. table = "CivillianLowerClass";
  1873. positions[] = {{-5.6853, 3.47363, -1.34902},{-4.21582, -1.17969, -1.32402},{-0.532227, 3.87305, -1.32402},{1.27075, -0.573242, -1.32402}};
  1874. };
  1875. class Land_House_Small_04_F
  1876. {
  1877. table = "CivillianLowerClass";
  1878. positions[] = {{2.62964, -1.5332, -0.817202},{-1.37061, -3.31543, -0.817202},{-0.413574, 3.04102, -0.817202},{1.30786, -7.03906, -0.87291},{-3.44702, 3.64258, -0.872911}};
  1879. };
  1880. class Land_House_Small_05_F
  1881. {
  1882. table = "CivillianLowerClass";
  1883. positions[] = {{-1.38037, 4.41016, -1.08628},{-0.400635, -0.0605469, -1.08628},{-0.890625, -3.07324, -1.08628}};
  1884. };
  1885. class Land_House_Small_06_F
  1886. {
  1887. table = "CivillianLowerClass";
  1888. positions[] = {{-3.41675, -3.75879, -1.00433},{-3.06567, 0.991211, -1.00433},{0.966064, -2.96387, -1.00433},{-3.22119, 3.95996, -1.00503}};
  1889. };
  1890. class Land_House_Native_01_F
  1891. {
  1892. table = "CivillianLowerClass";
  1893. positions[] = {{-2.04907, -1.64746, -3.13483},{-1.43799, 1.98047, -3.13483},{2.88135, 1.87695, -3.13483},{3.05176, -1.48438, -3.13483}};
  1894. };
  1895. class Land_PierWooden_01_hut_F
  1896. {
  1897. table = "CivillianLowerClass";
  1898. positions[] = {{1.13232, -0.893555, 18.7197}};
  1899. };
  1900. class Land_PierWooden_01_ladder_F
  1901. {
  1902. table = "CivillianLowerClass";
  1903. positions[] = {{0.233887, -0.708008, 19.827}};
  1904. };
  1905. class Land_PierWooden_01_dock_F
  1906. {
  1907. table = "CivillianLowerClass";
  1908. positions[] = {{-4.53687, 0.679688, 17.8678},{-0.218018, -5.85645, 17.8678},{4.63672, 3.60156, 17.8678}};
  1909. };
  1910. class Land_PierWooden_01_platform_F
  1911. {
  1912. table = "CivillianLowerClass";
  1913. positions[] = {{-1.22583, 1.11523, 19.5247},{1.12427, 1.14551, 19.5247}};
  1914. };
  1915. class Land_Shed_03_F
  1916. {
  1917. table = "CivillianLowerClass";
  1918. positions[] = {{2.09058, -0.371094, -0.713204},{-0.305664, 0.0419922, -0.713204}};
  1919. };
  1920. class Land_Shed_04_F
  1921. {
  1922. table = "CivillianLowerClass";
  1923. positions[] = {{0.278076, 0.768555, -0.726258}};
  1924. };
  1925. class Land_Shed_05_F
  1926. {
  1927. table = "CivillianLowerClass";
  1928. positions[] = {{-1.93994, -1.54297, -0.917485},{1.58032, -1.0498, -0.917485}};
  1929. };
  1930. class Land_Shed_07_F
  1931. {
  1932. table = "CivillianLowerClass";
  1933. positions[] = {{2.58154, -0.797852, -1.36388},{2.26782, 0.829102, -1.36387},{-3.31567, -0.990234, -1.36386},{-0.429688, -0.893555, -1.36388}};
  1934. };
  1935. class Land_Slum_01_F
  1936. {
  1937. table = "CivillianLowerClass";
  1938. positions[] = {{3.35571, 2.1416, 0.643513},{2.30029, -0.546875, 0.643514},{1.05811, -1.90234, 0.643514},{-0.150146, 2.13574, 0.643545},{-2.06763, 1.97656, 0.617534},{4.91821, 1.76465, 0.643515},{4.86938, -1.81445, 0.643514},{-0.591309, -0.00878906, 0.643521}};
  1939. };
  1940. class Land_Slum_02_F
  1941. {
  1942. table = "CivillianLowerClass";
  1943. positions[] = {{1.80273, -0.624023, 0.158215},{-0.717529, -2.38379, 0.158216},{2.12402, 3.88965, 0.158215},{2.09155, -3.78711, 0.158216},{1.72144, -1.96387, 0.158216},{-2.06787, 4.17871, 0.158215}};
  1944. };
  1945. class Land_Slum_03_F
  1946. {
  1947. table = "CivillianLowerClass";
  1948. positions[] = {{-2.12012, 7.30469, -0.674455},{-2.55933, 2.12598, -0.674454},{2.83594, 6.05469, -0.651794},{3.9458, 0.943359, -0.651794},{0.0112305, -1.2207, -0.651794},{1.64575, -3.14648, -0.651794}};
  1949. };
  1950. class Land_WaterTower_01_F
  1951. {
  1952. table = "CivillianLowerClass";
  1953. positions[] = {{-0.452148, 0.015625, 3.74843}};
  1954. };
  1955.  
  1956. ///////////////////////////////////////////////////////////////////////////
  1957. // Civillian Upper Class
  1958. ///////////////////////////////////////////////////////////////////////////
  1959. class Land_Hotel_01_F
  1960. {
  1961. table = "CivillianUpperClass";
  1962. positions[] = {{-8.20288, 7.83105, -1.58711},{-2.1604, 7.38281, -1.58712},{3.8728, 7.81836, -1.58711},{6.44751, 4.7998, -1.58711},{6.44751, -1.2334, -1.58711},{-2.1604, -5.81641, -1.58711},{3.8728, -5.81641, -1.58711},{-7.53955, -4.56445, -1.58711},{-7.63403, 0.913086, 1.66289},{6.14624, 7.49121, 4.4886},{6.01196, 0.84668, 4.48859},{0.8479, -5.81641, 4.48865},{6.1189, -5.98535, 4.48865},{-7.40649, -5.82227, 4.4886},{-6.28833, 7.66504, 4.48861},{3.34326, 6.52637, 7.75042},{5.21191, 1.56738, 7.59465},{3.34326, -5, 7.7508},{-6.60034, -5.00488, 7.60001},{-6.61377, -0.413086, 7.5989},{-6.64063, 6.62695, 7.5967},{-2.01831, 6.44531, 7.97652},{-4.02124, 3.88086, -5.31221},{1.14209, 5.27441, -5.31221},{-0.478271, -1.46094, -5.31221},{2.69238, 0.512695, -5.31221}};
  1963. };
  1964. class Land_House_Big_02_F
  1965. {
  1966. table = "CivillianUpperClass";
  1967. positions[] = {{7.26123, -6.65332, -1.4679},{8.78711, -3.17871, -1.46789},{7.34692, 0.493164, -1.46789},{-5.19165, -0.584961, -1.4679},{-7.11353, 3.46484, -1.4679},{-9.80347, 2.98047, -1.46789},{-3.50171, 6.34277, -1.46789},{4.75928, 3.41895, -1.4679},{0.365479, 1.74121, -1.4679},{0.321533, 8.83398, -1.46789},{-3.83179, 8.92773, -1.46789},{2.44434, 6.33105, -1.46789},{6.07397, 5.41016, -1.46789},{4.53271, 8.58008, -1.46789}};
  1968. };
  1969. class Land_House_Big_03_F
  1970. {
  1971. table = "CivillianUpperClass";
  1972. positions[] = {{10.6619, 5.75977, -3.22996},{9.25781, 3.40625, -2.99144},{1.88281, 0.274414, -3.19996},{7.68018, 0.445313, -0.115536},{5.85278, -2.44727, -0.115538},{5.896, 2.80762, -0.115538},{10.7966, 5.81641, -0.136646},{10.7966, -5.22168, -0.136646},{-12.5356, 6.02734, -0.136646},{-13.6335, -5.51855, -0.145912},{4.46899, 3.20898, -3.19996},{9.25879, 3.4082, -3.19996},{-7.49341, -4.64551, -0.136646},{3.17041, 4.95996, -0.136646},{-7.65063, 5.22656, -0.136646},{3.40796, -4.60645, -0.136648},{7.61133, -2.03027, -0.115538},{7.59229, 2.57031, -0.115536},{9.81934, 1.22559, -3.19996},{10.2896, 0.297852, -0.136644},{6.10205, 5.60742, -3.22997},{8.23096, -2.7334, -3.19996}};
  1973. };
  1974. class Land_House_Big_01_F
  1975. {
  1976. table = "CivillianUpperClass";
  1977. positions[] = {{0.581055, 1.07715, -1.03786},{3.76978, 1.45898, -1.03786},{7.10107, 3.50879, -1.03786},{5.354, -0.949219, -1.03786},{7.10107, 0.709961, -1.03786},{2.60303, 5.45996, -1.03786},{1.08838, -1.04297, -1.03786},{-6.92017, -2.47754, -1.03786},{3.1604, 3.23047, -1.03786},{-1.71655, -3.68359, -1.03786},{1.73779, -2.62012, -1.03786},{7.14502, -3.83887, -1.03786},{3.41797, -3.76563, -1.03786}};
  1978. };
  1979. class Land_House_Big_04_F
  1980. {
  1981. table = "CivillianUpperClass";
  1982. positions[] = {{-1.37891, -3.32227, -2.97358},{-3.73853, -4.79199, -2.97358},{-5.98267, -3.32715, -2.97359},{4.17285, -4.86523, -2.97358},{4.1709, -1.88672, -2.97358},{10.072, -7.38672, 0.253304},{1.69922, -7.38672, 0.253298},{-6.56543, -7.38672, 0.253365},{-2.49268, 6.82422, 0.269667},{-8.40747, -3.21582, 0.252121},{-7.91455, 5.04785, 0.255436},{4.07715, 6.31934, 0.263828},{-0.817871, 1.19824, 0.276417},{-5.89087, 2.65234, 0.276417},{-3.69604, 4.36133, 0.276417},{2.28882, 4.45898, 0.276417},{2.63916, 1.19238, 0.276417},{4.17358, 3.16309, 0.276417},{-8.5835, -2.4043, -2.97532},{-8.77393, -7.35254, -2.97424},{-8.0625, 1.89063, -2.97626},{-8.55005, 6.73438, -2.97482},{1.52148, -6.74219, -2.97358},{0.0705566, 6.78711, -2.97553}};
  1983. };
  1984. class Land_House_Big_05_F
  1985. {
  1986. table = "CivillianUpperClass";
  1987. positions[] = {{-2.42017, -4.77539, -1.51147},{4.53735, -5.0459, -1.11731},{-8.91455, -4.73145, -1.51147},{-9.14844, 5.57715, -1.51147},{-2.42065, 5.48828, -1.51147},{4.50073, 5.00781, -1.11731}};
  1988. };
  1989. class Land_School_01_F
  1990. {
  1991. table = "CivillianUpperClass";
  1992. positions[] = {{-12.2412, -1.23535, -1.27842},{-12.1011, 2.86914, -1.27842},{-6.37842, -1.32617, -1.27842},{-2.88672, -1.31543, -1.27842},{0.71582, 0.556641, -1.27842},{11.927, 2.93066, -1.27842},{7.01636, -0.12793, -1.27842},{13.5767, -1.79297, -1.27842}};
  1993. };
  1994.  
  1995. ///////////////////////////////////////////////////////////////////////////
  1996. // Shops
  1997. ///////////////////////////////////////////////////////////////////////////
  1998. class Land_FuelStation_01_shop_F
  1999. {
  2000. table = "Shop";
  2001. positions[] = {{-3.47095, -2.32715, -2.01301},{1.49292, -2.76465, -2.01301},{-3.97681, 4.03711, -2.01301},{0.912842, 2.21191, -2.01301}};
  2002. };
  2003. class Land_GuardHouse_01_F
  2004. {
  2005. table = "Shop";
  2006. positions[] = {{-0.890381, 2.22461, -1.03759},{2.25879, 1.90527, -1.03759},{1.18262, -3.99707, -1.04188},{4.2688, -4.30566, -1.04188},{-1.89941, -0.541016, -1.04188},{-1.66211, -4.21094, -1.04188}};
  2007. };
  2008. class Land_Shop_City_01_F
  2009. {
  2010. table = "Shop";
  2011. positions[] = {{2.4292, 3.38574, -4.955},{1.2439, -0.536621, -4.94684},{5.92114, 2.45996, -4.94911}};
  2012. };
  2013. class Land_Shop_City_02_F
  2014. {
  2015. table = "Shop";
  2016. positions[] = {{2.87964, -6.96094, -4.33675},{3.52344, -3.69141, -4.3368},{7.54688, -3.29297, -4.33673},{-2.46313, -5.58398, -4.33675},{-0.394531, -7.3291, -4.33675},{-9.93286, -6.42188, -4.33675},{-8.23169, -3.64941, -4.33675}};
  2017. };
  2018. class Land_Shop_City_03_F
  2019. {
  2020. table = "Shop";
  2021. positions[] = {{5.67749, -2.68164, -4.96615},{3.79248, 8.09082, -4.96667},{1.88354, -3.96289, -4.96746}};
  2022. };
  2023. class Land_Shop_City_04_F
  2024. {
  2025. table = "Shop";
  2026. positions[] = {{1.2771, 10.0566, 4.17043},{7.14185, 9.99414, 4.17043},{4.28784, 9.86816, 4.17043},{6.50317, 1.44434, 4.17043},{1.27368, 1.37695, 4.17043},{7.23999, 5.65234, 4.17043},{7.2915, 7.69629, 4.17043},{1.28784, 3.91992, 4.17043},{-0.504395, 10.0264, 6.97933},{-6.20288, 9.97656, 6.97932},{-5.91138, 1.75684, 6.97932},{-6.104, 7.68848, 6.97932},{-0.501709, 3.88867, 6.97932},{-5.6123, -0.362305, 6.97932},{-5.93213, -4.22363, 6.97932},{-5.87793, -9.48828, 6.97932},{-3.51074, -9.6748, 6.97932},{1.36377, -1.84863, 6.97932},{-2.06396, -0.0917969, 6.97932},{7.09326, -4.71387, 6.97932},{4.16943, -5.02539, 6.97932},{7.18335, -0.458008, 6.97932},{1.20508, -9.41602, 6.97932},{7.18774, -9.19141, 6.97932},{7.20654, -10.5918, 3.60047},{1.93359, -10.7646, 3.60047},{-1.50293, -10.3926, 3.60047},{-6.23047, -10.5918, 3.60047}};
  2027. };
  2028. class Land_Shop_City_05_F
  2029. {
  2030. table = "Shop";
  2031. positions[] = {{-0.283447, 2.6084, 4.08708},{-5.32642, -12.6162, 7.18407},{5.06274, -10.9531, 7.15172},{0.605469, -4.85449, 7.03372},{0.268311, -1.22461, 6.96352},{7.7915, -6.00879, 7.05611},{9.13062, 2.4502, 4.08708},{4.25415, 5.82715, 4.08708},{-2.11279, 9.05762, 4.08708},{6.97266, 13.6572, 4.08708},{0.479492, 13.2539, 4.08708},{-6.08496, 13.8789, 4.08708},{-8.25366, 10.1318, 4.08708},{-8.55688, -12.0498, 7.17308},{0.14209, -11.0918, -7.28322}};
  2032. };
  2033. class Land_Shop_City_06_F
  2034. {
  2035. table = "Shop";
  2036. positions[] = {{-6.04688, 0.503906, -4.06816},{-3.99438, 7.72363, -4.06839},{-5.10303, -5.04199, -4.06798}};
  2037. };
  2038. class Land_Shop_City_07_F
  2039. {
  2040. table = "Shop";
  2041. positions[] = {{1.10278, 2.13574, 0.00890541},{1.35547, 6.91504, 0.00893593},{-0.679443, 0.248047, 3.60637},{-1.02441, 4.30469, 3.60637},{2.6582, -3.65723, 3.60637},{-0.708984, -6.85547, 3.60637},{-4.04346, -2.99414, 3.60637},{-4.01318, 4.39941, 3.60637},{-3.63501, 7.54883, 3.60637}};
  2042. };
  2043. class Land_Shop_Town_01_F
  2044. {
  2045. table = "Shop";
  2046. positions[] = {{-3.92822, -2.74707, -3.27012},{-3.80103, 0.883789, -3.27011},{-2.52832, -3.63965, -3.27011},{-3.80493, -6.10156, -3.27011},{-0.918213, -5.84473, -3.27011},{4.22827, -6.09766, -3.27011},{-2.00391, 3.82813, -3.27011},{-3.91284, 4.55273, -3.27012},{-1.0105, 0.652344, -3.27011},{0.751221, -2.10352, -3.27011},{2.72095, -3.8457, -3.27011},{3.85083, -2.64551, -3.27011}};
  2047. };
  2048. class Land_Shop_Town_02_F
  2049. {
  2050. table = "Shop";
  2051. positions[] = {{2.99487, -4.95605, -2.14528},{-2.94238, -5.14746, -2.14139}};
  2052. };
  2053. class Land_Shop_Town_03_F
  2054. {
  2055. table = "Shop";
  2056. positions[] = {{-5.88965, -3.25684, -3.12664},{-5.90576, -0.0273438, -3.12665},{5.32275, -1.48535, -3.12776},{0.748779, -1.30957, -3.12776},{0.994385, -4.28027, -3.12776}};
  2057. };
  2058. class Land_Shop_Town_04_F
  2059. {
  2060. table = "Shop";
  2061. positions[] = {{-2.41553, -6.52832, -2.43639},{2.42578, -6.81152, -2.43639}};
  2062. };
  2063. class Land_Shop_Town_05_F
  2064. {
  2065. table = "Shop";
  2066. positions[] = {{-7.17432, -6.53418, -2.72663},{7.25415, -6.73242, -2.72663},{1.95654, -6.69824, -2.72662},{-1.74683, -6.51855, -2.72663}};
  2067. };
  2068. class Land_Supermarket_01_F
  2069. {
  2070. table = "Shop";
  2071. positions[] = {{4.35083, -2.46777, -1.50003},{-0.334473, -6.50879, -1.50003},{-0.251221, -0.452148, -1.50003},{-4.82568, 1.79492, -1.50003},{-4.38794, -5.06836, -1.50003},{7.19556, -1.90137, -1.50003},{1.91138, 1.69434, -1.50003},{-2.32007, -8.67676, -1.50003}};
  2072. };
  2073. class Land_Warehouse_02_F
  2074. {
  2075. table = "Shop";
  2076. positions[] = {{20.1353, 11.1074, 4.53597},{20.1353, -9.1582, 4.53597},{19.5979, -1.66113, 4.53613},{19.5979, 3.98535, 4.53613},{-5.52881, 5.00781, 4.63205},{-7.08691, -8.17188, 4.54425},{-20.0464, 11.1074, 4.54819},{-20.0464, -9.1582, 4.54819},{-19.5269, -1.65527, 4.54803},{-19.5269, 3.99121, 4.54803},{3.19653, 5.10254, 4.6321},{1.84839, -1.40625, 4.54153},{11.4192, 5.10254, 4.63212},{7.40503, -7.6543, 4.53984},{11.2095, -12.8008, -3.94501},{5.47998, -12.2197, -3.94501},{-0.130127, -12.8135, -3.94501},{-3.7085, -12.4531, -3.94501}};
  2077. };
  2078.  
  2079. ///////////////////////////////////////////////////////////////////////////
  2080. // Industrial
  2081. ///////////////////////////////////////////////////////////////////////////
  2082. class Land_Airport_01_hangar_F
  2083. {
  2084. table = "Industrial";
  2085. positions[] = {{9.03003, -9.82813, -2.64558},{12.0889, 13.4424, -2.64558},{-10.1367, -9.1582, -2.64557},{5.88574, 13.7393, -2.64557},{-1.66846, -9.04395, 9.82697},{2.23926, -9.12988, 9.69195},{1.85083, 14.8818, 9.84647},{-1.72559, 14.9346, 9.80423},{-12.675, 14.3945, 5.44739},{12.7019, 14.3379, 5.52713},{12.5813, -8.32715, 5.5752},{-11.5681, -8.43457, 5.88791},{7.02759, 11.5313, 7.88078},{-12.155, 12.8789, 5.65434},{-12.188, 7.26563, 5.64122},{-6.71826, 11.6631, 7.93423},{-12.1636, 0.255859, 5.65096},{-6.75854, 2.82324, 7.9273},{-12.073, -5.24805, 5.687},{13.3979, -5.29395, 5.25013},{6.91626, 2.80078, 7.89974},{-7.02197, -9.43164, 7.69681},{6.95947, -9.37891, 7.81296},{13.6221, -0.296875, 5.16088},{13.4575, 6.87988, 5.22637},{6.99634, -5.94824, 7.88647},{-6.74829, -5.91406, 7.92898},{-12.0376, 11.5723, -2.62052},{2.6521, 1.68652, -2.62057}};
  2086. };
  2087. class Land_Airport_02_hangar_left_F
  2088. {
  2089. table = "Industrial";
  2090. positions[] = {{-12.4209, -24.9082, -1.85819},{-7.03906, -17.4277, -0.645023},{-7.00854, -8.0498, -0.638107},{-6.97998, 1.14063, -0.631704},{-12.4202, -12.9775, -1.85804},{-12.416, -3.68555, -1.85711},{-12.4124, 5.6084, -1.85627},{-12.4209, -22.374, -1.85819},{-1.84839, -10.2188, 2.96794},{-5.51953, -14.9307, 1.87583},{-5.51953, -4.78809, 1.87583},{-5.51953, 5.1543, 1.87584},{-2.79541, 18.9854, 2.68622},{-4.56616, 12.959, 2.15945},{3.58447, -8.81055, 4.5841},{3.58423, 6.24512, 4.58404},{0.876221, -15.1367, 3.77843},{0.876221, 0.0351563, 3.77843},{0.876221, 8.45215, 3.77843},{2.63867, 19.2529, 4.30273},{5.93921, -22.7969, 5.28464},{9.00952, 5.37305, 6.19798},{6.29248, -4.72559, 5.38974},{8.06177, 19.5205, 5.91602},{6.29248, 13.4961, 5.38974},{11.3809, -24.5371, 6.90338},{11.7393, -7.10938, 7.01006},{11.7344, 8.98828, 7.00859},{11.7375, -18.5557, 7.00955},{13.4956, 19.791, 7.53254},{-4.20142, -21.4131, -1.28552},{-4.15698, -17.2041, -0.9673},{-4.15381, -12.2305, -0.945713},{-4.15381, -7.06836, -0.970572},{-4.15942, -2.0752, -0.951628},{-4.14771, 2.85547, -0.980427},{-4.15942, 6.97559, -0.951557},{-4.17969, 11.1748, -0.973799},{-4.15942, 16.6045, -0.951628},{0.163086, 19.9814, -1.28553},{5.12451, 19.6875, -1.28553}};
  2091. };
  2092. class Land_Airport_02_hangar_right_F
  2093. {
  2094. table = "Industrial";
  2095. positions[] = {{4.39331, -25.1045, -0.900631},{10.4124, -15.0947, -1.34333},{7.27393, -12.7598, -0.635839},{9.71753, -10.458, -1.18671},{10.4124, -1.17871, -1.34333},{7.271, 5.80469, -0.635187},{12.71, -3.68457, -1.86125},{12.7129, -22.374, -1.8619},{4.38867, -17.2627, -0.984121},{4.38892, -7.06055, -0.967278},{4.39868, 2.81641, -0.997353},{4.38623, 11.1592, -0.970123},{0.162598, 19.6875, -1.32163},{-10.3376, 19.9814, -1.32163},{-16.4546, 19.6875, -1.32163},{-4.83081, 19.877, -4.72163},{-8.40137, 19.6875, -4.72162},{-15.3335, 19.9814, -4.72163},{7.37769, -12.3145, -4.95163},{2.14453, -10.2188, 3.00035},{5.81641, -14.9297, 1.90639},{5.81641, -4.78711, 1.90639},{5.81641, 5.15527, 1.90639},{3.09253, 18.9854, 2.71792},{4.86206, 12.959, 2.19076},{-3.28833, -8.81055, 4.61879},{-3.28833, 6.24512, 4.61879},{-0.579834, -15.1348, 3.81193},{-0.579834, 0.0371094, 3.81193},{-0.579834, 8.4541, 3.81193},{-2.34253, 19.2549, 4.33709},{-5.64233, -22.7969, 5.32012},{-8.71118, 5.375, 6.23442},{-5.99707, -4.72461, 5.4258},{-7.76514, 19.5234, 5.95251},{-5.99707, 13.4971, 5.4258},{-11.0835, -24.5371, 6.94116},{-17.6074, -13.8564, 8.88466},{-17.6074, 1.31543, 8.88471},{-11.4426, -7.10938, 7.04812},{-11.4392, 8.98828, 7.04716},{-11.4426, -18.5547, 7.04812},{-13.2024, 19.791, 7.57239},{-10.5923, 18.8203, -4.68848},{-14.3291, 18.8438, -1.39008},{-15.3164, 18.5908, -1.32163},{-11.6658, 18.499, -4.05376}};
  2096. };
  2097. class Land_ContainerCrane_01_F
  2098. {
  2099. table = "Industrial";
  2100. positions[] = {{21.9863, 10.7412, -29.7253},{16.7583, 6.07129, 1.22021},{9.33081, 3.04004, 1.2331},{-3.68262, 6.24805, 1.23471},{-12.2251, 7.34277, 1.23625},{-14.718, -1.59375, 1.23302},{-8.86938, -8.3252, 1.23632},{8.94922, -4.05078, 1.2331},{18.71, -3.98828, 1.23309}};
  2101. };
  2102. class Land_Crane_F
  2103. {
  2104. table = "Industrial";
  2105. positions[] = {{-7.68018, -1.75293, 5.74145},{-8.2002, 1.41895, 5.74145},{-10.165, 0.147461, 5.74145}};
  2106. };
  2107. class Land_DryDock_01_end_F
  2108. {
  2109. table = "Industrial";
  2110. positions[] = {{16.4692, 7.59668, 5.13889},{20.4192, -3.24316, 5.13889},{16.4756, -9.06152, 5.2074},{20.5193, -12.4082, 5.13889},{13.2393, 7.88184, -5.54043},{7.13916, 14.9219, -5.54043},{2.26929, -11.4385, -5.54043},{-16.304, 7.58594, 5.13889},{-20.1809, -3.24316, 5.13889},{-19.8108, -7.58203, 5.13889},{-16.3308, -11.7334, 5.17903},{-13.0007, 7.88184, -5.54043},{-1.50073, -2.81836, -5.54043},{-6.90088, 14.9219, -5.54043},{7.03149, -17.3389, -5.54042},{-6.79297, -17.3389, -5.54043}};
  2111. };
  2112. class Land_DryDock_01_middle_F
  2113. {
  2114. table = "Industrial";
  2115. positions[] = {{14.4111, -8.98047, -5.51673},{13.1912, 7.58008, -5.51673},{5.41113, 7.47949, -5.51673},{8.42114, -5.08984, -5.51673},{3.25098, -9.7998, -5.51673},{-13.5889, 8.37988, -5.51673},{-4.98901, 7.43945, -5.51673},{-19.3076, 8.96875, 5.10521},{-17.541, 0.825195, 5.10521},{-11.0889, -8.13965, -5.51673},{17.5417, -9.99805, 5.10564},{17.5461, 0.888672, 5.10564}};
  2116. };
  2117. class Land_GantryCrane_01_F
  2118. {
  2119. table = "Industrial";
  2120. positions[] = {{-2.271, 1.99902, 8.67491},{-2.19482, -2.53613, 8.67491}};
  2121. };
  2122. class Land_HaulTruck_01_abandoned_F
  2123. {
  2124. table = "Industrial";
  2125. positions[] = {{-0.733643, -4.39258, 1.27749},{1.72559, -4.19336, 1.27749}};
  2126. };
  2127. class Land_MiningShovel_01_abandoned_F
  2128. {
  2129. table = "Industrial";
  2130. positions[] = {{5.90039, -8.41406, -0.680836},{5.30249, 0.911133, -0.750746},{1.73145, -7.10645, 4.10613},{-0.78125, -7.8584, 3.78039},{-2.5144, -11.2598, -0.662592}};
  2131. };
  2132. class Land_MobileCrane_01_F
  2133. {
  2134. table = "Industrial";
  2135. positions[] = {{6.61865, 5.51465, -19.4957},{12.4185, 5.52832, -19.4957},{6.77734, 2.48828, -19.1123},{6.82275, 0.642578, -19.1123},{6.76855, -2.50488, -19.1123},{6.61865, -5.69727, -19.4957},{12.4185, -5.68359, -19.4957},{8.16138, -2.75, -14.0492},{14.1155, -2.79102, -14.0492},{13.1208, 2.95801, -14.0492},{8.25806, 2.69824, -14.0492},{9.73926, -3.37109, -8.33325},{7.85254, -3.33691, -8.33325}};
  2136. };
  2137. class Land_MobileCrane_01_hook_F
  2138. {
  2139. table = "Industrial";
  2140. positions[] = {{6.61841, 5.51465, -19.4957},{12.4185, 5.52832, -19.4957},{6.77734, 2.48828, -19.1123},{6.82275, 0.642578, -19.1123},{6.76855, -2.50488, -19.1123},{6.61865, -5.69727, -19.4957},{12.4185, -5.68359, -19.4957},{8.16138, -2.75, -14.0492},{14.1155, -2.79102, -14.0492},{13.1208, 2.95801, -14.0492},{8.25806, 2.69824, -14.0492},{9.73926, -3.37109, -8.33325},{7.85254, -3.33691, -8.33325}};
  2141. };
  2142. class Land_ReservoirTower_F
  2143. {
  2144. table = "Industrial";
  2145. positions[] = {{-1.8457, 1.83105, -1.8427},{1.28613, -3.4502, -1.82695}};
  2146. };
  2147. class Land_SCF_01_chimney_F
  2148. {
  2149. table = "Industrial";
  2150. positions[] = {{-2.90894, -3.98145, -8.22002},{-5.19727, 0.483398, -8.22001},{-2.74243, 3.57422, -8.22002},{1.39404, -2.61523, -8.22002},{-2.94604, -3.01563, 24.2917},{-4.51831, 0.609375, 24.2917},{-2.34399, 2.65234, 24.2917},{1.09497, 2.86914, 24.5735},{0.949951, -1.91992, 24.2917}};
  2151. };
  2152. class Land_SCF_01_clarifier_F
  2153. {
  2154. table = "Industrial";
  2155. positions[] = {{6.31934, 1.11719, -5.07754},{6.35181, -5.78027, -2.05335},{5.80225, 1.04688, 0.371124},{4.8501, 1.52344, 0.371122},{4.57251, -5.60938, -2.05335},{1.25488, -3.93555, 0.371124},{1.25488, 5.8916, 0.371126},{-4.4187, -3.93555, 0.371172},{-4.4187, 5.8916, 0.371126},{-7.25879, 0.977539, 0.371134},{-5.23145, 3.17676, 7.60777},{-5.40259, -1.02637, 7.59169},{-1.8186, -3.29688, 7.60185},{1.91064, -1.34082, 7.60829},{2.08765, 2.9043, 7.62741},{-1.5791, 4.27539, 7.77099}};
  2156. };
  2157. class Land_SCF_01_condenser_F
  2158. {
  2159. table = "Industrial";
  2160. positions[] = {{-7.45361, 12.4902, -1.53951},{-4.16528, 12.1348, -1.55146},{-7.45361, 8.12109, -1.53947},{-4.35181, 8.12012, -1.53409},{-5.70166, 6.4541, -1.55146},{-5.93872, 10.8223, -1.55146},{-5.64185, 9.74805, -1.55146},{4.58057, 3.21387, 1.96246},{2.80396, 0.202148, 1.96246},{6.25342, 0.44043, 1.96246},{4.53931, -1.2666, 1.96246}};
  2161. };
  2162. class Land_SCF_01_crystallizer_F
  2163. {
  2164. table = "Industrial";
  2165. positions[] = {{2.20264, 7.78516, -5.9044},{8.84692, 7.78027, -2.77431},{2.27319, 7.78516, -0.472961},{8.79834, 7.79199, 2.56268},{2.07471, 6.86914, 4.95764},{-0.962646, 5.40723, 4.97862},{-4.38184, 5.43555, 4.9786},{-7.49756, 5.44922, 4.9786},{-0.962402, -1.41113, 4.98178},{-7.49756, -1.36914, 4.98496},{-9.3103, 3.76563, 4.98026},{-9.31396, -0.415039, 4.98437},{-4.08789, -0.424805, 4.9833},{4.40259, 5.44922, 4.97856},{4.40283, -1.36914, 4.97918},{5.99756, 3.74316, 4.97839},{5.98828, -0.450195, 4.97857},{1.42236, 3.75684, 4.9802},{-0.962646, 5.40723, -0.465189},{-7.49756, 5.44922, -0.465189},{-9.37109, 3.75684, -0.465189},{-9.36157, 1.57715, -0.465191},{-4.04639, 3.75684, -0.465189},{1.28687, 0.494141, -0.465189},{5.12744, 3.75684, -0.465189},{1.25757, 1.57129, -0.465189},{5.62524, 5.44922, -0.465189},{5.62524, 0.507813, -0.465189},{8.48071, 3.75684, -0.465189},{8.5022, 1.57129, -0.465189}};
  2166. };
  2167. class Land_SCF_01_crystallizerTowers_F
  2168. {
  2169. table = "Industrial";
  2170. positions[] = {{4.72705, -3.80957, 12.1495},{8.42017, -2.21777, 12.1495},{8.79761, 1.83398, 12.1495},{6.02148, 4.5293, 12.1495},{2.47388, 2.88184, 12.1495},{1.92188, -1.41602, 12.189},{-5.33594, -3.83496, 12.1575},{-1.43774, -2.02148, 12.1575},{-1.31299, 1.89746, 12.5944},{-4.27319, 4.5293, 12.1575},{-7.72998, 2.84473, 12.1575},{-8.40088, -1.15332, 12.1887},{0.365723, 0.235352, 12.1987},{-3.44092, -3.75098, -6.98271},{-0.304688, -3.69727, -6.98271},{1.25513, -2.48535, -6.9827},{-2.46533, -2.5498, -6.98255},{3.07031, -3.72168, -6.98271},{4.90088, -3.61523, -6.98271}};
  2171. };
  2172. class Land_SCF_01_diffuser_F
  2173. {
  2174. table = "Industrial";
  2175. positions[] = {{-8.25195, 23.5225, -2.37402},{-1.9043, 23.3721, -2.37402},{2.28149, 23.7813, -2.37402},{6.88208, 23.6113, -2.37402},{6.71021, 9.92188, -2.37402},{6.87622, 18.3623, -2.37402},{6.83472, 1.33789, -2.37402},{6.87622, -7.25293, -2.37402},{6.34106, -23.2354, 2.33232},{3.65186, -21.8379, 2.33232},{0.114014, -23.5957, 2.35555},{-7.36475, -23.2051, 2.33232},{-4.10059, -21.793, 2.33232},{-5.35229, -12.7754, 4.52572},{1.0542, -14.4561, 4.52572},{4.99634, -17.8154, 4.52572},{3.01147, -18.8594, 4.52572},{2.86426, -12.6387, 4.52572}};
  2176. };
  2177. class Land_SCF_01_feeder_F
  2178. {
  2179. table = "Industrial";
  2180. positions[] = {{4.86865, 12.1465, -3.33626},{0.436523, 17.4316, -3.33626},{-4.55176, 14.5176, -3.33626}};
  2181. };
  2182. class Land_SCF_01_generalBuilding_F
  2183. {
  2184. table = "Industrial";
  2185. positions[] = {{14.334, -0.46582, -4.87007},{14.334, 2.69629, -4.87006},{14.0728, 4.17676, -4.87005},{1.07861, -24.2744, -0.354742},{-4.60767, -24.2568, -0.354109},{-1.45044, -14.6309, -4.84514},{0.82959, -21.9668, -4.84514},{-5.23193, -15.5225, -4.84514},{-5.23193, -20.3779, -4.84514},{0.897949, -16.6621, -4.84514},{-3.10083, -18.3438, -4.84514},{-7.53979, -8.16211, -0.35066},{-5.82178, -5.48535, 7.53344},{-5.82837, 7.19727, 7.57747},{-5.91724, 15.1963, 7.53357},{-6.04443, -11.5645, 7.44203},{1.63818, 17.5078, 11.2323},{1.83838, -11.5645, 11.3045},{-2.40601, 12.165, 9.25619},{1.10352, 2.26465, 10.804},{-4.48413, 1.98926, 8.16404},{1.06665, 20.3691, 10.9818},{-4.50415, 20.6543, 8.2311},{12.0906, -3.14453, 7.41085},{11.71, 2.01367, 7.5915},{12.0908, 7.18945, 7.41079},{11.71, 12.3467, 7.5915},{12.0938, 17.5186, 7.41184},{4.2146, -3.13965, 11.2645},{4.19458, 2.02051, 11.2351},{4.22046, 10.0293, 11.2857},{4.23657, 15.1973, 11.3193},{4.85327, 20.3662, 11.0314},{10.4482, 20.6523, 8.25541},{4.86206, -8.07227, 10.9426},{10.4482, -8.36719, 8.19658},{5.14331, -11.7627, 10.8526},{10.4604, -11.9209, 8.23243},{2.42944, -22.4482, 3.94098},{4.13257, -17.0049, -0.361994}};
  2186. };
  2187. class Land_SCF_01_storageBin_big_F
  2188. {
  2189. table = "Industrial";
  2190. positions[] = {{1.37769, 13.627, 7.90879},{9.89014, 6.30371, 8.00624},{10.1826, -6.13867, 8.00229},{-5.81763, -10.5547, 7.99491},{-11.9951, 1.1416, 7.99358},{-5.48584, 11.04, 7.98675}};
  2191. };
  2192. class Land_SCF_01_storageBin_medium_F
  2193. {
  2194. table = "Industrial";
  2195. positions[] = {{-6.86719, 2.24902, 6.72745},{0.320068, 7.36816, 6.72422},{6.81982, 2.11621, 6.73727},{-2.69751, -6.45508, 6.73897},{2.38794, -6.66699, 6.73858}};
  2196. };
  2197. class Land_SCF_01_storageBin_small_F
  2198. {
  2199. table = "Industrial";
  2200. positions[] = {{-3.10742, 2.34473, 7.31781},{0.0847168, 4.62598, 7.32273},{2.97827, 2.28809, 7.34985},{-1.2583, -1.51563, 7.33663},{1.01611, -1.61035, 7.34604}};
  2201. };
  2202. class Land_SCF_01_warehouse_F
  2203. {
  2204. table = "Industrial";
  2205. positions[] = {{2.38428, 10.7109, 3.95826},{-4.36938, 17.123, 2.78613},{11.988, 15.9063, 3.34447},{9.17725, 5.1377, 4.36988},{9.10986, -5.03711, 4.3945},{0.108398, -5.5459, 3.1112}};
  2206. };
  2207. class Land_SCF_01_washer_F
  2208. {
  2209. table = "Industrial";
  2210. positions[] = {{-4.57568, 8.00684, -1.80085},{3.07935, 9.40527, -1.80085},{6.34424, 6.25488, -1.80085},{5.36182, 2.12109, -1.74189},{6.32837, -1.6582, -1.80085},{5.3855, -5.95801, -1.69704},{-1.10571, 7.36523, -1.80085},{-5.48535, 5.35352, -1.80085},{-6.25439, 2.28418, -1.80086},{-5.21948, -1.6582, -1.80085},{-6.37622, -5.96875, -1.80085},{-5.26172, -11.3262, -1.73402},{-0.0224609, 1.28223, 2.17754},{-4.55737, 1.30859, 2.1776},{-6.23975, 6.87695, 2.1776},{6.92871, 4.69336, 2.1776}};
  2211. };
  2212. class Land_SM_01_reservoirTower_F
  2213. {
  2214. table = "Industrial";
  2215. positions[] = {{-2.59717, 0.891602, -1.99113},{1.46973, -3.23242, -1.98599},{0.704834, 2.8623, -2.00094}};
  2216. };
  2217. class Land_SM_01_shed_F
  2218. {
  2219. table = "Industrial";
  2220. positions[] = {{-7.63892, 0.208984, -1.59421},{-7.74121, 4.16016, -1.59421},{1.08545, 2.70996, -1.59421},{-3.43799, -0.211914, -1.59421},{-6.10669, 6.38477, -1.59421},{5.42358, 4.74316, -1.59421},{4.89355, -0.0634766, -1.59421},{10.5295, 1.25781, -1.59421},{14.3044, 2.56445, -1.59421},{14.6626, -1.02832, -1.59421}};
  2221. };
  2222. class Land_SM_01_shed_unfinished_F
  2223. {
  2224. table = "Industrial";
  2225. positions[] = {{-7.58374, 0.210938, -1.64209},{-7.68628, 4.16211, -1.64209},{1.14063, 2.71191, -1.64209},{-3.38281, -0.208984, -1.64209},{-6.05151, 6.3877, -1.64209},{5.47876, 4.74512, -1.64209},{4.94849, -0.0615234, -1.64209},{10.5845, 1.25977, -1.64209},{14.3594, 2.56738, -1.64209},{14.7175, -1.02539, -1.64209}};
  2226. };
  2227. class Land_StorageTank_01_large_F
  2228. {
  2229. table = "Industrial";
  2230. positions[] = {{-5.26636, -8.7168, 0.685705},{7.5376, -8.96484, 0.685705},{9.66333, -14.584, 1.25553},{-9.50464, -14.8418, 1.24478},{-17.2966, 3.29102, 1.2443},{-3.35693, 17.2061, 1.25514},{2.25879, 9.52734, 0.685705}};
  2231. };
  2232. class Land_StorageTank_01_small_F
  2233. {
  2234. table = "Industrial";
  2235. positions[] = {{-0.796387, 0.594727, 4.88818},{-6.31348, 3.91211, 3.66358},{2.63135, 7.28418, 3.60974},{7.54492, -2.71191, 3.30923},{-3.45142, -8.1748, 2.89969}};
  2236. };
  2237. class Land_SY_01_conveyor_end_F
  2238. {
  2239. table = "Industrial";
  2240. positions[] = {{-0.00488281, 2.75, 5.24897},{-1.54126, -0.825195, 5.24897}};
  2241. };
  2242. class Land_SY_01_crusher_F
  2243. {
  2244. table = "Industrial";
  2245. positions[] = {{8.23657, 6.33301, -1.09768},{7.81909, 16.5752, -1.08356},{-2.04224, 16.8691, -1.09297},{-7.8064, 8.47754, -1.08161},{2.10229, 14.3193, 11.3212},{6.33032, 4.37402, 11.7734},{-3.43262, 3.04688, 11.8368},{-7.92847, 9.2002, 11.5554},{0.595947, 8.41211, 11.5916}};
  2246. };
  2247. class Land_SY_01_reclaimer_F
  2248. {
  2249. table = "Industrial";
  2250. positions[] = {{-14.1489, 2.63379, -2.28311},{-14.2458, 5.48145, -2.28683},{-13.6816, 1.11719, -2.28615},{-11.7661, -0.139648, -2.28826},{-14.9082, 1.87012, -1.96475}};
  2251. };
  2252. class Land_SY_01_shiploader_arm_F
  2253. {
  2254. table = "Industrial";
  2255. positions[] = {{-4.59619, 2.30664, 0.389979},{10.1455, 2.12012, 0.389979},{14.0559, -2.29004, 0.389979},{-0.133545, -2.05566, 0.389979}};
  2256. };
  2257. class Land_SY_01_shiploader_F
  2258. {
  2259. table = "Industrial";
  2260. positions[] = {{20.2991, 5.68164, -2.65544},{21.0994, 3.10059, 4.28977},{6.71289, 1.40137, 3.15136},{-3.97119, 1.40234, 3.09128},{-14.6008, 1.36523, 3.04038},{-21.2002, 0.898438, 5.34398},{6.71411, -2.24316, 3.08376},{-3.96802, -2.23438, 3.02955},{-14.6001, -2.16406, 3.02285},{-20.8071, -1.34668, 5.3525}};
  2261. };
  2262. class Land_TTowerBig_1_F
  2263. {
  2264. table = "Industrial";
  2265. positions[] = {{1.86597, -0.705078, 2.92152},{0.969727, 1.45703, 2.93679},{-1.77271, 1.64063, 2.94032},{-0.356689, -2.06641, 2.9476}};
  2266. };
  2267. class Land_Walkover_01_F
  2268. {
  2269. table = "Industrial";
  2270. positions[] = {{0.026123, 0.611328, 1.36034}};
  2271. };
  2272.  
  2273. ///////////////////////////////////////////////////////////////////////////
  2274. // Factories
  2275. ///////////////////////////////////////////////////////////////////////////
  2276. class Land_DPP_01_mainFactory_F
  2277. {
  2278. table = "Factories";
  2279. positions[] = {{-21.6887, 4.69238, -8.67055},{-21.6733, -14.5742, -8.68732},{-19.5613, -8.34766, -4.42347},{0.0639648, -5.23926, 1.12253},{0.453125, -14.0039, 1.12253},{-7.25708, -15.957, 1.12253},{-8.34741, -9.97949, 1.12253},{-7.28394, 3.64258, 1.12253},{3.70215, 9.25879, 1.12253},{7.29419, 5.17871, -0.317474},{8.38037, -7.69629, -0.317478},{8.1936, -14.2451, -0.317478},{12.5447, -1.97852, -4.25747},{13.1741, 1.39941, -4.25747},{12.9707, 4.99414, -4.25747},{17.3352, -1.26465, -5.51371},{16.3391, -11.3018, -4.07347},{16.1682, -7.34863, -4.07347},{14.2576, -17.1299, -4.07347},{20.6343, -4.13281, -7.43347},{18.5691, 5.11328, -7.64927}};
  2280. };
  2281. class Land_DPP_01_smallFactory_F
  2282. {
  2283. table = "Factories";
  2284. positions[] = {{9.78833, -1.48145, 1.69896},{-1.29395, 3.17383, 3.0918},{-8.48071, -4.74707, 3.28734},{2.12598, -5.53613, 3.2094},{6.54004, 0.380859, 3.26465}};
  2285. };
  2286. class Land_SCF_01_boilerBuilding_F
  2287. {
  2288. table = "Factories";
  2289. positions[] = {{19.9551, 13.1162, -13.218},{21.5356, 1.60742, -13.218},{11.6555, 4.40039, -13.218},{13.1863, 12.2744, -13.218},{18.5403, 11.7012, -8.65283},{21.9075, 0.967773, -8.67283},{12.26, -8.82227, -5.55016},{8.29736, -21.2119, 0.826183},{4.57446, -14.8301, 1.65308},{5.99463, -12.5732, 1.36908},{5.23267, -5.7373, 1.49743},{4.57446, -4.2998, 1.63667},{5.99414, -2.46094, 1.34452},{10.4329, -0.328125, 0.421211},{21.0168, 9.04688, -16.6483},{-4.15381, -14.8213, 1.55791},{-4.17993, -13.3525, 1.56871},{-5.60059, -12.583, 1.30381},{-9.26074, -0.237305, 0.512077},{-4.14819, -4.30078, 1.61219},{-5.60522, -2.44141, 1.27797},{-4.01392, 9.2998, 7.56076},{4.7417, 1.46777, 7.63056},{-3.20605, 3.65332, 7.73126},{3.93311, 6.58203, 7.81587},{9.89307, 10.834, 0.533249},{4.55322, 15.792, 1.64978},{6.08081, 15.3867, 1.32867},{4.28442, 16.8301, 1.70323},{8.29419, 20.9619, 0.847332},{-9.09326, 10.5137, 0.533012},{-5.5918, 15.3896, 1.23261},{-3.76025, 16.832, 1.60073},{-4.81055, 18.3252, 1.37109},{-12.2722, 20.1699, -4.55378},{-17.0876, -14.2314, -3.77558},{-17.0906, -10.9219, -3.76845},{-10.5383, -17.9766, -5.09464},{-12.7368, -2.11035, -4.39582},{-13.4448, 7.83496, -4.15535},{-10.5427, -21.3369, -5.09303},{-1.83618, 23.6367, -13.188}};
  2290. };
  2291. };
  2292. class CfgLootTablesCfgLootTables
  2293. {
  2294. /**
  2295. Result of 100 rounds:
  2296.  
  2297. Exile_Item_PlasticBottleDirtyWater
  2298. 30Rnd_45ACP_Mag_SMG_01
  2299. 10Rnd_9x21_Mag
  2300. Chemlight_blue
  2301. Exile_Item_MountainDupe
  2302. Exile_Item_Heatpack
  2303. Exile_Item_DsNuts
  2304. Exile_Item_Can_Empty
  2305. optic_Aco_smg
  2306. Exile_Item_PlasticBottleEmpty
  2307. Exile_Item_ToiletPaper
  2308. H_Hat_tan
  2309. U_C_Man_casual_1_F
  2310. muzzle_snds_acp
  2311. Exile_Item_Dogfood
  2312. U_I_C_Soldier_Bandit_4_F
  2313. ItemWatch
  2314. H_Cap_red
  2315. Exile_Item_Heatpack
  2316. H_Cap_headphones
  2317. V_Press_F
  2318. H_Cap_tan
  2319. H_Hat_brown
  2320. hgun_Pistol_Signal_F
  2321. ItemRadio
  2322. H_Cap_press
  2323. Exile_Item_Noodles
  2324. Exile_Item_Can_Empty
  2325. Exile_Item_Dogfood
  2326. Exile_Item_Magazine03
  2327. U_C_Poloshirt_blue
  2328. Exile_Item_Magazine03
  2329. V_Press_F
  2330. U_NikosAgedBody
  2331. Exile_Item_Can_Empty
  2332. H_Cap_tan
  2333. Chemlight_red
  2334. U_C_Scientist
  2335. FlareWhite_F
  2336. V_TacVest_blk_POLICE
  2337. Exile_Item_PlasticBottleEmpty
  2338. Chemlight_red
  2339. Exile_Item_Cheathas
  2340. 30Rnd_9x21_Mag
  2341. B_OutdoorPack_blu
  2342. H_Hat_brown
  2343. Exile_Item_BBQSandwich
  2344. B_HuntingBackpack
  2345. Exile_Item_PlasticBottleEmpty
  2346. Exile_Item_ToiletPaper
  2347. 30Rnd_45ACP_Mag_SMG_01_Tracer_Green
  2348. Exile_Item_SeedAstics
  2349. Exile_Item_GloriousKnakworst
  2350. FlareWhite_F
  2351. Exile_Item_DsNuts
  2352. SMG_02_F
  2353. Exile_Item_Magazine02
  2354. Exile_Item_Can_Empty
  2355. B_AssaultPack_sgg
  2356. U_C_Man_casual_5_F
  2357. B_AssaultPack_khk
  2358. Exile_Item_Surstromming
  2359. V_TacVest_blk_POLICE
  2360. muzzle_snds_L
  2361. Exile_Item_Heatpack
  2362. H_Cap_blk_Raven
  2363. Exile_Item_ToiletPaper
  2364. U_C_Man_casual_1_F
  2365. H_StrawHat
  2366. Exile_Magazine_6Rnd_45ACP
  2367. U_C_Poor_shorts_1
  2368. hgun_PDW2000_F
  2369. Exile_Item_PlasticBottleDirtyWater
  2370. hgun_P07_F
  2371. muzzle_snds_L
  2372. ItemMap
  2373. Exile_Item_ToiletPaper
  2374. U_C_Poor_1
  2375. Exile_Weapon_M1014
  2376. U_C_Poloshirt_salmon
  2377. Exile_Item_Can_Empty
  2378. U_C_Poor_2
  2379. hgun_Pistol_heavy_02_F
  2380. Exile_Item_Surstromming
  2381. Exile_Item_Raisins
  2382. Exile_Item_Magazine01
  2383. hgun_PDW2000_F
  2384. FlareYellow_F
  2385. H_Cap_press
  2386. Exile_Item_Heatpack
  2387. Chemlight_yellow
  2388. FlareGreen_F
  2389. B_AssaultPack_blk
  2390. Exile_Item_Raisins
  2391. H_Beret_blk_POLICE
  2392. U_C_Poor_shorts_1
  2393. U_C_Poor_2
  2394. U_I_C_Soldier_Bandit_2_F
  2395. muzzle_snds_acp
  2396. Exile_Item_ToiletPaper
  2397. */
  2398. class CivillianLowerClass
  2399. {
  2400. count = 161;
  2401. half = 7481.25369930428;
  2402. halfIndex = 80;
  2403. sum = 10000;
  2404. items[] =
  2405. {
  2406. {398.936170212766, "Exile_Item_Can_Empty"}, // 3.99%
  2407. {797.872340425532, "Exile_Item_ToiletPaper"}, // 3.99%
  2408. {1196.8085106383, "Exile_Item_PlasticBottleEmpty"}, // 3.99%
  2409. {1409.57446808511, "Exile_Weapon_M1014"}, // 2.13%
  2410. {1569.14893617021, "Exile_Magazine_8Rnd_74Slug"}, // 1.60%
  2411. {1702.12765957447, "FlareRed_F"}, // 1.33%
  2412. {1835.10638297872, "FlareGreen_F"}, // 1.33%
  2413. {1968.08510638298, "Chemlight_yellow"}, // 1.33%
  2414. {2101.06382978723, "Chemlight_red"}, // 1.33%
  2415. {2234.04255319149, "Chemlight_green"}, // 1.33%
  2416. {2367.02127659574, "Chemlight_blue"}, // 1.33%
  2417. {2500, "V_Rangemaster_belt"}, // 1.33%
  2418. {2632.97872340425, "FlareWhite_F"}, // 1.33%
  2419. {2765.95744680851, "FlareYellow_F"}, // 1.33%
  2420. {2893.61702127659, "Exile_Item_PlasticBottleDirtyWater"}, // 1.28%
  2421. {3011.82033096927, "Exile_Item_Heatpack"}, // 1.18%
  2422. {3125.59101654846, "Exile_Item_InstantCoffee"}, // 1.14%
  2423. {3231.97399527187, "Exile_Item_ChocolateMilk"}, // 1.06%
  2424. {3335.40189125295, "ItemMap"}, // 1.03%
  2425. {3435.13593380615, "Exile_Item_Magazine04"}, // 1.00%
  2426. {3534.86997635934, "Exile_Item_Magazine03"}, // 1.00%
  2427. {3634.60401891253, "Exile_Item_Magazine02"}, // 1.00%
  2428. {3734.33806146572, "Exile_Item_Magazine01"}, // 1.00%
  2429. {3827.4231678487, "Exile_Item_Raisins"}, // 0.93%
  2430. {3920.50827423168, "Exile_Item_Moobar"}, // 0.93%
  2431. {4009.16075650118, "ItemRadio"}, // 0.89%
  2432. {4097.81323877069, "ItemWatch"}, // 0.89%
  2433. {4182.91962174941, "Exile_Item_MountainDupe"}, // 0.85%
  2434. {4265.66193853428, "Exile_Item_CockONut"}, // 0.83%
  2435. {4348.40425531915, "Exile_Item_SeedAstics"}, // 0.83%
  2436. {4420.80378250591, "Exile_Item_Surstromming"}, // 0.72%
  2437. {4493.20330969267, "Exile_Item_ChristmasTinner"}, // 0.72%
  2438. {4565.60283687943, "Exile_Item_SausageGravy"}, // 0.72%
  2439. {4638.0023640662, "Exile_Item_Noodles"}, // 0.72%
  2440. {4710.40189125296, "Exile_Item_DsNuts"}, // 0.72%
  2441. {4782.80141843972, "Exile_Item_Cheathas"}, // 0.72%
  2442. {4855.20094562648, "Exile_Item_BeefParts"}, // 0.72%
  2443. {4927.60047281324, "Exile_Item_Dogfood"}, // 0.72%
  2444. {5000, "Exile_Item_CatFood"}, // 0.72%
  2445. {5072.39952718677, "Exile_Item_BBQSandwich"}, // 0.72%
  2446. {5144.79905437353, "Exile_Item_MacasCheese"}, // 0.72%
  2447. {5217.13947990544, "Exile_Item_EnergyDrink"}, // 0.72%
  2448. {5283.62884160757, "V_Press_F"}, // 0.66%
  2449. {5350.1182033097, "V_TacVest_blk_POLICE"}, // 0.66%
  2450. {5413.94799054374, "H_Cap_press"}, // 0.64%
  2451. {5477.77777777778, "H_Cap_red"}, // 0.64%
  2452. {5541.60756501183, "H_Cap_tan"}, // 0.64%
  2453. {5605.43735224587, "H_Hat_blue"}, // 0.64%
  2454. {5669.26713947991, "H_StrawHat_dark"}, // 0.64%
  2455. {5733.09692671395, "H_Hat_checker"}, // 0.64%
  2456. {5796.926713948, "H_Hat_grey"}, // 0.64%
  2457. {5860.75650118204, "H_Hat_tan"}, // 0.64%
  2458. {5924.58628841608, "H_StrawHat"}, // 0.64%
  2459. {5988.41607565012, "H_Hat_brown"}, // 0.64%
  2460. {6050.47281323878, "Exile_Item_GloriousKnakworst"}, // 0.62%
  2461. {6110.04728132388, "Exile_Item_Beer"}, // 0.60%
  2462. {6169.14893617022, "Binocular"}, // 0.59%
  2463. {6228.25059101655, "ItemGPS"}, // 0.59%
  2464. {6285.69739952719, "muzzle_snds_L"}, // 0.57%
  2465. {6343.14420803783, "muzzle_snds_acp"}, // 0.57%
  2466. {6399.1352494712, "U_C_Journalist"}, // 0.56%
  2467. {6455.12629090457, "U_Rangemaster"}, // 0.56%
  2468. {6511.11733233794, "U_C_HunterBody_grn"}, // 0.56%
  2469. {6567.10837377131, "U_C_Poor_shorts_1"}, // 0.56%
  2470. {6623.09941520469, "U_C_Scientist"}, // 0.56%
  2471. {6679.09045663806, "U_C_Poor_2"}, // 0.56%
  2472. {6735.08149807143, "U_C_Poor_1"}, // 0.56%
  2473. {6789.76433760215, "B_OutdoorPack_blk"}, // 0.55%
  2474. {6844.15563499457, "SMG_01_F"}, // 0.54%
  2475. {6897.34712435627, "H_Bandanna_surfer"}, // 0.53%
  2476. {6950.53861371797, "H_Beret_blk_POLICE"}, // 0.53%
  2477. {7003.73010307967, "H_Cap_blk"}, // 0.53%
  2478. {7056.92159244137, "H_Cap_blu"}, // 0.53%
  2479. {7110.11308180308, "H_Cap_grn"}, // 0.53%
  2480. {7163.30457116478, "H_Cap_headphones"}, // 0.53%
  2481. {7216.49606052648, "H_Cap_blk_Raven"}, // 0.53%
  2482. {7269.68754988818, "Exile_Item_ZipTie"}, // 0.53%
  2483. {7322.87903924989, "H_Cap_oli"}, // 0.53%
  2484. {7375.67059260135, "SMG_02_F"}, // 0.53%
  2485. {7428.46214595281, "SMG_05_F"}, // 0.53%
  2486. {7481.25369930428, "hgun_PDW2000_F"}, // 0.53%
  2487. {7532.96764729482, "Exile_Item_CanOpener"}, // 0.52%
  2488. {7584.68159528536, "Exile_Item_Matches"}, // 0.52%
  2489. {7635.7454250726, "Exile_Item_PlasticBottleFreshWater"}, // 0.51%
  2490. {7685.9486285151, "hgun_P07_F"}, // 0.50%
  2491. {7735.16318409275, "B_OutdoorPack_tan"}, // 0.49%
  2492. {7784.3777396704, "B_OutdoorPack_blu"}, // 0.49%
  2493. {7832.19031437755, "hgun_Rook40_F"}, // 0.48%
  2494. {7880.0028890847, "hgun_ACPC2_F"}, // 0.48%
  2495. {7923.74916070928, "B_HuntingBackpack"}, // 0.44%
  2496. {7967.29774849079, "U_C_Poloshirt_burgundy"}, // 0.44%
  2497. {8010.8463362723, "U_C_Poloshirt_blue"}, // 0.44%
  2498. {8054.39492405381, "U_C_Poloshirt_salmon"}, // 0.44%
  2499. {8097.94351183532, "U_C_Poloshirt_tricolour"}, // 0.44%
  2500. {8141.49209961683, "U_C_Poloshirt_stripped"}, // 0.44%
  2501. {8179.77008728833, "B_AssaultPack_tna_F"}, // 0.38%
  2502. {8218.04807495984, "B_AssaultPack_mcamo"}, // 0.38%
  2503. {8256.32606263134, "B_AssaultPack_cbr"}, // 0.38%
  2504. {8294.60405030285, "B_AssaultPack_blk"}, // 0.38%
  2505. {8332.88203797435, "B_AssaultPack_sgg"}, // 0.38%
  2506. {8371.16002564586, "B_AssaultPack_rgr"}, // 0.38%
  2507. {8409.43801331736, "B_AssaultPack_dgtl"}, // 0.38%
  2508. {8447.71600098887, "B_AssaultPack_khk"}, // 0.38%
  2509. {8478.82213511852, "U_C_Man_casual_1_F"}, // 0.31%
  2510. {8509.92826924817, "U_I_C_Soldier_Bandit_1_F"}, // 0.31%
  2511. {8541.03440337782, "U_I_C_Soldier_Bandit_2_F"}, // 0.31%
  2512. {8572.14053750747, "U_C_man_sport_3_F"}, // 0.31%
  2513. {8603.24667163712, "U_I_C_Soldier_Bandit_4_F"}, // 0.31%
  2514. {8634.35280576677, "U_I_C_Soldier_Bandit_5_F"}, // 0.31%
  2515. {8665.45893989642, "U_C_man_sport_1_F"}, // 0.31%
  2516. {8696.56507402607, "U_C_man_sport_2_F"}, // 0.31%
  2517. {8727.67120815572, "U_I_C_Soldier_Bandit_3_F"}, // 0.31%
  2518. {8758.77734228537, "U_C_Man_casual_6_F"}, // 0.31%
  2519. {8789.88347641502, "U_C_Man_casual_5_F"}, // 0.31%
  2520. {8820.98961054467, "U_C_Man_casual_4_F"}, // 0.31%
  2521. {8852.09574467432, "U_C_Man_casual_3_F"}, // 0.31%
  2522. {8883.20187880397, "U_C_Man_casual_2_F"}, // 0.31%
  2523. {8914.28005236361, "Exile_Weapon_Makarov"}, // 0.31%
  2524. {8945.35822592326, "hgun_Pistol_01_F"}, // 0.31%
  2525. {8976.43639948291, "Exile_Weapon_TaurusGold"}, // 0.31%
  2526. {9007.51457304255, "Exile_Weapon_Taurus"}, // 0.31%
  2527. {9038.5927466022, "Exile_Weapon_Colt1911"}, // 0.31%
  2528. {9069.67092016185, "hgun_P07_khk_F"}, // 0.31%
  2529. {9100.74909372149, "hgun_Pistol_heavy_01_F"}, // 0.31%
  2530. {9131.82726728114, "hgun_Pistol_heavy_02_F"}, // 0.31%
  2531. {9162.90544084079, "hgun_Pistol_Signal_F"}, // 0.31%
  2532. {9193.93380963511, "Exile_Item_CookingPot"}, // 0.31%
  2533. {9224.96217842944, "Exile_Item_EMRE"}, // 0.31%
  2534. {9254.74941247199, "Exile_Item_PowerDrink"}, // 0.30%
  2535. {9284.30023989516, "11Rnd_45ACP_Mag"}, // 0.30%
  2536. {9313.85106731833, "30Rnd_9x21_Mag"}, // 0.30%
  2537. {9343.40189474149, "Exile_Magazine_7Rnd_45ACP"}, // 0.30%
  2538. {9372.95272216466, "Exile_Magazine_8Rnd_9x18"}, // 0.30%
  2539. {9402.50354958783, "10Rnd_9x21_Mag"}, // 0.30%
  2540. {9432.05437701099, "Exile_Magazine_6Rnd_45ACP"}, // 0.30%
  2541. {9461.60520443416, "9Rnd_45ACP_Mag"}, // 0.30%
  2542. {9488.94662419952, "B_Kitbag_sgg"}, // 0.27%
  2543. {9516.28804396488, "B_Kitbag_cbr"}, // 0.27%
  2544. {9543.62946373024, "B_Kitbag_mcamo"}, // 0.27%
  2545. {9570.22520841109, "optic_ACO_grn_smg"}, // 0.27%
  2546. {9596.82095309194, "optic_Aco"}, // 0.27%
  2547. {9623.4166977728, "30Rnd_45ACP_Mag_SMG_01"}, // 0.27%
  2548. {9650.01244245365, "30Rnd_45ACP_Mag_SMG_01_Tracer_Green"}, // 0.27%
  2549. {9676.6081871345, "optic_Holosight_smg"}, // 0.27%
  2550. {9703.20393181535, "optic_Aco_smg"}, // 0.27%
  2551. {9729.7996764962, "optic_Holosight_smg_blk_F"}, // 0.27%
  2552. {9756.39542117705, "optic_ACO_grn"}, // 0.27%
  2553. {9782.99116585791, "30Rnd_9x21_Mag_SMG_02_Tracer_Green"}, // 0.27%
  2554. {9809.58691053876, "30Rnd_9x21_Mag_SMG_02"}, // 0.27%
  2555. {9836.18265521961, "30Rnd_9x21_Mag_SMG_02_Tracer_Yellow"}, // 0.27%
  2556. {9862.77839990046, "30Rnd_9x21_Mag_SMG_02_Tracer_Red"}, // 0.27%
  2557. {9886.41906183899, "6Rnd_45ACP_Cylinder"}, // 0.24%
  2558. {9908.75948737091, "optic_MRD"}, // 0.22%
  2559. {9931.09991290282, "optic_Yorris"}, // 0.22%
  2560. {9945.87532661441, "16Rnd_9x21_Mag"}, // 0.15%
  2561. {9960.65074032599, "Exile_Item_MobilePhone"}, // 0.15%
  2562. {9970.9935299241, "6Rnd_RedSignal_F"}, // 0.10%
  2563. {9981.33631952221, "6Rnd_GreenSignal_F"}, // 0.10%
  2564. {9987.55754634814, "U_OrestesBody"}, // 0.06%
  2565. {9993.77877317407, "U_NikosBody"}, // 0.06%
  2566. {10000, "U_NikosAgedBody"} // 0.06%
  2567. };
  2568. };
  2569.  
  2570. /**
  2571. Result of 100 rounds:
  2572.  
  2573. H_Cap_blk
  2574. Chemlight_blue
  2575. H_Hat_brown
  2576. B_AssaultPack_mcamo
  2577. H_Cap_red
  2578. SMG_02_F
  2579. 20Rnd_556x45_UW_mag
  2580. optic_Holosight_smg
  2581. Chemlight_yellow
  2582. Exile_Item_Can_Empty
  2583. U_C_Man_casual_3_F
  2584. FlareYellow_F
  2585. Exile_Item_Magazine03
  2586. Exile_Item_PlasticBottleEmpty
  2587. H_Hat_grey
  2588. SMG_01_F
  2589. Exile_Item_InstantCoffee
  2590. Exile_Item_ToiletPaper
  2591. Chemlight_blue
  2592. Exile_Item_Matches
  2593. U_C_Poor_shorts_1
  2594. Exile_Item_InstantCoffee
  2595. Exile_Item_Matches
  2596. Exile_Item_InstantCoffee
  2597. Exile_Item_BBQSandwich
  2598. B_OutdoorPack_blk
  2599. Exile_Item_ToiletPaper
  2600. U_C_Man_casual_1_F
  2601. U_OrestesBody
  2602. Exile_Item_InstantCoffee
  2603. Exile_Item_Dogfood
  2604. H_Cap_blk
  2605. Exile_Weapon_TaurusGold
  2606. Exile_Item_Can_Empty
  2607. Exile_Item_SeedAstics
  2608. Exile_Item_PlasticBottleEmpty
  2609. 30Rnd_9x21_Mag_SMG_02_Tracer_Red
  2610. Exile_Item_ToiletPaper
  2611. muzzle_snds_acp
  2612. V_Press_F
  2613. FlareWhite_F
  2614. Exile_Weapon_Colt1911
  2615. ItemRadio
  2616. Exile_Item_BeefParts
  2617. Exile_Item_PlasticBottleEmpty
  2618. SMG_02_F
  2619. B_Kitbag_cbr
  2620. Exile_Item_Cheathas
  2621. U_I_C_Soldier_Bandit_1_F
  2622. Chemlight_blue
  2623. SMG_02_F
  2624. Exile_Item_Can_Empty
  2625. Exile_Item_Can_Empty
  2626. Exile_Magazine_8Rnd_74Slug
  2627. B_OutdoorPack_tan
  2628. Exile_Item_MountainDupe
  2629. Exile_Item_CatFood
  2630. Exile_Item_PlasticBottleDirtyWater
  2631. Exile_Item_Moobar
  2632. hgun_Pistol_01_F
  2633. H_Cap_blk_Raven
  2634. Exile_Magazine_8Rnd_74Slug
  2635. optic_Arco_blk_F
  2636. optic_Holosight_smg
  2637. H_Hat_blue
  2638. Exile_Magazine_8Rnd_74Slug
  2639. Exile_Item_Magazine01
  2640. Exile_Item_Heatpack
  2641. H_Cap_blu
  2642. Exile_Item_BeefParts
  2643. Exile_Item_Matches
  2644. FlareGreen_F
  2645. Exile_Item_BeefParts
  2646. H_Cap_oli
  2647. Exile_Item_DsNuts
  2648. U_C_Poloshirt_blue
  2649. 10Rnd_9x21_Mag
  2650. FlareRed_F
  2651. Chemlight_red
  2652. B_OutdoorPack_tan
  2653. B_OutdoorPack_blu
  2654. Exile_Item_Beer
  2655. Exile_Item_Can_Empty
  2656. B_AssaultPack_cbr
  2657. ItemGPS
  2658. Exile_Item_ChristmasTinner
  2659. H_Beret_blk_POLICE
  2660. Exile_Item_CanOpener
  2661. Exile_Item_ChocolateMilk
  2662. Exile_Item_Can_Empty
  2663. SMG_01_F
  2664. H_Cap_grn
  2665. H_Cap_blu
  2666. hgun_P07_F
  2667. U_C_man_sport_2_F
  2668. Exile_Item_PlasticBottleEmpty
  2669. Exile_Magazine_6Rnd_45ACP
  2670. Exile_Item_DsNuts
  2671. 30Rnd_9x21_Mag_SMG_02_Tracer_Green
  2672. 6Rnd_GreenSignal_F
  2673. */
  2674. class CivillianUpperClass
  2675. {
  2676. count = 295;
  2677. half = 9336.05248315373;
  2678. halfIndex = 147;
  2679. sum = 9999.99999999997;
  2680. items[] =
  2681. {
  2682. {380.710659898477, "Exile_Item_Can_Empty"}, // 3.81%
  2683. {761.421319796954, "Exile_Item_ToiletPaper"}, // 3.81%
  2684. {1142.13197969543, "Exile_Item_PlasticBottleEmpty"}, // 3.81%
  2685. {1345.17766497462, "Exile_Weapon_M1014"}, // 2.03%
  2686. {1497.46192893401, "Exile_Magazine_8Rnd_74Slug"}, // 1.52%
  2687. {1624.3654822335, "V_Rangemaster_belt"}, // 1.27%
  2688. {1751.269035533, "Chemlight_blue"}, // 1.27%
  2689. {1878.17258883249, "Chemlight_green"}, // 1.27%
  2690. {2005.07614213198, "Chemlight_red"}, // 1.27%
  2691. {2131.97969543147, "Chemlight_yellow"}, // 1.27%
  2692. {2258.88324873096, "FlareYellow_F"}, // 1.27%
  2693. {2385.78680203046, "FlareGreen_F"}, // 1.27%
  2694. {2512.69035532995, "FlareWhite_F"}, // 1.27%
  2695. {2639.59390862944, "FlareRed_F"}, // 1.27%
  2696. {2761.42131979695, "Exile_Item_PlasticBottleDirtyWater"}, // 1.22%
  2697. {2874.22447828539, "Exile_Item_Heatpack"}, // 1.13%
  2698. {2982.79751833051, "Exile_Item_InstantCoffee"}, // 1.09%
  2699. {3084.32036097011, "Exile_Item_ChocolateMilk"}, // 1.02%
  2700. {3183.02312464749, "ItemMap"}, // 0.99%
  2701. {3278.20078962211, "Exile_Item_Magazine03"}, // 0.95%
  2702. {3373.37845459673, "Exile_Item_Magazine04"}, // 0.95%
  2703. {3468.55611957135, "Exile_Item_Magazine02"}, // 0.95%
  2704. {3563.73378454597, "Exile_Item_Magazine01"}, // 0.95%
  2705. {3652.56627185561, "Exile_Item_Raisins"}, // 0.89%
  2706. {3741.39875916526, "Exile_Item_Moobar"}, // 0.89%
  2707. {3826.00112803158, "ItemWatch"}, // 0.85%
  2708. {3910.60349689791, "ItemRadio"}, // 0.85%
  2709. {3991.82177100959, "Exile_Item_MountainDupe"}, // 0.81%
  2710. {4070.78398195149, "Exile_Item_CockONut"}, // 0.79%
  2711. {4149.7461928934, "Exile_Item_SeedAstics"}, // 0.79%
  2712. {4218.83812746757, "Exile_Item_Surstromming"}, // 0.69%
  2713. {4287.93006204174, "Exile_Item_SausageGravy"}, // 0.69%
  2714. {4357.0219966159, "Exile_Item_MacasCheese"}, // 0.69%
  2715. {4426.11393119007, "Exile_Item_BBQSandwich"}, // 0.69%
  2716. {4495.20586576424, "Exile_Item_CatFood"}, // 0.69%
  2717. {4564.29780033841, "Exile_Item_ChristmasTinner"}, // 0.69%
  2718. {4633.38973491257, "Exile_Item_BeefParts"}, // 0.69%
  2719. {4702.48166948674, "Exile_Item_Cheathas"}, // 0.69%
  2720. {4771.57360406091, "Exile_Item_DsNuts"}, // 0.69%
  2721. {4840.66553863508, "Exile_Item_Noodles"}, // 0.69%
  2722. {4909.75747320925, "Exile_Item_Dogfood"}, // 0.69%
  2723. {4978.79300620417, "Exile_Item_EnergyDrink"}, // 0.69%
  2724. {5042.24478285392, "V_Press_F"}, // 0.63%
  2725. {5105.69655950366, "V_TacVest_blk_POLICE"}, // 0.63%
  2726. {5166.61026508742, "H_Cap_press"}, // 0.61%
  2727. {5227.52397067117, "H_Cap_red"}, // 0.61%
  2728. {5288.43767625493, "H_Cap_tan"}, // 0.61%
  2729. {5349.35138183869, "H_Hat_blue"}, // 0.61%
  2730. {5410.26508742244, "H_Hat_tan"}, // 0.61%
  2731. {5471.1787930062, "H_Hat_checker"}, // 0.61%
  2732. {5532.09249858996, "H_Hat_grey"}, // 0.61%
  2733. {5593.00620417371, "H_StrawHat_dark"}, // 0.61%
  2734. {5653.91990975747, "H_Hat_brown"}, // 0.61%
  2735. {5714.83361534123, "H_StrawHat"}, // 0.61%
  2736. {5774.05527354766, "Exile_Item_GloriousKnakworst"}, // 0.59%
  2737. {5830.90806542583, "Exile_Item_Beer"}, // 0.57%
  2738. {5887.30964467005, "ItemGPS"}, // 0.56%
  2739. {5943.71122391427, "Binocular"}, // 0.56%
  2740. {5998.53355893965, "muzzle_snds_L"}, // 0.55%
  2741. {6053.35589396503, "muzzle_snds_acp"}, // 0.55%
  2742. {6106.7889690385, "U_C_Poor_2"}, // 0.53%
  2743. {6160.22204411197, "U_C_Poor_shorts_1"}, // 0.53%
  2744. {6213.65511918544, "U_C_HunterBody_grn"}, // 0.53%
  2745. {6267.08819425891, "U_C_Journalist"}, // 0.53%
  2746. {6320.52126933238, "U_C_Scientist"}, // 0.53%
  2747. {6373.95434440585, "U_C_Poor_1"}, // 0.53%
  2748. {6427.38741947932, "U_Rangemaster"}, // 0.53%
  2749. {6479.5720582193, "B_OutdoorPack_blk"}, // 0.52%
  2750. {6531.47847400496, "SMG_01_F"}, // 0.52%
  2751. {6582.23989532476, "H_Cap_blk_Raven"}, // 0.51%
  2752. {6633.00131664455, "H_Cap_grn"}, // 0.51%
  2753. {6683.76273796435, "H_Cap_oli"}, // 0.51%
  2754. {6734.52415928415, "H_Cap_headphones"}, // 0.51%
  2755. {6785.28558060394, "H_Bandanna_surfer"}, // 0.51%
  2756. {6836.04700192374, "H_Beret_blk_POLICE"}, // 0.51%
  2757. {6886.80842324354, "H_Cap_blk"}, // 0.51%
  2758. {6937.56984456333, "H_Cap_blu"}, // 0.51%
  2759. {6988.33126588313, "Exile_Item_ZipTie"}, // 0.51%
  2760. {7038.71102238097, "SMG_02_F"}, // 0.50%
  2761. {7089.09077887882, "SMG_05_F"}, // 0.50%
  2762. {7139.47053537666, "hgun_PDW2000_F"}, // 0.50%
  2763. {7188.82191721535, "Exile_Item_CanOpener"}, // 0.49%
  2764. {7238.17329905404, "Exile_Item_Matches"}, // 0.49%
  2765. {7286.90426352105, "Exile_Item_PlasticBottleFreshWater"}, // 0.49%
  2766. {7334.81391959816, "hgun_P07_F"}, // 0.48%
  2767. {7381.78009446414, "B_OutdoorPack_tan"}, // 0.47%
  2768. {7428.74626933012, "B_OutdoorPack_blu"}, // 0.47%
  2769. {7474.37451321309, "hgun_Rook40_F"}, // 0.46%
  2770. {7520.00275709605, "hgun_ACPC2_F"}, // 0.46%
  2771. {7561.75046808803, "B_HuntingBackpack"}, // 0.42%
  2772. {7603.30952647851, "U_C_Poloshirt_tricolour"}, // 0.42%
  2773. {7644.86858486899, "U_C_Poloshirt_blue"}, // 0.42%
  2774. {7686.42764325946, "U_C_Poloshirt_burgundy"}, // 0.42%
  2775. {7727.98670164994, "U_C_Poloshirt_stripped"}, // 0.42%
  2776. {7769.54576004042, "U_C_Poloshirt_salmon"}, // 0.42%
  2777. {7806.0750071584, "B_AssaultPack_rgr"}, // 0.37%
  2778. {7842.60425427639, "B_AssaultPack_sgg"}, // 0.37%
  2779. {7879.13350139437, "B_AssaultPack_blk"}, // 0.37%
  2780. {7915.66274851235, "B_AssaultPack_cbr"}, // 0.37%
  2781. {7952.19199563034, "B_AssaultPack_tna_F"}, // 0.37%
  2782. {7988.72124274832, "B_AssaultPack_khk"}, // 0.37%
  2783. {8025.25048986631, "B_AssaultPack_dgtl"}, // 0.37%
  2784. {8061.77973698429, "B_AssaultPack_mcamo"}, // 0.37%
  2785. {8091.46477869178, "U_I_C_Soldier_Bandit_5_F"}, // 0.30%
  2786. {8121.14982039926, "U_I_C_Soldier_Bandit_2_F"}, // 0.30%
  2787. {8150.83486210674, "U_I_C_Soldier_Bandit_3_F"}, // 0.30%
  2788. {8180.51990381423, "U_I_C_Soldier_Bandit_4_F"}, // 0.30%
  2789. {8210.20494552171, "U_I_C_Soldier_Bandit_1_F"}, // 0.30%
  2790. {8239.8899872292, "U_C_man_sport_1_F"}, // 0.30%
  2791. {8269.57502893668, "U_C_Man_casual_5_F"}, // 0.30%
  2792. {8299.26007064416, "U_C_Man_casual_6_F"}, // 0.30%
  2793. {8328.94511235165, "U_C_Man_casual_3_F"}, // 0.30%
  2794. {8358.63015405913, "U_C_Man_casual_2_F"}, // 0.30%
  2795. {8388.31519576661, "U_C_Man_casual_1_F"}, // 0.30%
  2796. {8418.0002374741, "U_C_man_sport_3_F"}, // 0.30%
  2797. {8447.68527918158, "U_C_man_sport_2_F"}, // 0.30%
  2798. {8477.37032088907, "U_C_Man_casual_4_F"}, // 0.30%
  2799. {8507.02867941299, "hgun_Pistol_heavy_01_F"}, // 0.30%
  2800. {8536.68703793692, "hgun_Pistol_heavy_02_F"}, // 0.30%
  2801. {8566.34539646084, "Exile_Weapon_Colt1911"}, // 0.30%
  2802. {8596.00375498477, "hgun_Pistol_Signal_F"}, // 0.30%
  2803. {8625.6621135087, "hgun_P07_khk_F"}, // 0.30%
  2804. {8655.32047203262, "Exile_Weapon_Taurus"}, // 0.30%
  2805. {8684.97883055655, "Exile_Weapon_TaurusGold"}, // 0.30%
  2806. {8714.63718908047, "hgun_Pistol_01_F"}, // 0.30%
  2807. {8744.2955476044, "Exile_Weapon_Makarov"}, // 0.30%
  2808. {8773.90637670761, "Exile_Item_EMRE"}, // 0.30%
  2809. {8803.51720581083, "Exile_Item_CookingPot"}, // 0.30%
  2810. {8831.94360174991, "Exile_Item_PowerDrink"}, // 0.28%
  2811. {8860.14439137202, "9Rnd_45ACP_Mag"}, // 0.28%
  2812. {8888.34518099413, "Exile_Magazine_7Rnd_45ACP"}, // 0.28%
  2813. {8916.54597061624, "Exile_Magazine_8Rnd_9x18"}, // 0.28%
  2814. {8944.74676023835, "Exile_Magazine_6Rnd_45ACP"}, // 0.28%
  2815. {8972.94754986046, "30Rnd_9x21_Mag"}, // 0.28%
  2816. {9001.14833948257, "11Rnd_45ACP_Mag"}, // 0.28%
  2817. {9029.34912910468, "10Rnd_9x21_Mag"}, // 0.28%
  2818. {9055.44144847467, "B_Kitbag_cbr"}, // 0.26%
  2819. {9081.53376784466, "B_Kitbag_sgg"}, // 0.26%
  2820. {9107.62608721465, "B_Kitbag_mcamo"}, // 0.26%
  2821. {9133.00679787454, "30Rnd_9x21_Mag_SMG_02"}, // 0.25%
  2822. {9158.38750853444, "optic_Holosight_smg"}, // 0.25%
  2823. {9183.76821919434, "optic_Holosight_smg_blk_F"}, // 0.25%
  2824. {9209.14892985424, "30Rnd_9x21_Mag_SMG_02_Tracer_Yellow"}, // 0.25%
  2825. {9234.52964051414, "30Rnd_45ACP_Mag_SMG_01_Tracer_Green"}, // 0.25%
  2826. {9259.91035117403, "30Rnd_9x21_Mag_SMG_02_Tracer_Green"}, // 0.25%
  2827. {9285.29106183393, "30Rnd_9x21_Mag_SMG_02_Tracer_Red"}, // 0.25%
  2828. {9310.67177249383, "optic_ACO_grn_smg"}, // 0.25%
  2829. {9336.05248315373, "optic_ACO_grn"}, // 0.25%
  2830. {9361.43319381363, "30Rnd_45ACP_Mag_SMG_01"}, // 0.25%
  2831. {9386.81390447352, "optic_Aco"}, // 0.25%
  2832. {9412.19461513342, "optic_Aco_smg"}, // 0.25%
  2833. {9434.75524683111, "6Rnd_45ACP_Cylinder"}, // 0.23%
  2834. {9456.07504378542, "optic_MRD"}, // 0.21%
  2835. {9477.39484073974, "optic_Yorris"}, // 0.21%
  2836. {9491.49523555079, "16Rnd_9x21_Mag"}, // 0.14%
  2837. {9505.59563036185, "Exile_Item_MobilePhone"}, // 0.14%
  2838. {9515.46590672959, "6Rnd_RedSignal_F"}, // 0.10%
  2839. {9525.33618309732, "6Rnd_GreenSignal_F"}, // 0.10%
  2840. {9532.46654997168, "acc_flashlight"}, // 0.07%
  2841. {9538.40355831317, "U_NikosBody"}, // 0.06%
  2842. {9544.34056665467, "U_NikosAgedBody"}, // 0.06%
  2843. {9550.27757499617, "U_OrestesBody"}, // 0.06%
  2844. {9555.75542621773, "30Rnd_65x39_caseless_green"}, // 0.05%
  2845. {9561.23327743929, "30Rnd_556x45_Stanag_red"}, // 0.05%
  2846. {9566.71112866085, "30Rnd_556x45_Stanag_green"}, // 0.05%
  2847. {9572.18897988241, "30Rnd_556x45_Stanag"}, // 0.05%
  2848. {9577.28209907838, "muzzle_snds_H_khk_F"}, // 0.05%
  2849. {9582.37521827434, "muzzle_snds_65_TI_blk_F"}, // 0.05%
  2850. {9587.46833747031, "muzzle_snds_65_TI_hex_F"}, // 0.05%
  2851. {9592.56145666628, "muzzle_snds_65_TI_ghex_F"}, // 0.05%
  2852. {9597.65457586224, "muzzle_snds_H_MG_blk_F"}, // 0.05%
  2853. {9602.74769505821, "muzzle_snds_H_MG_khk_F"}, // 0.05%
  2854. {9607.84081425418, "optic_Arco"}, // 0.05%
  2855. {9612.93393345014, "optic_Arco_blk_F"}, // 0.05%
  2856. {9618.02705264611, "optic_Arco_ghex_F"}, // 0.05%
  2857. {9623.12017184207, "optic_Hamr"}, // 0.05%
  2858. {9628.21329103804, "optic_Hamr_khk_F"}, // 0.05%
  2859. {9633.30641023401, "optic_Holosight"}, // 0.05%
  2860. {9638.39952942997, "optic_Holosight_blk_F"}, // 0.05%
  2861. {9643.49264862594, "optic_Holosight_khk_F"}, // 0.05%
  2862. {9648.58576782191, "acc_pointer_IR"}, // 0.05%
  2863. {9653.67888701787, "optic_MRCO"}, // 0.05%
  2864. {9658.77200621384, "optic_DMS"}, // 0.05%
  2865. {9663.8651254098, "optic_DMS_ghex_F"}, // 0.05%
  2866. {9668.95824460577, "optic_ERCO_blk_F"}, // 0.05%
  2867. {9674.05136380174, "optic_ERCO_khk_F"}, // 0.05%
  2868. {9679.1444829977, "optic_ERCO_snd_F"}, // 0.05%
  2869. {9684.23760219367, "muzzle_snds_58_wdm_F"}, // 0.05%
  2870. {9689.33072138964, "muzzle_snds_m_khk_F"}, // 0.05%
  2871. {9694.4238405856, "muzzle_snds_m_snd_F"}, // 0.05%
  2872. {9699.51695978157, "muzzle_snds_H_snd_F"}, // 0.05%
  2873. {9704.61007897753, "muzzle_snds_H"}, // 0.05%
  2874. {9709.7031981735, "muzzle_snds_M"}, // 0.05%
  2875. {9714.79631736947, "muzzle_snds_58_blk_F"}, // 0.05%
  2876. {9718.8250016012, "Exile_Weapon_LeeEnfield"}, // 0.04%
  2877. {9722.85368583292, "Exile_Weapon_AK74"}, // 0.04%
  2878. {9726.88237006465, "Exile_Weapon_AK47"}, // 0.04%
  2879. {9730.91105429638, "Exile_Weapon_AKS_Gold"}, // 0.04%
  2880. {9734.93973852811, "Exile_Weapon_AK107"}, // 0.04%
  2881. {9738.96842275984, "Exile_Weapon_DMR"}, // 0.04%
  2882. {9742.99710699157, "Exile_Weapon_CZ550"}, // 0.04%
  2883. {9747.0257912233, "Exile_Weapon_SVDCamo"}, // 0.04%
  2884. {9751.05447545503, "Exile_Weapon_AK74_GL"}, // 0.04%
  2885. {9755.08315968676, "Exile_Weapon_VSSVintorez"}, // 0.04%
  2886. {9759.11184391849, "arifle_Katiba_F"}, // 0.04%
  2887. {9763.14052815022, "Exile_Weapon_SVD"}, // 0.04%
  2888. {9767.16921238194, "Exile_Weapon_AK107_GL"}, // 0.04%
  2889. {9771.18630327776, "20Rnd_556x45_UW_mag"}, // 0.04%
  2890. {9774.47301401069, "30Rnd_65x39_caseless_mag_Tracer"}, // 0.03%
  2891. {9777.75972474363, "Exile_Magazine_30Rnd_762x39_AK"}, // 0.03%
  2892. {9781.04643547657, "Exile_Magazine_30Rnd_545x39_AK"}, // 0.03%
  2893. {9784.3331462095, "Exile_Magazine_30Rnd_545x39_AK_Green"}, // 0.03%
  2894. {9787.61985694244, "Exile_Magazine_20Rnd_762x51_DMR_White"}, // 0.03%
  2895. {9790.90656767538, "30Rnd_556x45_Stanag_Tracer_Red"}, // 0.03%
  2896. {9794.19327840831, "30Rnd_556x45_Stanag_Tracer_Yellow"}, // 0.03%
  2897. {9797.47998914125, "30Rnd_65x39_caseless_green_mag_Tracer"}, // 0.03%
  2898. {9800.76669987419, "30Rnd_65x39_caseless_mag"}, // 0.03%
  2899. {9804.05341060712, "Exile_Magazine_30Rnd_545x39_AK_Red"}, // 0.03%
  2900. {9807.34012134006, "30Rnd_556x45_Stanag_Tracer_Green"}, // 0.03%
  2901. {9810.626832073, "Exile_Magazine_30Rnd_545x39_AK_Yellow"}, // 0.03%
  2902. {9813.91354280593, "Exile_Magazine_10Rnd_762x54"}, // 0.03%
  2903. {9817.20025353887, "Exile_Magazine_10Rnd_9x39"}, // 0.03%
  2904. {9820.48696427181, "Exile_Magazine_20Rnd_9x39"}, // 0.03%
  2905. {9823.77367500474, "30Rnd_762x39_Mag_F"}, // 0.03%
  2906. {9827.06038573768, "30Rnd_762x39_Mag_Green_F"}, // 0.03%
  2907. {9830.34709647062, "30Rnd_762x39_Mag_Tracer_F"}, // 0.03%
  2908. {9833.63380720355, "30Rnd_762x39_Mag_Tracer_Green_F"}, // 0.03%
  2909. {9836.92051793649, "30Rnd_762x39_AK47_M"}, // 0.03%
  2910. {9840.20722866943, "30Rnd_545x39_Mag_F"}, // 0.03%
  2911. {9843.49393940236, "30Rnd_545x39_Mag_Green_F"}, // 0.03%
  2912. {9846.7806501353, "30Rnd_545x39_Mag_Tracer_F"}, // 0.03%
  2913. {9850.06736086824, "30Rnd_545x39_Mag_Tracer_Green_F"}, // 0.03%
  2914. {9853.35407160117, "Exile_Magazine_30Rnd_545x39_AK_White"}, // 0.03%
  2915. {9856.64078233411, "Exile_Magazine_5Rnd_22LR"}, // 0.03%
  2916. {9859.92749306705, "150Rnd_556x45_Drum_Mag_Tracer_F"}, // 0.03%
  2917. {9863.21420379998, "Exile_Magazine_20Rnd_762x51_DMR"}, // 0.03%
  2918. {9866.50091453292, "Exile_Magazine_20Rnd_762x51_DMR_Green"}, // 0.03%
  2919. {9869.78762526586, "Exile_Magazine_20Rnd_762x51_DMR_Red"}, // 0.03%
  2920. {9873.07433599879, "150Rnd_556x45_Drum_Mag_F"}, // 0.03%
  2921. {9876.36104673173, "30Rnd_580x42_Mag_F"}, // 0.03%
  2922. {9879.64775746467, "30Rnd_580x42_Mag_Tracer_F"}, // 0.03%
  2923. {9882.9344681976, "20Rnd_762x51_Mag"}, // 0.03%
  2924. {9886.22117893054, "100Rnd_580x42_Mag_F"}, // 0.03%
  2925. {9889.50788966348, "100Rnd_580x42_Mag_Tracer_F"}, // 0.03%
  2926. {9892.79460039641, "Exile_Magazine_20Rnd_762x51_DMR_Yellow"}, // 0.03%
  2927. {9896.0175477818, "arifle_MX_khk_F"}, // 0.03%
  2928. {9899.24049516718, "arifle_TRG20_F"}, // 0.03%
  2929. {9902.46344255256, "arifle_MX_F"}, // 0.03%
  2930. {9905.68638993795, "arifle_MXC_F"}, // 0.03%
  2931. {9908.90933732333, "arifle_Katiba_GL_F"}, // 0.03%
  2932. {9912.13228470872, "arifle_TRG21_F"}, // 0.03%
  2933. {9915.3552320941, "arifle_MXC_khk_F"}, // 0.03%
  2934. {9918.2767527456, "Exile_Magazine_10Rnd_303"}, // 0.03%
  2935. {9921.09683170781, "arifle_Mk20C_F"}, // 0.03%
  2936. {9923.91691067002, "arifle_Mk20_F"}, // 0.03%
  2937. {9926.46347026801, "optic_NVS"}, // 0.03%
  2938. {9928.88068080704, "arifle_SDAR_F"}, // 0.02%
  2939. {9931.29789134608, "arifle_MXM_F"}, // 0.02%
  2940. {9933.31223346194, "arifle_SPAR_03_snd_F"}, // 0.02%
  2941. {9935.32657557781, "arifle_SPAR_03_khk_F"}, // 0.02%
  2942. {9937.34091769367, "arifle_AKM_FL_F"}, // 0.02%
  2943. {9939.35525980954, "arifle_AK12_F"}, // 0.02%
  2944. {9941.3696019254, "arifle_SPAR_01_GL_khk_F"}, // 0.02%
  2945. {9943.38394404127, "arifle_SPAR_01_khk_F"}, // 0.02%
  2946. {9945.39828615713, "arifle_SPAR_01_blk_F"}, // 0.02%
  2947. {9947.412628273, "arifle_SPAR_01_GL_snd_F"}, // 0.02%
  2948. {9949.42697038886, "arifle_SPAR_02_blk_F"}, // 0.02%
  2949. {9951.44131250472, "arifle_SPAR_02_khk_F"}, // 0.02%
  2950. {9953.45565462059, "arifle_SPAR_02_snd_F"}, // 0.02%
  2951. {9955.46999673645, "arifle_CTARS_hex_F"}, // 0.02%
  2952. {9957.48433885232, "arifle_CTARS_ghex_F"}, // 0.02%
  2953. {9959.49868096818, "arifle_CTARS_blk_F"}, // 0.02%
  2954. {9961.51302308405, "arifle_CTAR_GL_blk_F"}, // 0.02%
  2955. {9963.52736519991, "arifle_CTAR_ghex_F"}, // 0.02%
  2956. {9965.54170731578, "arifle_CTAR_hex_F"}, // 0.02%
  2957. {9967.55604943164, "arifle_CTAR_blk_F"}, // 0.02%
  2958. {9969.57039154751, "arifle_ARX_hex_F"}, // 0.02%
  2959. {9971.58473366337, "arifle_ARX_ghex_F"}, // 0.02%
  2960. {9973.59907577924, "arifle_ARX_blk_F"}, // 0.02%
  2961. {9975.6134178951, "arifle_AKS_F"}, // 0.02%
  2962. {9977.62776001096, "arifle_AKM_F"}, // 0.02%
  2963. {9979.64210212683, "arifle_AK12_GL_F"}, // 0.02%
  2964. {9981.65644424269, "arifle_SPAR_03_blk_F"}, // 0.02%
  2965. {9983.67078635856, "arifle_SPAR_01_snd_F"}, // 0.02%
  2966. {9985.68512847442, "arifle_SPAR_01_GL_blk_F"}, // 0.02%
  2967. {9987.51107888161, "10Rnd_50BW_Mag_F"}, // 0.02%
  2968. {9989.1225525743, "arifle_Mk20_GL_F"}, // 0.02%
  2969. {9990.73402626699, "arifle_MX_GL_F"}, // 0.02%
  2970. {9992.34549995969, "arifle_MX_GL_khk_F"}, // 0.02%
  2971. {9993.95697365238, "arifle_TRG21_GL_F"}, // 0.02%
  2972. {9995.1655789219, "arifle_MXM_Black_F"}, // 0.01%
  2973. {9996.37418419142, "arifle_MXC_Black_F"}, // 0.01%
  2974. {9997.58278946094, "arifle_MXM_khk_F"}, // 0.01%
  2975. {9998.79139473046, "arifle_MX_GL_Black_F"}, // 0.01%
  2976. {9999.99999999997, "arifle_MX_Black_F"} // 0.01%
  2977. };
  2978. };
  2979.  
  2980. /**
  2981. Result of 100 rounds:
  2982.  
  2983. hgun_Pistol_01_F
  2984. Exile_Item_PlasticBottleEmpty
  2985. ItemWatch
  2986. SmokeShell
  2987. Chemlight_red
  2988. hgun_Pistol_heavy_02_F
  2989. H_Cap_blk
  2990. B_Kitbag_mcamo
  2991. Exile_Weapon_M1014
  2992. Exile_Item_Can_Empty
  2993. SmokeShellRed
  2994. Exile_Item_PlasticBottleDirtyWater
  2995. Exile_Item_EnergyDrink
  2996. Exile_Item_ToiletPaper
  2997. SMG_02_F
  2998. Exile_Item_PowerDrink
  2999. Exile_Item_MountainDupe
  3000. Exile_Item_ToiletPaper
  3001. Exile_Item_PlasticBottleEmpty
  3002. Exile_Weapon_TaurusGold
  3003. Exile_Item_Vishpirin
  3004. Exile_Item_MountainDupe
  3005. Exile_Weapon_Makarov
  3006. Exile_Item_MountainDupe
  3007. SMG_01_F
  3008. Exile_Item_Raisins
  3009. Exile_Item_Can_Empty
  3010. Exile_Item_Bandage
  3011. 30Rnd_9x21_Mag_SMG_02_Tracer_Green
  3012. Exile_Item_ChocolateMilk
  3013. FlareGreen_F
  3014. hgun_P07_khk_F
  3015. B_HuntingBackpack
  3016. Exile_Item_Can_Empty
  3017. Exile_Item_PlasticBottleFreshWater
  3018. Exile_Item_ToiletPaper
  3019. Exile_Item_InstaDoc
  3020. Exile_Item_ToiletPaper
  3021. hgun_ACPC2_F
  3022. Chemlight_green
  3023. Exile_Item_ZipTie
  3024. B_OutdoorPack_blk
  3025. Exile_Item_Beer
  3026. FlareYellow_F
  3027. Exile_Item_ToiletPaper
  3028. hgun_Pistol_heavy_02_F
  3029. Exile_Item_ScrewDriver
  3030. FlareWhite_F
  3031. SmokeShellBlue
  3032. Exile_Item_PlasticBottleEmpty
  3033. hgun_Pistol_heavy_02_F
  3034. Exile_Item_Can_Empty
  3035. Exile_Item_Can_Empty
  3036. Exile_Item_PlasticBottleEmpty
  3037. Exile_Item_DsNuts
  3038. Exile_Item_Beer
  3039. Chemlight_blue
  3040. Exile_Item_ChocolateMilk
  3041. Exile_Item_Magazine03
  3042. muzzle_snds_L
  3043. Exile_Item_CockONut
  3044. Exile_Item_PlasticBottleEmpty
  3045. 30Rnd_45ACP_Mag_SMG_01_Tracer_Green
  3046. B_Kitbag_sgg
  3047. SMG_05_F
  3048. Exile_Item_PlasticBottleEmpty
  3049. Exile_Item_Magazine02
  3050. Exile_Item_ChocolateMilk
  3051. hgun_P07_khk_F
  3052. FlareYellow_F
  3053. Exile_Weapon_Makarov
  3054. Exile_Item_PlasticBottleDirtyWater
  3055. FlareYellow_F
  3056. Exile_Item_SeedAstics
  3057. FlareWhite_F
  3058. Exile_Item_CatFood
  3059. Exile_Item_Handsaw
  3060. Exile_Item_ZipTie
  3061. Exile_Weapon_M1014
  3062. Exile_Item_DsNuts
  3063. Exile_Item_Noodles
  3064. ItemRadio
  3065. Exile_Item_Can_Empty
  3066. Exile_Item_Surstromming
  3067. Exile_Item_InstantCoffee
  3068. FlareYellow_F
  3069. hgun_Pistol_01_F
  3070. Exile_Weapon_Makarov
  3071. Exile_Item_MountainDupe
  3072. Exile_Item_Can_Empty
  3073. Exile_Item_Raisins
  3074. Exile_Item_CockONut
  3075. hgun_P07_khk_F
  3076. Exile_Weapon_Taurus
  3077. Exile_Item_CanOpener
  3078. Exile_Item_ToiletPaper
  3079. B_AssaultPack_sgg
  3080. FlareRed_F
  3081. 9Rnd_45ACP_Mag
  3082. 6Rnd_45ACP_Cylinder
  3083. */
  3084. class Shop
  3085. {
  3086. count = 193;
  3087. half = 9064.5076897852;
  3088. halfIndex = 96;
  3089. sum = 10000;
  3090. items[] =
  3091. {
  3092. {600, "Exile_Item_Can_Empty"}, // 6.00%
  3093. {1200, "Exile_Item_ToiletPaper"}, // 6.00%
  3094. {1800, "Exile_Item_PlasticBottleEmpty"}, // 6.00%
  3095. {2120, "Exile_Weapon_M1014"}, // 3.20%
  3096. {2408, "Exile_Item_PlasticBottleDirtyWater"}, // 2.88%
  3097. {2648, "Exile_Item_ZipTie"}, // 2.40%
  3098. {2888, "Exile_Item_ChocolateMilk"}, // 2.40%
  3099. {3080, "Exile_Item_MountainDupe"}, // 1.92%
  3100. {3243.2, "Exile_Item_EnergyDrink"}, // 1.63%
  3101. {3393.2, "Exile_Item_Magazine01"}, // 1.50%
  3102. {3543.2, "Exile_Item_Magazine02"}, // 1.50%
  3103. {3693.2, "Exile_Item_Magazine03"}, // 1.50%
  3104. {3843.2, "Exile_Item_Magazine04"}, // 1.50%
  3105. {3977.6, "Exile_Item_Beer"}, // 1.34%
  3106. {4102.04444444444, "Exile_Item_Heatpack"}, // 1.24%
  3107. {4217.24444444444, "Exile_Item_PlasticBottleFreshWater"}, // 1.15%
  3108. {4326.13333333333, "ItemMap"}, // 1.09%
  3109. {4428.38897243108, "SMG_01_F"}, // 1.02%
  3110. {4528.38897243108, "Chemlight_blue"}, // 1.00%
  3111. {4628.38897243108, "FlareYellow_F"}, // 1.00%
  3112. {4728.38897243108, "FlareWhite_F"}, // 1.00%
  3113. {4828.38897243108, "FlareRed_F"}, // 1.00%
  3114. {4928.38897243108, "FlareGreen_F"}, // 1.00%
  3115. {5028.38897243108, "Chemlight_green"}, // 1.00%
  3116. {5128.38897243108, "Chemlight_yellow"}, // 1.00%
  3117. {5228.38897243108, "Chemlight_red"}, // 1.00%
  3118. {5327.63709273183, "SMG_05_F"}, // 0.99%
  3119. {5426.88521303258, "hgun_PDW2000_F"}, // 0.99%
  3120. {5526.13333333333, "SMG_02_F"}, // 0.99%
  3121. {5620.51535580524, "hgun_P07_F"}, // 0.94%
  3122. {5713.84868913858, "ItemWatch"}, // 0.93%
  3123. {5807.18202247191, "ItemRadio"}, // 0.93%
  3124. {5898.84868913858, "Exile_Item_InstantCoffee"}, // 0.92%
  3125. {5988.73632958802, "hgun_Rook40_F"}, // 0.90%
  3126. {6078.62397003745, "hgun_ACPC2_F"}, // 0.90%
  3127. {6167.51285892634, "Exile_Item_Vishpirin"}, // 0.89%
  3128. {6256.40174781523, "Exile_Item_Heatpack"}, // 0.89%
  3129. {6336.40174781523, "Exile_Magazine_8Rnd_74Slug"}, // 0.80%
  3130. {6411.40174781523, "Exile_Item_Moobar"}, // 0.75%
  3131. {6486.40174781523, "Exile_Item_Raisins"}, // 0.75%
  3132. {6553.60174781523, "Exile_Item_PowerDrink"}, // 0.67%
  3133. {6620.2684144819, "Exile_Item_CockONut"}, // 0.67%
  3134. {6686.93508114856, "Exile_Item_SeedAstics"}, // 0.67%
  3135. {6749.15730337079, "ItemGPS"}, // 0.62%
  3136. {6811.37952559301, "Binocular"}, // 0.62%
  3137. {6869.80649188515, "hgun_Pistol_01_F"}, // 0.58%
  3138. {6928.23345817728, "hgun_P07_khk_F"}, // 0.58%
  3139. {6986.66042446942, "hgun_Pistol_heavy_01_F"}, // 0.58%
  3140. {7045.08739076155, "hgun_Pistol_heavy_02_F"}, // 0.58%
  3141. {7103.51435705369, "hgun_Pistol_Signal_F"}, // 0.58%
  3142. {7161.94132334582, "Exile_Weapon_Colt1911"}, // 0.58%
  3143. {7220.36828963796, "Exile_Weapon_Makarov"}, // 0.58%
  3144. {7278.79525593009, "Exile_Weapon_TaurusGold"}, // 0.58%
  3145. {7337.22222222223, "Exile_Weapon_Taurus"}, // 0.58%
  3146. {7395.55555555556, "Exile_Item_DsNuts"}, // 0.58%
  3147. {7453.88888888889, "Exile_Item_Noodles"}, // 0.58%
  3148. {7512.22222222223, "Exile_Item_BeefParts"}, // 0.58%
  3149. {7570.55555555556, "Exile_Item_Cheathas"}, // 0.58%
  3150. {7628.88888888889, "Exile_Item_CatFood"}, // 0.58%
  3151. {7687.22222222222, "Exile_Item_BBQSandwich"}, // 0.58%
  3152. {7745.55555555556, "Exile_Item_MacasCheese"}, // 0.58%
  3153. {7803.88888888889, "Exile_Item_ChristmasTinner"}, // 0.58%
  3154. {7862.22222222222, "Exile_Item_SausageGravy"}, // 0.58%
  3155. {7920.55555555556, "Exile_Item_Surstromming"}, // 0.58%
  3156. {7978.88888888889, "Exile_Item_Dogfood"}, // 0.58%
  3157. {8028.88888888889, "Exile_Item_GloriousKnakworst"}, // 0.50%
  3158. {8074.60317460317, "SmokeShell"}, // 0.46%
  3159. {8120.31746031746, "SmokeShellYellow"}, // 0.46%
  3160. {8166.03174603175, "SmokeShellPurple"}, // 0.46%
  3161. {8211.74603174603, "SmokeShellBlue"}, // 0.46%
  3162. {8257.46031746032, "SmokeShellOrange"}, // 0.46%
  3163. {8303.1746031746, "SmokeShellGreen"}, // 0.46%
  3164. {8348.88888888889, "SmokeShellRed"}, // 0.46%
  3165. {8393.33333333334, "Exile_Item_Bandage"}, // 0.44%
  3166. {8435, "Exile_Item_CanOpener"}, // 0.42%
  3167. {8476.66666666667, "Exile_Item_Matches"}, // 0.42%
  3168. {8516.66666666667, "V_Rangemaster_belt"}, // 0.40%
  3169. {8554.04984423676, "B_OutdoorPack_blk"}, // 0.37%
  3170. {8588.78668634202, "Exile_Melee_Axe"}, // 0.35%
  3171. {8622.43154615511, "B_OutdoorPack_tan"}, // 0.34%
  3172. {8656.07640596819, "B_OutdoorPack_blu"}, // 0.34%
  3173. {8685.98294802427, "B_HuntingBackpack"}, // 0.30%
  3174. {8714.78294802427, "muzzle_snds_L"}, // 0.29%
  3175. {8743.58294802427, "muzzle_snds_acp"}, // 0.29%
  3176. {8769.75117232333, "B_AssaultPack_tna_F"}, // 0.26%
  3177. {8795.9193966224, "B_AssaultPack_mcamo"}, // 0.26%
  3178. {8822.08762092146, "B_AssaultPack_blk"}, // 0.26%
  3179. {8848.25584522052, "B_AssaultPack_cbr"}, // 0.26%
  3180. {8874.42406951959, "B_AssaultPack_rgr"}, // 0.26%
  3181. {8900.59229381865, "B_AssaultPack_dgtl"}, // 0.26%
  3182. {8926.76051811772, "B_AssaultPack_khk"}, // 0.26%
  3183. {8952.92874241678, "B_AssaultPack_sgg"}, // 0.26%
  3184. {8977.92874241678, "Exile_Item_CookingPot"}, // 0.25%
  3185. {9002.92874241678, "Exile_Item_EMRE"}, // 0.25%
  3186. {9023.45505820626, "Exile_Item_Handsaw"}, // 0.21%
  3187. {9043.98137399573, "Exile_Item_Pliers"}, // 0.21%
  3188. {9064.5076897852, "Exile_Item_ScrewDriver"}, // 0.21%
  3189. {9084.5076897852, "V_Press_F"}, // 0.20%
  3190. {9104.5076897852, "V_TacVest_blk_POLICE"}, // 0.20%
  3191. {9123.19927857025, "B_Kitbag_cbr"}, // 0.19%
  3192. {9141.8908673553, "B_Kitbag_sgg"}, // 0.19%
  3193. {9160.58245614034, "B_Kitbag_mcamo"}, // 0.19%
  3194. {9178.36023391812, "10Rnd_9x21_Mag"}, // 0.18%
  3195. {9196.1380116959, "Exile_Magazine_8Rnd_9x18"}, // 0.18%
  3196. {9213.91578947367, "Exile_Magazine_6Rnd_45ACP"}, // 0.18%
  3197. {9231.69356725145, "Exile_Magazine_7Rnd_45ACP"}, // 0.18%
  3198. {9249.47134502923, "9Rnd_45ACP_Mag"}, // 0.18%
  3199. {9267.24912280701, "11Rnd_45ACP_Mag"}, // 0.18%
  3200. {9285.02690058478, "Exile_Item_InstaDoc"}, // 0.18%
  3201. {9302.80467836256, "30Rnd_9x21_Mag"}, // 0.18%
  3202. {9320.17309941519, "Exile_Item_JunkMetal"}, // 0.17%
  3203. {9335.9625730994, "Exile_Item_WaterCanisterEmpty"}, // 0.16%
  3204. {9351.75204678361, "Exile_Melee_Shovel"}, // 0.16%
  3205. {9367.30760233917, "Exile_Item_MobilePhone"}, // 0.16%
  3206. {9381.70760233917, "H_Cap_tan"}, // 0.14%
  3207. {9396.10760233917, "H_Hat_blue"}, // 0.14%
  3208. {9410.50760233917, "H_Hat_brown"}, // 0.14%
  3209. {9424.90760233917, "H_Hat_checker"}, // 0.14%
  3210. {9439.30760233917, "H_Hat_tan"}, // 0.14%
  3211. {9453.70760233917, "H_StrawHat"}, // 0.14%
  3212. {9468.10760233917, "H_StrawHat_dark"}, // 0.14%
  3213. {9482.50760233916, "H_Cap_red"}, // 0.14%
  3214. {9496.90760233916, "H_Hat_grey"}, // 0.14%
  3215. {9511.30760233916, "H_Cap_press"}, // 0.14%
  3216. {9525.52982456139, "6Rnd_45ACP_Cylinder"}, // 0.14%
  3217. {9539.74035087718, "Exile_Item_LightBulb"}, // 0.14%
  3218. {9553.07368421051, "30Rnd_9x21_Mag_SMG_02_Tracer_Green"}, // 0.13%
  3219. {9566.40701754384, "optic_Holosight_smg_blk_F"}, // 0.13%
  3220. {9579.74035087718, "optic_ACO_grn"}, // 0.13%
  3221. {9593.07368421051, "30Rnd_9x21_Mag_SMG_02"}, // 0.13%
  3222. {9606.40701754385, "optic_Aco_smg"}, // 0.13%
  3223. {9619.74035087718, "30Rnd_45ACP_Mag_SMG_01_Tracer_Green"}, // 0.13%
  3224. {9633.07368421051, "optic_ACO_grn_smg"}, // 0.13%
  3225. {9646.40701754385, "30Rnd_9x21_Mag_SMG_02_Tracer_Red"}, // 0.13%
  3226. {9659.74035087718, "30Rnd_9x21_Mag_SMG_02_Tracer_Yellow"}, // 0.13%
  3227. {9673.07368421052, "optic_Holosight_smg"}, // 0.13%
  3228. {9686.40701754385, "optic_Aco"}, // 0.13%
  3229. {9699.74035087718, "30Rnd_45ACP_Mag_SMG_01"}, // 0.13%
  3230. {9712.37192982455, "Exile_Item_ExtensionCord"}, // 0.13%
  3231. {9724.37192982455, "H_Bandanna_surfer"}, // 0.12%
  3232. {9736.37192982455, "H_Beret_blk_POLICE"}, // 0.12%
  3233. {9748.37192982455, "H_Cap_oli"}, // 0.12%
  3234. {9760.37192982455, "H_Cap_headphones"}, // 0.12%
  3235. {9772.37192982455, "H_Cap_blk"}, // 0.12%
  3236. {9784.37192982455, "H_Cap_grn"}, // 0.12%
  3237. {9796.37192982455, "H_Cap_blu"}, // 0.12%
  3238. {9808.37192982455, "H_Cap_blk_Raven"}, // 0.12%
  3239. {9819.57192982455, "optic_MRD"}, // 0.11%
  3240. {9830.77192982455, "optic_Yorris"}, // 0.11%
  3241. {9839.66081871344, "16Rnd_9x21_Mag"}, // 0.09%
  3242. {9847.55555555555, "Exile_Item_Grinder"}, // 0.08%
  3243. {9855.45029239765, "Exile_Item_MetalScrews"}, // 0.08%
  3244. {9863.34502923976, "Exile_Melee_SledgeHammer"}, // 0.08%
  3245. {9869.66081871344, "Exile_Item_Sand"}, // 0.06%
  3246. {9875.97660818713, "Exile_Item_Foolbox"}, // 0.06%
  3247. {9882.29239766081, "Exile_Item_MetalBoard"}, // 0.06%
  3248. {9888.6081871345, "Exile_Item_CamoTentKit"}, // 0.06%
  3249. {9894.83040935672, "6Rnd_RedSignal_F"}, // 0.06%
  3250. {9901.05263157894, "6Rnd_GreenSignal_F"}, // 0.06%
  3251. {9905.78947368421, "Exile_Item_PortableGeneratorKit"}, // 0.05%
  3252. {9910.52631578947, "Exile_Item_Cement"}, // 0.05%
  3253. {9915.26315789473, "Exile_Item_FloodLightKit"}, // 0.05%
  3254. {9919.47368421052, "U_C_Poor_2"}, // 0.04%
  3255. {9923.68421052631, "U_C_Poor_1"}, // 0.04%
  3256. {9927.8947368421, "U_C_Poor_shorts_1"}, // 0.04%
  3257. {9932.10526315789, "U_C_HunterBody_grn"}, // 0.04%
  3258. {9936.31578947368, "U_C_Journalist"}, // 0.04%
  3259. {9940.52631578947, "U_C_Scientist"}, // 0.04%
  3260. {9944.73684210526, "U_Rangemaster"}, // 0.04%
  3261. {9948.01169590643, "U_C_Poloshirt_salmon"}, // 0.03%
  3262. {9951.2865497076, "U_C_Poloshirt_tricolour"}, // 0.03%
  3263. {9954.56140350877, "U_C_Poloshirt_stripped"}, // 0.03%
  3264. {9957.83625730994, "U_C_Poloshirt_burgundy"}, // 0.03%
  3265. {9961.11111111111, "U_C_Poloshirt_blue"}, // 0.03%
  3266. {9964.26900584795, "Exile_Item_Knife"}, // 0.03%
  3267. {9966.6081871345, "U_C_Man_casual_5_F"}, // 0.02%
  3268. {9968.94736842105, "U_C_Man_casual_6_F"}, // 0.02%
  3269. {9971.2865497076, "U_I_C_Soldier_Bandit_5_F"}, // 0.02%
  3270. {9973.62573099415, "U_I_C_Soldier_Bandit_2_F"}, // 0.02%
  3271. {9975.9649122807, "U_I_C_Soldier_Bandit_3_F"}, // 0.02%
  3272. {9978.30409356725, "U_I_C_Soldier_Bandit_4_F"}, // 0.02%
  3273. {9980.6432748538, "U_C_man_sport_1_F"}, // 0.02%
  3274. {9982.98245614035, "U_C_man_sport_2_F"}, // 0.02%
  3275. {9985.3216374269, "U_C_man_sport_3_F"}, // 0.02%
  3276. {9987.66081871345, "U_C_Man_casual_1_F"}, // 0.02%
  3277. {9990, "U_C_Man_casual_2_F"}, // 0.02%
  3278. {9992.33918128655, "U_C_Man_casual_3_F"}, // 0.02%
  3279. {9994.6783625731, "U_C_Man_casual_4_F"}, // 0.02%
  3280. {9997.01754385965, "U_I_C_Soldier_Bandit_1_F"}, // 0.02%
  3281. {9998.59649122808, "Exile_Item_ThermalScannerPro"}, // 0.02%
  3282. {9999.06432748539, "U_NikosBody"}, // 0.00%
  3283. {9999.5321637427, "U_OrestesBody"}, // 0.00%
  3284. {10000, "U_NikosAgedBody"} // 0.00%
  3285. };
  3286. };
  3287.  
  3288. /**
  3289. Result of 100 rounds:
  3290.  
  3291. Exile_Item_Pliers
  3292. Exile_Item_FuelCanisterFull
  3293. FlareGreen_F
  3294. Exile_Item_LightBulb
  3295. FlareWhite_F
  3296. Exile_Item_Pliers
  3297. Exile_Item_PortableGeneratorKit
  3298. Exile_Item_Grinder
  3299. Exile_Item_Can_Empty
  3300. Exile_Item_FuelCanisterEmpty
  3301. Exile_Item_ExtensionCord
  3302. Exile_Item_Can_Empty
  3303. Exile_Item_ToiletPaper
  3304. Exile_Item_FuelCanisterEmpty
  3305. FlareGreen_F
  3306. Exile_Item_Handsaw
  3307. Exile_Item_ToiletPaper
  3308. Exile_Item_FuelCanisterEmpty
  3309. Exile_Item_FuelCanisterFull
  3310. Exile_Item_JunkMetal
  3311. FlareYellow_F
  3312. Exile_Item_ToiletPaper
  3313. Exile_Item_JunkMetal
  3314. Exile_Item_ToiletPaper
  3315. Exile_Melee_Axe
  3316. Exile_Item_Handsaw
  3317. Exile_Item_FuelCanisterEmpty
  3318. Exile_Item_Magazine02
  3319. Exile_Item_MetalBoard
  3320. Exile_Item_ToiletPaper
  3321. FlareWhite_F
  3322. Exile_Item_Pliers
  3323. Exile_Item_Magazine01
  3324. Exile_Item_FuelCanisterEmpty
  3325. Exile_Melee_Axe
  3326. Exile_Item_FuelCanisterEmpty
  3327. Exile_Melee_SledgeHammer
  3328. Exile_Item_FuelCanisterEmpty
  3329. FlareYellow_F
  3330. FlareWhite_F
  3331. Exile_Item_Can_Empty
  3332. Exile_Item_Magazine01
  3333. Exile_Item_PlasticBottleEmpty
  3334. Exile_Item_ZipTie
  3335. Exile_Item_FuelCanisterEmpty
  3336. Exile_Item_Pliers
  3337. Exile_Item_MetalScrews
  3338. Exile_Item_ZipTie
  3339. Exile_Item_ExtensionCord
  3340. Exile_Item_FuelCanisterFull
  3341. Exile_Item_Pliers
  3342. Exile_Item_FuelCanisterEmpty
  3343. Exile_Item_FuelCanisterEmpty
  3344. Exile_Item_FuelCanisterFull
  3345. Exile_Melee_Shovel
  3346. Exile_Melee_Axe
  3347. Exile_Item_ZipTie
  3348. Exile_Item_ToiletPaper
  3349. Exile_Item_PlasticBottleEmpty
  3350. Exile_Item_Magazine04
  3351. Exile_Item_Handsaw
  3352. Exile_Item_FuelCanisterFull
  3353. Exile_Item_MetalBoard
  3354. Exile_Item_Grinder
  3355. FlareRed_F
  3356. Exile_Item_FuelCanisterFull
  3357. Exile_Item_PlasticBottleEmpty
  3358. Exile_Item_ToiletPaper
  3359. Exile_Item_Pliers
  3360. Exile_Item_ZipTie
  3361. Exile_Item_JunkMetal
  3362. Exile_Item_Can_Empty
  3363. Exile_Item_ZipTie
  3364. Exile_Item_Handsaw
  3365. Exile_Item_ZipTie
  3366. Exile_Item_WaterCanisterEmpty
  3367. Exile_Item_Magazine03
  3368. Exile_Item_ToiletPaper
  3369. Exile_Item_Can_Empty
  3370. Exile_Melee_Shovel
  3371. Exile_Melee_Shovel
  3372. FlareGreen_F
  3373. Exile_Item_FuelCanisterEmpty
  3374. Exile_Item_DuctTape
  3375. FlareYellow_F
  3376. Exile_Item_ZipTie
  3377. Exile_Item_Pliers
  3378. Exile_Item_JunkMetal
  3379. Exile_Item_ToiletPaper
  3380. Exile_Item_FuelCanisterEmpty
  3381. Exile_Item_Handsaw
  3382. Exile_Item_Handsaw
  3383. Exile_Item_Pliers
  3384. Exile_Melee_Shovel
  3385. Exile_Item_Magazine02
  3386. Exile_Item_FuelCanisterFull
  3387. Exile_Item_Magazine03
  3388. Exile_Item_ZipTie
  3389. Exile_Melee_SledgeHammer
  3390. Exile_Item_Foolbox
  3391. */
  3392. class Industrial
  3393. {
  3394. count = 36;
  3395. half = 8180.77803203661;
  3396. halfIndex = 18;
  3397. sum = 10000;
  3398. items[] =
  3399. {
  3400. {1086.95652173913, "Exile_Item_FuelCanisterEmpty"}, // 10.87%
  3401. {1956.52173913043, "Exile_Item_FuelCanisterFull"}, // 8.70%
  3402. {2608.69565217391, "Exile_Item_Can_Empty"}, // 6.52%
  3403. {3260.86956521739, "Exile_Item_ToiletPaper"}, // 6.52%
  3404. {3913.04347826087, "Exile_Item_PlasticBottleEmpty"}, // 6.52%
  3405. {4416.47597254005, "Exile_Melee_Axe"}, // 5.03%
  3406. {4851.2585812357, "Exile_Item_ZipTie"}, // 4.35%
  3407. {5177.34553775744, "FlareWhite_F"}, // 3.26%
  3408. {5503.43249427918, "FlareRed_F"}, // 3.26%
  3409. {5829.51945080091, "FlareGreen_F"}, // 3.26%
  3410. {6155.60640732265, "FlareYellow_F"}, // 3.26%
  3411. {6453.08924485126, "Exile_Item_ScrewDriver"}, // 2.97%
  3412. {6750.57208237986, "Exile_Item_Handsaw"}, // 2.97%
  3413. {7048.05491990847, "Exile_Item_Pliers"}, // 2.97%
  3414. {7299.77116704805, "Exile_Item_JunkMetal"}, // 2.52%
  3415. {7528.60411899313, "Exile_Melee_Shovel"}, // 2.29%
  3416. {7757.43707093821, "Exile_Item_WaterCanisterEmpty"}, // 2.29%
  3417. {7974.82837528604, "Exile_Item_DuctTape"}, // 2.17%
  3418. {8180.77803203661, "Exile_Item_LightBulb"}, // 2.06%
  3419. {8363.84439359268, "Exile_Item_ExtensionCord"}, // 1.83%
  3420. {8526.88787185355, "Exile_Item_Magazine02"}, // 1.63%
  3421. {8689.93135011442, "Exile_Item_Magazine01"}, // 1.63%
  3422. {8852.97482837529, "Exile_Item_Magazine04"}, // 1.63%
  3423. {9016.01830663616, "Exile_Item_Magazine03"}, // 1.63%
  3424. {9130.4347826087, "Exile_Item_MetalScrews"}, // 1.14%
  3425. {9244.85125858124, "Exile_Item_Grinder"}, // 1.14%
  3426. {9359.26773455378, "Exile_Melee_SledgeHammer"}, // 1.14%
  3427. {9450.80091533181, "Exile_Item_Sand"}, // 0.92%
  3428. {9542.33409610984, "Exile_Item_Foolbox"}, // 0.92%
  3429. {9633.86727688787, "Exile_Item_MetalBoard"}, // 0.92%
  3430. {9725.4004576659, "Exile_Item_CamoTentKit"}, // 0.92%
  3431. {9794.05034324943, "Exile_Item_PortableGeneratorKit"}, // 0.69%
  3432. {9862.70022883295, "Exile_Item_FloodLightKit"}, // 0.69%
  3433. {9931.35011441647, "Exile_Item_Cement"}, // 0.69%
  3434. {9977.11670480549, "Exile_Item_Knife"}, // 0.46%
  3435. {10000, "Exile_Item_ThermalScannerPro"} // 0.23%
  3436. };
  3437. };
  3438.  
  3439. /**
  3440. Result of 100 rounds:
  3441.  
  3442. Exile_Item_WaterCanisterEmpty
  3443. Exile_Item_Can_Empty
  3444. Exile_Item_ScrewDriver
  3445. Exile_Item_Magazine02
  3446. Exile_Item_Handsaw
  3447. Exile_Item_WaterCanisterEmpty
  3448. Exile_Item_FloodLightKit
  3449. Exile_Item_Sand
  3450. Exile_Item_ToiletPaper
  3451. Exile_Item_PlasticBottleEmpty
  3452. Exile_Item_Magazine03
  3453. Exile_Item_ToiletPaper
  3454. Exile_Melee_Axe
  3455. Exile_Item_Can_Empty
  3456. Exile_Item_Handsaw
  3457. Exile_Melee_Shovel
  3458. Exile_Item_ToiletPaper
  3459. Exile_Item_PlasticBottleEmpty
  3460. Exile_Item_Can_Empty
  3461. Exile_Item_LightBulb
  3462. Exile_Item_JunkMetal
  3463. Exile_Item_ToiletPaper
  3464. Exile_Item_LightBulb
  3465. Exile_Item_ToiletPaper
  3466. Exile_Item_BaseCameraKit
  3467. Exile_Melee_Shovel
  3468. Exile_Item_PlasticBottleEmpty
  3469. Exile_Item_Magazine04
  3470. Exile_Item_CamoTentKit
  3471. Exile_Item_ToiletPaper
  3472. Exile_Item_Pliers
  3473. Exile_Item_WaterCanisterEmpty
  3474. Exile_Item_Grinder
  3475. Exile_Item_PlasticBottleEmpty
  3476. Exile_Item_Laptop
  3477. Exile_Item_PlasticBottleEmpty
  3478. Exile_Item_MetalBoard
  3479. Exile_Item_PlasticBottleEmpty
  3480. Exile_Item_JunkMetal
  3481. Exile_Item_Pliers
  3482. Exile_Item_ToiletPaper
  3483. Exile_Item_Magazine04
  3484. Exile_Item_Laptop
  3485. Exile_Item_BaseCameraKit
  3486. Exile_Item_PlasticBottleEmpty
  3487. Exile_Item_WaterCanisterEmpty
  3488. Exile_Melee_SledgeHammer
  3489. Exile_Item_BaseCameraKit
  3490. Exile_Item_Magazine03
  3491. Exile_Item_Can_Empty
  3492. Exile_Item_WaterCanisterEmpty
  3493. Exile_Item_PlasticBottleEmpty
  3494. Exile_Item_PlasticBottleEmpty
  3495. Exile_Item_Can_Empty
  3496. Exile_Item_ExtensionCord
  3497. Exile_Item_Laptop
  3498. Exile_Item_BaseCameraKit
  3499. Exile_Item_ToiletPaper
  3500. Exile_Melee_Axe
  3501. Exile_Item_Grinder
  3502. Exile_Melee_Shovel
  3503. Exile_Item_Can_Empty
  3504. Exile_Item_PortableGeneratorKit
  3505. Exile_Item_Sand
  3506. Exile_Item_Handsaw
  3507. Exile_Item_Can_Empty
  3508. Exile_Melee_Axe
  3509. Exile_Item_ToiletPaper
  3510. Exile_Item_WaterCanisterEmpty
  3511. Exile_Item_BaseCameraKit
  3512. Exile_Item_LightBulb
  3513. Exile_Item_ToiletPaper
  3514. Exile_Item_BaseCameraKit
  3515. Exile_Melee_Shovel
  3516. Exile_Item_BaseCameraKit
  3517. Exile_Item_Magazine01
  3518. Exile_Melee_SledgeHammer
  3519. Exile_Item_ToiletPaper
  3520. Exile_Item_Can_Empty
  3521. Exile_Item_ExtensionCord
  3522. Exile_Item_ExtensionCord
  3523. Exile_Item_ScrewDriver
  3524. Exile_Item_PlasticBottleEmpty
  3525. Exile_Item_Magazine02
  3526. Exile_Item_ScrewDriver
  3527. Exile_Item_BaseCameraKit
  3528. Exile_Item_WaterCanisterEmpty
  3529. Exile_Item_LightBulb
  3530. Exile_Melee_Axe
  3531. Exile_Item_PlasticBottleEmpty
  3532. Exile_Melee_Shovel
  3533. Exile_Melee_Shovel
  3534. Exile_Item_WaterCanisterEmpty
  3535. Exile_Item_LightBulb
  3536. Exile_Item_Magazine04
  3537. Exile_Item_Can_Empty
  3538. Exile_Melee_SledgeHammer
  3539. Exile_Item_Pliers
  3540. Exile_Item_MetalBoard
  3541. Exile_Item_CamoTentKit
  3542. */
  3543. class Factories
  3544. {
  3545. count = 30;
  3546. half = 8085.52631578947;
  3547. halfIndex = 15;
  3548. sum = 10000;
  3549. items[] =
  3550. {
  3551. {1000, "Exile_Item_PlasticBottleEmpty"}, // 10.00%
  3552. {2000, "Exile_Item_Can_Empty"}, // 10.00%
  3553. {3000, "Exile_Item_ToiletPaper"}, // 10.00%
  3554. {3723.68421052632, "Exile_Melee_Axe"}, // 7.24%
  3555. {4223.68421052632, "Exile_Item_Laptop"}, // 5.00%
  3556. {4723.68421052632, "Exile_Item_BaseCameraKit"}, // 5.00%
  3557. {5151.31578947368, "Exile_Item_Pliers"}, // 4.28%
  3558. {5578.94736842105, "Exile_Item_Handsaw"}, // 4.28%
  3559. {6006.57894736842, "Exile_Item_ScrewDriver"}, // 4.28%
  3560. {6368.42105263158, "Exile_Item_JunkMetal"}, // 3.62%
  3561. {6697.36842105263, "Exile_Melee_Shovel"}, // 3.29%
  3562. {7026.31578947368, "Exile_Item_WaterCanisterEmpty"}, // 3.29%
  3563. {7322.36842105263, "Exile_Item_LightBulb"}, // 2.96%
  3564. {7585.52631578947, "Exile_Item_ExtensionCord"}, // 2.63%
  3565. {7835.52631578947, "Exile_Item_Magazine01"}, // 2.50%
  3566. {8085.52631578947, "Exile_Item_Magazine02"}, // 2.50%
  3567. {8335.52631578947, "Exile_Item_Magazine03"}, // 2.50%
  3568. {8585.52631578947, "Exile_Item_Magazine04"}, // 2.50%
  3569. {8750, "Exile_Item_Grinder"}, // 1.64%
  3570. {8914.47368421053, "Exile_Item_MetalScrews"}, // 1.64%
  3571. {9078.94736842105, "Exile_Melee_SledgeHammer"}, // 1.64%
  3572. {9210.52631578948, "Exile_Item_Sand"}, // 1.32%
  3573. {9342.1052631579, "Exile_Item_MetalBoard"}, // 1.32%
  3574. {9473.68421052632, "Exile_Item_Foolbox"}, // 1.32%
  3575. {9605.26315789474, "Exile_Item_CamoTentKit"}, // 1.32%
  3576. {9703.94736842106, "Exile_Item_PortableGeneratorKit"}, // 0.99%
  3577. {9802.63157894737, "Exile_Item_FloodLightKit"}, // 0.99%
  3578. {9901.31578947369, "Exile_Item_Cement"}, // 0.99%
  3579. {9967.1052631579, "Exile_Item_Knife"}, // 0.66%
  3580. {10000, "Exile_Item_ThermalScannerPro"} // 0.33%
  3581. };
  3582. };
  3583.  
  3584. /**
  3585. Result of 100 rounds:
  3586.  
  3587. FlareYellow_F
  3588. Exile_Item_FuelCanisterEmpty
  3589. Exile_Item_DuctTape
  3590. Exile_Item_Magazine04
  3591. Exile_Item_ZipTie
  3592. FlareYellow_F
  3593. Exile_Item_MetalBoard
  3594. Exile_Item_LightBulb
  3595. Exile_Item_FuelCanisterFull
  3596. Exile_Item_FuelCanisterEmpty
  3597. Exile_Item_Magazine01
  3598. Exile_Item_FuelCanisterFull
  3599. Exile_Item_Can_Empty
  3600. Exile_Item_FuelCanisterEmpty
  3601. Exile_Item_ZipTie
  3602. FlareRed_F
  3603. Exile_Item_FuelCanisterFull
  3604. Exile_Item_FuelCanisterEmpty
  3605. Exile_Item_FuelCanisterEmpty
  3606. Exile_Melee_Axe
  3607. FlareWhite_F
  3608. Exile_Item_FuelCanisterFull
  3609. Exile_Melee_Axe
  3610. Exile_Item_FuelCanisterFull
  3611. Exile_Item_ToiletPaper
  3612. FlareRed_F
  3613. Exile_Item_FuelCanisterEmpty
  3614. Exile_Item_Magazine02
  3615. Exile_Item_MetalScrews
  3616. Exile_Item_FuelCanisterFull
  3617. Exile_Item_PlasticBottleEmpty
  3618. FlareYellow_F
  3619. Exile_Item_Magazine03
  3620. Exile_Item_FuelCanisterEmpty
  3621. Exile_Item_ToiletPaper
  3622. Exile_Item_FuelCanisterEmpty
  3623. Exile_Item_ExtensionCord
  3624. Exile_Item_FuelCanisterEmpty
  3625. FlareWhite_F
  3626. Exile_Item_PlasticBottleEmpty
  3627. Exile_Item_FuelCanisterFull
  3628. Exile_Item_Magazine03
  3629. Exile_Item_ToiletPaper
  3630. Exile_Item_PlasticBottleEmpty
  3631. Exile_Item_FuelCanisterEmpty
  3632. FlareYellow_F
  3633. Exile_Item_WaterCanisterEmpty
  3634. Exile_Item_PlasticBottleEmpty
  3635. Exile_Item_Magazine04
  3636. Exile_Item_FuelCanisterEmpty
  3637. FlareYellow_F
  3638. Exile_Item_FuelCanisterEmpty
  3639. Exile_Item_FuelCanisterEmpty
  3640. Exile_Item_FuelCanisterEmpty
  3641. Exile_Melee_Axe
  3642. Exile_Item_ToiletPaper
  3643. Exile_Item_PlasticBottleEmpty
  3644. Exile_Item_FuelCanisterFull
  3645. Exile_Item_Can_Empty
  3646. Exile_Item_JunkMetal
  3647. FlareGreen_F
  3648. Exile_Item_FuelCanisterEmpty
  3649. Exile_Item_Sand
  3650. Exile_Item_WaterCanisterEmpty
  3651. Exile_Item_ZipTie
  3652. Exile_Item_FuelCanisterEmpty
  3653. Exile_Item_Can_Empty
  3654. Exile_Item_FuelCanisterFull
  3655. FlareYellow_F
  3656. Exile_Item_PlasticBottleEmpty
  3657. Exile_Melee_Axe
  3658. Exile_Item_FuelCanisterFull
  3659. Exile_Item_PlasticBottleEmpty
  3660. FlareGreen_F
  3661. Exile_Item_PlasticBottleEmpty
  3662. Exile_Item_ScrewDriver
  3663. Exile_Item_WaterCanisterEmpty
  3664. Exile_Item_FuelCanisterFull
  3665. Exile_Item_FuelCanisterFull
  3666. Exile_Melee_Axe
  3667. Exile_Melee_Axe
  3668. Exile_Item_DuctTape
  3669. Exile_Item_FuelCanisterEmpty
  3670. Exile_Item_Handsaw
  3671. Exile_Item_DuctTape
  3672. Exile_Item_PlasticBottleEmpty
  3673. FlareGreen_F
  3674. FlareYellow_F
  3675. Exile_Item_FuelCanisterFull
  3676. Exile_Item_FuelCanisterEmpty
  3677. FlareRed_F
  3678. FlareGreen_F
  3679. FlareYellow_F
  3680. Exile_Melee_Axe
  3681. Exile_Item_Magazine02
  3682. Exile_Item_FuelCanisterEmpty
  3683. Exile_Melee_Shovel
  3684. Exile_Item_PlasticBottleEmpty
  3685. Exile_Item_LightBulb
  3686. Exile_Item_Grinder
  3687. */
  3688. class VehicleService
  3689. {
  3690. count = 36;
  3691. half = 8698.51258581236;
  3692. halfIndex = 18;
  3693. sum = 10000;
  3694. items[] =
  3695. {
  3696. {1739.13043478261, "Exile_Item_FuelCanisterEmpty"}, // 17.39%
  3697. {3130.4347826087, "Exile_Item_FuelCanisterFull"}, // 13.91%
  3698. {3782.60869565217, "Exile_Item_Can_Empty"}, // 6.52%
  3699. {4434.78260869565, "Exile_Item_ToiletPaper"}, // 6.52%
  3700. {5086.95652173913, "Exile_Item_PlasticBottleEmpty"}, // 6.52%
  3701. {5521.73913043478, "Exile_Item_ZipTie"}, // 4.35%
  3702. {5869.5652173913, "Exile_Item_DuctTape"}, // 3.48%
  3703. {6195.65217391304, "FlareWhite_F"}, // 3.26%
  3704. {6521.73913043478, "FlareRed_F"}, // 3.26%
  3705. {6847.82608695652, "FlareGreen_F"}, // 3.26%
  3706. {7173.91304347826, "FlareYellow_F"}, // 3.26%
  3707. {7488.55835240275, "Exile_Melee_Axe"}, // 3.15%
  3708. {7674.48512585812, "Exile_Item_ScrewDriver"}, // 1.86%
  3709. {7860.4118993135, "Exile_Item_Pliers"}, // 1.86%
  3710. {8046.33867276888, "Exile_Item_Handsaw"}, // 1.86%
  3711. {8209.38215102975, "Exile_Item_Magazine04"}, // 1.63%
  3712. {8372.42562929062, "Exile_Item_Magazine01"}, // 1.63%
  3713. {8535.46910755149, "Exile_Item_Magazine02"}, // 1.63%
  3714. {8698.51258581236, "Exile_Item_Magazine03"}, // 1.63%
  3715. {8855.8352402746, "Exile_Item_JunkMetal"}, // 1.57%
  3716. {8998.85583524028, "Exile_Melee_Shovel"}, // 1.43%
  3717. {9141.87643020595, "Exile_Item_WaterCanisterEmpty"}, // 1.43%
  3718. {9270.59496567506, "Exile_Item_LightBulb"}, // 1.29%
  3719. {9385.0114416476, "Exile_Item_ExtensionCord"}, // 1.14%
  3720. {9456.52173913044, "Exile_Melee_SledgeHammer"}, // 0.72%
  3721. {9528.03203661327, "Exile_Item_Grinder"}, // 0.72%
  3722. {9599.54233409611, "Exile_Item_MetalScrews"}, // 0.72%
  3723. {9656.75057208238, "Exile_Item_Sand"}, // 0.57%
  3724. {9713.95881006865, "Exile_Item_Foolbox"}, // 0.57%
  3725. {9771.16704805492, "Exile_Item_MetalBoard"}, // 0.57%
  3726. {9828.37528604119, "Exile_Item_CamoTentKit"}, // 0.57%
  3727. {9871.28146453089, "Exile_Item_PortableGeneratorKit"}, // 0.43%
  3728. {9914.18764302059, "Exile_Item_FloodLightKit"}, // 0.43%
  3729. {9957.0938215103, "Exile_Item_Cement"}, // 0.43%
  3730. {9985.69794050343, "Exile_Item_Knife"}, // 0.29%
  3731. {10000, "Exile_Item_ThermalScannerPro"} // 0.14%
  3732. };
  3733. };
  3734.  
  3735. /**
  3736. Result of 100 rounds:
  3737.  
  3738. Exile_Item_Bandage
  3739. Exile_Item_ToiletPaper
  3740. Rangefinder
  3741. bipod_02_F_hex
  3742. ItemCompass
  3743. muzzle_snds_338_green
  3744. 30Rnd_580x42_Mag_F
  3745. Exile_Item_MobilePhone
  3746. Exile_Item_ToiletPaper
  3747. Exile_Item_Can_Empty
  3748. B_ViperHarness_hex_F
  3749. Exile_Item_ToiletPaper
  3750. Exile_Item_PlasticBottleEmpty
  3751. Exile_Item_Can_Empty
  3752. APERSBoundingMine_Range_Mag
  3753. LMG_03_F
  3754. Exile_Item_PlasticBottleEmpty
  3755. Exile_Item_Can_Empty
  3756. Exile_Item_ToiletPaper
  3757. srifle_GM6_ghex_F
  3758. 10Rnd_338_Mag
  3759. Exile_Item_PlasticBottleEmpty
  3760. srifle_LRR_tna_F
  3761. Exile_Item_PlasticBottleEmpty
  3762. Exile_Item_Magazine03
  3763. Exile_Weapon_PKP
  3764. Exile_Item_Can_Empty
  3765. B_ViperLightHarness_base_F
  3766. H_HelmetB_paint
  3767. Exile_Item_PlasticBottleEmpty
  3768. Exile_Item_Magazine04
  3769. B_Carryall_oli
  3770. U_B_T_FullGhillie_tna_F
  3771. Exile_Item_Can_Empty
  3772. Exile_Item_Magazine02
  3773. Exile_Item_Can_Empty
  3774. muzzle_snds_H_MG_khk_F
  3775. Exile_Item_Can_Empty
  3776. IEDLandSmall_Remote_Mag
  3777. 1Rnd_HE_Grenade_shell
  3778. Exile_Item_PlasticBottleEmpty
  3779. U_B_CTRG_Soldier_2_F
  3780. Exile_Item_Magazine01
  3781. Exile_Item_Magazine03
  3782. Exile_Item_Can_Empty
  3783. U_B_GhillieSuit
  3784. srifle_DMR_03_woodland_F
  3785. Exile_Item_Magazine04
  3786. 5Rnd_127x108_Mag
  3787. Exile_Item_ToiletPaper
  3788. U_I_GhillieSuit
  3789. Exile_Item_Can_Empty
  3790. Exile_Item_Can_Empty
  3791. Exile_Item_ToiletPaper
  3792. 1Rnd_SmokeBlue_Grenade_shell
  3793. Exile_Item_Magazine01
  3794. Exile_Item_Magazine03
  3795. Exile_Item_PlasticBottleEmpty
  3796. Exile_Item_PlasticBottleEmpty
  3797. V_PlateCarrierGL_tna_F
  3798. ItemGPS
  3799. Exile_Item_ToiletPaper
  3800. arifle_SPAR_02_blk_F
  3801. 150Rnd_762x54_Box_Tracer
  3802. HandGrenade
  3803. Exile_Item_ToiletPaper
  3804. Exile_Item_PlasticBottleEmpty
  3805. Exile_Item_PlasticBottleEmpty
  3806. 10Rnd_762x54_Mag
  3807. Exile_Item_Magazine03
  3808. srifle_LRR_tna_F
  3809. Exile_Item_ToiletPaper
  3810. Exile_Item_Magazine03
  3811. SmokeShellRed
  3812. Exile_Item_Magazine04
  3813. optic_KHS_hex
  3814. 3Rnd_SmokePurple_Grenade_shell
  3815. Exile_Item_PlasticBottleEmpty
  3816. Exile_Item_ToiletPaper
  3817. 1Rnd_SmokeOrange_Grenade_shell
  3818. B_Carryall_oucamo
  3819. ItemWatch
  3820. Exile_Item_Can_Empty
  3821. 3Rnd_UGL_FlareWhite_F
  3822. U_IG_Guerilla1_1
  3823. Exile_Item_Magazine03
  3824. B_Carryall_ghex_F
  3825. srifle_GM6_F
  3826. Exile_Item_PlasticBottleEmpty
  3827. Exile_Item_Can_Empty
  3828. LMG_03_F
  3829. SmokeShellOrange
  3830. muzzle_snds_338_black
  3831. 1Rnd_SmokeRed_Grenade_shell
  3832. B_ViperLightHarness_khk_F
  3833. Exile_Item_Can_Empty
  3834. arifle_Katiba_F
  3835. Exile_Item_Magazine04
  3836. muzzle_snds_65_TI_ghex_F
  3837. H_Bandanna_mcamo
  3838. */
  3839. class Military
  3840. {
  3841. count = 552;
  3842. half = 9066.71085627853;
  3843. halfIndex = 276;
  3844. sum = 10000.0000000001;
  3845. items[] =
  3846. {
  3847. {1237.62376237624, "Exile_Item_Can_Empty"}, // 12.38%
  3848. {2475.24752475248, "Exile_Item_ToiletPaper"}, // 12.38%
  3849. {3712.87128712871, "Exile_Item_PlasticBottleEmpty"}, // 12.38%
  3850. {4022.27722772277, "Exile_Item_Magazine01"}, // 3.09%
  3851. {4331.68316831683, "Exile_Item_Magazine02"}, // 3.09%
  3852. {4641.08910891089, "Exile_Item_Magazine03"}, // 3.09%
  3853. {4950.49504950495, "Exile_Item_Magazine04"}, // 3.09%
  3854. {5050, "1Rnd_HE_Grenade_shell"}, // 1.00%
  3855. {5149.0099009901, "Exile_Item_ZipTie"}, // 0.99%
  3856. {5235.10546706845, "ItemCompass"}, // 0.86%
  3857. {5309.36289281102, "MiniGrenade"}, // 0.74%
  3858. {5383.62031855359, "HandGrenade"}, // 0.74%
  3859. {5433.12526904864, "APERSMine_Range_Mag"}, // 0.50%
  3860. {5482.63021954369, "APERSTripMine_Wire_Mag"}, // 0.50%
  3861. {5532.13517003874, "APERSBoundingMine_Range_Mag"}, // 0.50%
  3862. {5581.14507102884, "3Rnd_HE_Grenade_shell"}, // 0.49%
  3863. {5625.14947146889, "Exile_Item_Heatpack"}, // 0.44%
  3864. {5668.19725450806, "Rangefinder"}, // 0.43%
  3865. {5706.7011048931, "ItemMap"}, // 0.39%
  3866. {5743.37143859313, "Exile_Item_Vishpirin"}, // 0.37%
  3867. {5780.04177229317, "Exile_Item_Heatpack"}, // 0.37%
  3868. {5813.0450726232, "ItemWatch"}, // 0.33%
  3869. {5846.04837295324, "ItemRadio"}, // 0.33%
  3870. {5876.51295787327, "U_IG_Guerilla1_1"}, // 0.30%
  3871. {5906.9775427933, "U_IG_Guerilla2_1"}, // 0.30%
  3872. {5937.44212771333, "U_IG_Guerilla2_3"}, // 0.30%
  3873. {5967.90671263336, "U_IG_Guerilla2_2"}, // 0.30%
  3874. {5997.60968293039, "IEDUrbanSmall_Remote_Mag"}, // 0.30%
  3875. {6027.31265322742, "DemoCharge_Remote_Mag"}, // 0.30%
  3876. {6057.01562352445, "IEDLandSmall_Remote_Mag"}, // 0.30%
  3877. {6086.71859382148, "150Rnd_93x64_Mag"}, // 0.30%
  3878. {6115.279142184, "U_IG_Guerilla3_2"}, // 0.29%
  3879. {6143.83969054653, "U_IG_Guerilla3_1"}, // 0.29%
  3880. {6171.63194345603, "10Rnd_338_Mag"}, // 0.28%
  3881. {6199.42419636554, "10Rnd_93x64_DMR_05_Mag"}, // 0.28%
  3882. {6224.67172111801, "UGL_FlareYellow_F"}, // 0.25%
  3883. {6249.91924587049, "UGL_FlareRed_F"}, // 0.25%
  3884. {6275.16677062296, "UGL_FlareGreen_F"}, // 0.25%
  3885. {6300.41429537544, "UGL_FlareWhite_F"}, // 0.25%
  3886. {6325.16677062296, "LMG_Mk200_F"}, // 0.25%
  3887. {6349.91924587049, "arifle_MX_SW_Black_F"}, // 0.25%
  3888. {6374.67172111801, "arifle_MX_SW_F"}, // 0.25%
  3889. {6399.42419636554, "LMG_Zafir_F"}, // 0.25%
  3890. {6424.17667161306, "Exile_Weapon_RPK"}, // 0.25%
  3891. {6448.92914686059, "Exile_Weapon_PK"}, // 0.25%
  3892. {6473.68162210811, "Exile_Weapon_PKP"}, // 0.25%
  3893. {6498.43409735563, "LMG_03_F"}, // 0.25%
  3894. {6522.75231865145, "10Rnd_127x54_Mag"}, // 0.24%
  3895. {6544.75451887147, "Binocular"}, // 0.22%
  3896. {6566.75671909149, "ItemGPS"}, // 0.22%
  3897. {6587.97312644651, "SmokeShellBlue"}, // 0.21%
  3898. {6609.18953380153, "SmokeShellOrange"}, // 0.21%
  3899. {6630.40594115656, "SmokeShellYellow"}, // 0.21%
  3900. {6651.62234851158, "SmokeShellGreen"}, // 0.21%
  3901. {6672.8387558666, "SmokeShellRed"}, // 0.21%
  3902. {6694.05516322162, "SmokeShell"}, // 0.21%
  3903. {6715.27157057664, "SmokeShellPurple"}, // 0.21%
  3904. {6736.06364978456, "20Rnd_650x39_Cased_Mag_F"}, // 0.21%
  3905. {6755.86562998258, "srifle_EBR_F"}, // 0.20%
  3906. {6775.6676101806, "srifle_DMR_01_F"}, // 0.20%
  3907. {6794.77478405588, "20Rnd_762x51_Mag"}, // 0.19%
  3908. {6813.71291948016, "B_Carryall_cbr"}, // 0.19%
  3909. {6832.65105490445, "B_Carryall_ghex_F"}, // 0.19%
  3910. {6851.46293609256, "20Rnd_762x51_Mag"}, // 0.19%
  3911. {6869.79810294258, "Exile_Item_Bandage"}, // 0.18%
  3912. {6887.73949439716, "B_Carryall_oli"}, // 0.18%
  3913. {6905.68088585175, "B_Carryall_khk"}, // 0.18%
  3914. {6922.51256902006, "10Rnd_762x54_Mag"}, // 0.17%
  3915. {6939.01421918508, "muzzle_snds_338_black"}, // 0.17%
  3916. {6955.5158693501, "V_RebreatherIA"}, // 0.17%
  3917. {6972.01751951511, "V_RebreatherIR"}, // 0.17%
  3918. {6988.51916968013, "V_RebreatherB"}, // 0.17%
  3919. {7005.02081984514, "U_B_GhillieSuit"}, // 0.17%
  3920. {7021.52247001016, "muzzle_snds_338_green"}, // 0.17%
  3921. {7038.02412017518, "U_I_GhillieSuit"}, // 0.17%
  3922. {7054.52577034019, "muzzle_snds_93mmg"}, // 0.17%
  3923. {7071.02742050521, "muzzle_snds_93mmg_tan"}, // 0.17%
  3924. {7087.52907067022, "muzzle_snds_B"}, // 0.17%
  3925. {7104.03072083524, "U_O_GhillieSuit"}, // 0.17%
  3926. {7120.53237100026, "muzzle_snds_338_sand"}, // 0.17%
  3927. {7136.58803062027, "srifle_DMR_05_hex_F"}, // 0.16%
  3928. {7152.64369024029, "srifle_DMR_05_blk_F"}, // 0.16%
  3929. {7168.6993498603, "srifle_DMR_05_tan_F"}, // 0.16%
  3930. {7184.25804858732, "srifle_GM6_F"}, // 0.16%
  3931. {7199.81674731433, "srifle_LRR_F"}, // 0.16%
  3932. {7215.37544604135, "srifle_LRR_tna_F"}, // 0.16%
  3933. {7230.93414476837, "srifle_GM6_ghex_F"}, // 0.16%
  3934. {7246.49284349538, "srifle_DMR_07_blk_F"}, // 0.16%
  3935. {7262.0515422224, "srifle_DMR_07_ghex_F"}, // 0.16%
  3936. {7277.61024094941, "srifle_DMR_07_hex_F"}, // 0.16%
  3937. {7292.76481763157, "1Rnd_SmokeGreen_Grenade_shell"}, // 0.15%
  3938. {7307.91939431373, "1Rnd_SmokeYellow_Grenade_shell"}, // 0.15%
  3939. {7323.07397099589, "1Rnd_SmokeRed_Grenade_shell"}, // 0.15%
  3940. {7338.22854767804, "1Rnd_SmokePurple_Grenade_shell"}, // 0.15%
  3941. {7353.3831243602, "1Rnd_SmokeBlue_Grenade_shell"}, // 0.15%
  3942. {7368.53770104236, "1Rnd_SmokeOrange_Grenade_shell"}, // 0.15%
  3943. {7383.69227772452, "1Rnd_Smoke_Grenade_shell"}, // 0.15%
  3944. {7398.64343727, "B_Carryall_ocamo"}, // 0.15%
  3945. {7413.59459681549, "B_Carryall_oucamo"}, // 0.15%
  3946. {7428.54575636097, "B_Carryall_mcamo"}, // 0.15%
  3947. {7443.39724150949, "V_PlateCarrier2_rgr"}, // 0.15%
  3948. {7458.248726658, "V_PlateCarrierIAGL_dgtl"}, // 0.15%
  3949. {7473.10021180652, "V_PlateCarrier3_rgr"}, // 0.15%
  3950. {7487.95169695504, "V_PlateCarrierGL_rgr"}, // 0.15%
  3951. {7502.80318210355, "V_PlateCarrierIA1_dgtl"}, // 0.15%
  3952. {7517.65466725207, "V_PlateCarrierIA2_dgtl"}, // 0.15%
  3953. {7532.50615240058, "V_PlateCarrierSpec_rgr"}, // 0.15%
  3954. {7547.3576375491, "V_PlateCarrier1_blk"}, // 0.15%
  3955. {7562.20912269761, "V_PlateCarrier1_rgr"}, // 0.15%
  3956. {7576.35339426762, "optic_AMS_snd"}, // 0.14%
  3957. {7590.49766583764, "optic_KHS_tan"}, // 0.14%
  3958. {7604.64193740765, "optic_KHS_old"}, // 0.14%
  3959. {7618.78620897767, "optic_KHS_hex"}, // 0.14%
  3960. {7632.93048054768, "optic_AMS_khk"}, // 0.14%
  3961. {7647.0747521177, "optic_AMS"}, // 0.14%
  3962. {7661.21902368771, "optic_KHS_blk"}, // 0.14%
  3963. {7675.26772585522, "srifle_DMR_04_F"}, // 0.14%
  3964. {7689.31642802274, "srifle_DMR_04_Tan_F"}, // 0.14%
  3965. {7703.09171859527, "O_NVGoggles_ghex_F"}, // 0.14%
  3966. {7716.86700916781, "NVGoggles_tna_F"}, // 0.14%
  3967. {7730.64229974035, "O_NVGoggles_hex_F"}, // 0.14%
  3968. {7744.41759031288, "NVGoggles"}, // 0.14%
  3969. {7758.19288088542, "O_NVGoggles_urb_F"}, // 0.14%
  3970. {7771.83199989936, "optic_DMS"}, // 0.14%
  3971. {7784.96596635723, "optic_SOS"}, // 0.13%
  3972. {7798.0999328151, "optic_SOS_khk_F"}, // 0.13%
  3973. {7811.23389927297, "optic_LRPS"}, // 0.13%
  3974. {7824.36786573084, "optic_LRPS_tna_F"}, // 0.13%
  3975. {7837.50183218871, "optic_LRPS_ghex_F"}, // 0.13%
  3976. {7849.54357690372, "srifle_DMR_02_sniper_F"}, // 0.12%
  3977. {7861.58532161873, "srifle_DMR_02_F"}, // 0.12%
  3978. {7873.62706633374, "srifle_DMR_02_camo_F"}, // 0.12%
  3979. {7885.50825445256, "3Rnd_UGL_FlareGreen_F"}, // 0.12%
  3980. {7897.38944257137, "3Rnd_UGL_FlareRed_F"}, // 0.12%
  3981. {7909.27063069018, "3Rnd_UGL_FlareWhite_F"}, // 0.12%
  3982. {7921.15181880899, "3Rnd_UGL_FlareYellow_F"}, // 0.12%
  3983. {7932.56036707123, "B_FieldPack_ocamo"}, // 0.11%
  3984. {7943.96891533346, "B_FieldPack_oucamo"}, // 0.11%
  3985. {7955.3774635957, "B_FieldPack_cbr"}, // 0.11%
  3986. {7966.78601185793, "B_FieldPack_blk"}, // 0.11%
  3987. {7977.93282190317, "bipod_01_F_snd"}, // 0.11%
  3988. {7989.07963194842, "bipod_01_F_blk"}, // 0.11%
  3989. {8000.22644199366, "bipod_02_F_blk"}, // 0.11%
  3990. {8011.3732520389, "bipod_02_F_tan"}, // 0.11%
  3991. {8022.52006208414, "bipod_03_F_blk"}, // 0.11%
  3992. {8033.66687212939, "bipod_01_F_khk"}, // 0.11%
  3993. {8044.81368217463, "bipod_03_F_oli"}, // 0.11%
  3994. {8055.30479751133, "bipod_02_F_hex"}, // 0.10%
  3995. {8065.79591284803, "bipod_01_F_mtp"}, // 0.10%
  3996. {8076.19195245199, "V_BandollierB_blk"}, // 0.10%
  3997. {8086.58799205595, "V_BandollierB_oli"}, // 0.10%
  3998. {8096.98403165991, "V_BandollierB_cbr"}, // 0.10%
  3999. {8107.38007126387, "V_BandollierB_khk"}, // 0.10%
  4000. {8117.77611086783, "V_HarnessO_brn"}, // 0.10%
  4001. {8128.17215047179, "V_HarnessOGL_brn"}, // 0.10%
  4002. {8138.56819007575, "V_HarnessO_gry"}, // 0.10%
  4003. {8148.96422967971, "V_HarnessOGL_gry"}, // 0.10%
  4004. {8159.36026928367, "V_HarnessOSpec_brn"}, // 0.10%
  4005. {8169.75630888763, "V_HarnessOSpec_gry"}, // 0.10%
  4006. {8180.15234849159, "V_BandollierB_rgr"}, // 0.10%
  4007. {8190.0533385906, "5Rnd_127x108_Mag"}, // 0.10%
  4008. {8199.95432868961, "7Rnd_408_Mag"}, // 0.10%
  4009. {8209.85531878862, "SatchelCharge_Remote_Mag"}, // 0.10%
  4010. {8219.45321735399, "muzzle_snds_B"}, // 0.10%
  4011. {8228.9734001415, "U_I_C_Soldier_Para_1_F"}, // 0.10%
  4012. {8238.49358292901, "U_I_C_Soldier_Para_2_F"}, // 0.10%
  4013. {8248.01376571652, "U_I_C_Soldier_Para_3_F"}, // 0.10%
  4014. {8257.53394850403, "U_I_C_Soldier_Para_4_F"}, // 0.10%
  4015. {8267.05413129154, "U_I_C_Soldier_Para_5_F"}, // 0.10%
  4016. {8276.57431407905, "U_I_C_Soldier_Camo_F"}, // 0.10%
  4017. {8285.53817342794, "B_ViperHarness_oli_F"}, // 0.09%
  4018. {8294.50203277684, "B_ViperHarness_blk_F"}, // 0.09%
  4019. {8303.46589212574, "B_ViperHarness_ghex_F"}, // 0.09%
  4020. {8312.42975147464, "B_ViperHarness_hex_F"}, // 0.09%
  4021. {8321.39361082354, "B_ViperLightHarness_ghex_F"}, // 0.09%
  4022. {8330.35747017243, "B_ViperLightHarness_hex_F"}, // 0.09%
  4023. {8339.32132952133, "B_FieldPack_ghex_F"}, // 0.09%
  4024. {8348.28518887023, "B_ViperLightHarness_blk_F"}, // 0.09%
  4025. {8357.24904821913, "B_ViperHarness_khk_F"}, // 0.09%
  4026. {8366.21290756803, "B_ViperLightHarness_oli_F"}, // 0.09%
  4027. {8375.17676691692, "B_ViperHarness_base_F"}, // 0.09%
  4028. {8384.14062626582, "B_ViperLightHarness_base_F"}, // 0.09%
  4029. {8393.10448561472, "B_Bergen_blk"}, // 0.09%
  4030. {8402.06834496362, "B_Bergen_rgr"}, // 0.09%
  4031. {8411.03220431252, "B_Bergen_mcamo"}, // 0.09%
  4032. {8419.99606366141, "B_Bergen_sgg"}, // 0.09%
  4033. {8428.95992301031, "B_ViperLightHarness_khk_F"}, // 0.09%
  4034. {8437.10218460489, "U_O_T_Officer_F"}, // 0.08%
  4035. {8445.24444619947, "U_O_T_Soldier_F"}, // 0.08%
  4036. {8453.38670779406, "U_B_CTRG_2"}, // 0.08%
  4037. {8461.52896938864, "U_B_CTRG_3"}, // 0.08%
  4038. {8469.67123098322, "U_B_CombatUniform_mcam"}, // 0.08%
  4039. {8477.8134925778, "U_B_CombatUniform_mcam_tshirt"}, // 0.08%
  4040. {8485.95575417238, "U_B_CombatUniform_mcam_vest"}, // 0.08%
  4041. {8494.09801576696, "U_B_GEN_Commander_F"}, // 0.08%
  4042. {8502.24027736154, "U_B_GEN_Soldier_F"}, // 0.08%
  4043. {8510.38253895612, "U_B_CTRG_Soldier_urb_3_F"}, // 0.08%
  4044. {8518.52480055071, "U_B_CTRG_Soldier_urb_2_F"}, // 0.08%
  4045. {8526.66706214529, "U_B_CTRG_Soldier_urb_1_F"}, // 0.08%
  4046. {8534.80932373987, "U_B_CTRG_Soldier_3_F"}, // 0.08%
  4047. {8542.95158533445, "U_B_CTRG_Soldier_2_F"}, // 0.08%
  4048. {8551.09384692903, "U_B_CTRG_Soldier_F"}, // 0.08%
  4049. {8559.23610852361, "U_B_T_Soldier_SL_F"}, // 0.08%
  4050. {8567.37837011819, "U_B_CombatUniform_mcam_worn"}, // 0.08%
  4051. {8575.52063171277, "U_B_T_Soldier_AR_F"}, // 0.08%
  4052. {8583.66289330736, "U_B_CTRG_1"}, // 0.08%
  4053. {8591.58368538656, "5Rnd_127x108_APDS_Mag"}, // 0.08%
  4054. {8599.19983161657, "U_IG_leader"}, // 0.08%
  4055. {8606.62557419083, "V_PlateCarrierH_CTRG"}, // 0.07%
  4056. {8614.05131676509, "V_PlateCarrierL_CTRG"}, // 0.07%
  4057. {8621.47705933935, "V_Chestrig_oli"}, // 0.07%
  4058. {8628.9028019136, "V_Chestrig_rgr"}, // 0.07%
  4059. {8636.32854448786, "V_Chestrig_blk"}, // 0.07%
  4060. {8643.75428706212, "V_Chestrig_khk"}, // 0.07%
  4061. {8651.08835380213, "Exile_Item_InstaDoc"}, // 0.07%
  4062. {8658.36849358081, "U_O_T_FullGhillie_tna_F"}, // 0.07%
  4063. {8665.6486333595, "U_B_T_FullGhillie_tna_F"}, // 0.07%
  4064. {8672.92877313818, "U_B_T_Soldier_F"}, // 0.07%
  4065. {8680.20891291687, "U_B_T_Sniper_F"}, // 0.07%
  4066. {8687.48905269555, "U_O_T_Sniper_F"}, // 0.07%
  4067. {8694.56118848056, "V_BandollierB_ghex_F"}, // 0.07%
  4068. {8701.63332426556, "V_HarnessOGL_ghex_F"}, // 0.07%
  4069. {8708.70546005057, "V_HarnessO_ghex_F"}, // 0.07%
  4070. {8715.77759583558, "V_PlateCarrierGL_tna_F"}, // 0.07%
  4071. {8722.84973162058, "V_PlateCarrierSpec_tna_F"}, // 0.07%
  4072. {8729.92186740559, "V_PlateCarrier1_tna_F"}, // 0.07%
  4073. {8736.9940031906, "V_TacChestrig_oli_F"}, // 0.07%
  4074. {8744.06613897561, "V_TacVest_gen_F"}, // 0.07%
  4075. {8751.13827476061, "V_TacChestrig_grn_F"}, // 0.07%
  4076. {8758.21041054562, "V_PlateCarrierSpec_rgr"}, // 0.07%
  4077. {8765.28254633063, "V_PlateCarrierSpec_mtp"}, // 0.07%
  4078. {8772.35468211563, "V_PlateCarrierSpec_blk"}, // 0.07%
  4079. {8779.42681790064, "V_PlateCarrierIAGL_oli"}, // 0.07%
  4080. {8786.49895368565, "V_PlateCarrierIAGL_dgtl"}, // 0.07%
  4081. {8793.57108947066, "V_PlateCarrierGL_rgr"}, // 0.07%
  4082. {8800.64322525566, "V_PlateCarrierGL_mtp"}, // 0.07%
  4083. {8807.71536104067, "V_PlateCarrierGL_blk"}, // 0.07%
  4084. {8814.78749682568, "V_TacChestrig_cbr_F"}, // 0.07%
  4085. {8821.85963261068, "V_PlateCarrier1_rgr_noflag_F"}, // 0.07%
  4086. {8828.93176839569, "V_PlateCarrier2_tna_F"}, // 0.07%
  4087. {8836.0039041807, "V_PlateCarrier2_rgr_noflag_F"}, // 0.07%
  4088. {8842.99283836823, "150Rnd_762x54_Box"}, // 0.07%
  4089. {8849.98177255577, "100Rnd_65x39_caseless_mag"}, // 0.07%
  4090. {8856.93564520056, "acc_flashlight"}, // 0.07%
  4091. {8863.48391907557, "Exile_Weapon_LeeEnfield"}, // 0.07%
  4092. {8870.03219295058, "Exile_Weapon_AK74"}, // 0.07%
  4093. {8876.58046682558, "Exile_Weapon_AK74_GL"}, // 0.07%
  4094. {8883.12874070059, "Exile_Weapon_AK107_GL"}, // 0.07%
  4095. {8889.6770145756, "Exile_Weapon_AK107"}, // 0.07%
  4096. {8896.2252884506, "Exile_Weapon_DMR"}, // 0.07%
  4097. {8902.77356232561, "Exile_Weapon_AKS_Gold"}, // 0.07%
  4098. {8909.32183620062, "Exile_Weapon_CZ550"}, // 0.07%
  4099. {8915.87011007562, "Exile_Weapon_AK47"}, // 0.07%
  4100. {8922.41838395063, "Exile_Weapon_SVDCamo"}, // 0.07%
  4101. {8928.96665782564, "Exile_Weapon_VSSVintorez"}, // 0.07%
  4102. {8935.51493170065, "arifle_Katiba_F"}, // 0.07%
  4103. {8942.06320557565, "Exile_Weapon_SVD"}, // 0.07%
  4104. {8948.57701485132, "U_I_pilotCoveralls"}, // 0.07%
  4105. {8955.09082412698, "U_B_PilotCoveralls"}, // 0.07%
  4106. {8961.60463340265, "U_O_PilotCoveralls"}, // 0.07%
  4107. {8968.11844267831, "U_I_HeliPilotCoveralls"}, // 0.07%
  4108. {8974.63225195397, "U_I_CombatUniform"}, // 0.07%
  4109. {8981.14606122964, "U_I_CombatUniform_shortsleeve"}, // 0.07%
  4110. {8987.6598705053, "U_I_CombatUniform_tshirt"}, // 0.07%
  4111. {8994.17367978097, "U_B_HeliPilotCoveralls"}, // 0.07%
  4112. {9000.23551045383, "3Rnd_SmokeYellow_Grenade_shell"}, // 0.06%
  4113. {9006.29734112669, "3Rnd_SmokePurple_Grenade_shell"}, // 0.06%
  4114. {9012.35917179956, "3Rnd_SmokeRed_Grenade_shell"}, // 0.06%
  4115. {9018.42100247242, "3Rnd_SmokeOrange_Grenade_shell"}, // 0.06%
  4116. {9024.48283314528, "3Rnd_SmokeGreen_Grenade_shell"}, // 0.06%
  4117. {9030.54466381814, "3Rnd_SmokeBlue_Grenade_shell"}, // 0.06%
  4118. {9036.60649449101, "3Rnd_Smoke_Grenade_shell"}, // 0.06%
  4119. {9042.62736684851, "srifle_DMR_03_F"}, // 0.06%
  4120. {9048.64823920602, "srifle_DMR_03_khaki_F"}, // 0.06%
  4121. {9054.66911156352, "srifle_DMR_03_tan_F"}, // 0.06%
  4122. {9060.68998392103, "srifle_DMR_03_woodland_F"}, // 0.06%
  4123. {9066.71085627853, "srifle_DMR_06_camo_F"}, // 0.06%
  4124. {9072.73172863604, "srifle_DMR_06_olive_F"}, // 0.06%
  4125. {9078.71219245423, "B_Bergen_hex_F"}, // 0.06%
  4126. {9084.69265627243, "B_Bergen_tna_F"}, // 0.06%
  4127. {9090.67312009062, "B_Bergen_dgtl_F"}, // 0.06%
  4128. {9096.65358390881, "B_Bergen_Base_F"}, // 0.06%
  4129. {9102.63404772701, "B_Bergen_mcamo_F"}, // 0.06%
  4130. {9108.45815954995, "Exile_Magazine_100Rnd_762x54_PK_Green"}, // 0.06%
  4131. {9114.2822713729, "200Rnd_556x45_Box_Red_F"}, // 0.06%
  4132. {9120.10638319585, "100Rnd_65x39_caseless_mag_Tracer"}, // 0.06%
  4133. {9125.9304950188, "Exile_Magazine_75Rnd_545x39_RPK_Green"}, // 0.06%
  4134. {9131.75460684174, "Exile_Magazine_45Rnd_545x39_RPK_Green"}, // 0.06%
  4135. {9137.57871866469, "150Rnd_762x54_Box_Tracer"}, // 0.06%
  4136. {9143.40283048764, "200Rnd_556x45_Box_Tracer_Red_F"}, // 0.06%
  4137. {9149.22694231058, "200Rnd_556x45_Box_Tracer_F"}, // 0.06%
  4138. {9155.05105413353, "200Rnd_556x45_Box_F"}, // 0.06%
  4139. {9160.55160418854, "Exile_Item_MobilePhone"}, // 0.06%
  4140. {9165.89386503333, "30Rnd_65x39_caseless_green"}, // 0.05%
  4141. {9171.23612587811, "30Rnd_556x45_Stanag"}, // 0.05%
  4142. {9176.5783867229, "30Rnd_556x45_Stanag_green"}, // 0.05%
  4143. {9181.92064756769, "30Rnd_556x45_Stanag_red"}, // 0.05%
  4144. {9187.1592666677, "arifle_TRG20_F"}, // 0.05%
  4145. {9192.3978857677, "arifle_MXC_khk_F"}, // 0.05%
  4146. {9197.63650486771, "arifle_MX_khk_F"}, // 0.05%
  4147. {9202.87512396772, "arifle_MX_F"}, // 0.05%
  4148. {9208.11374306772, "arifle_MXC_F"}, // 0.05%
  4149. {9213.35236216773, "arifle_TRG21_F"}, // 0.05%
  4150. {9218.59098126773, "arifle_Katiba_GL_F"}, // 0.05%
  4151. {9223.64250682845, "muzzle_snds_B_snd_F"}, // 0.05%
  4152. {9228.69403238917, "muzzle_snds_B_khk_F"}, // 0.05%
  4153. {9233.66108427831, "muzzle_snds_H_MG_blk_F"}, // 0.05%
  4154. {9238.62813616744, "optic_ERCO_snd_F"}, // 0.05%
  4155. {9243.59518805658, "optic_Holosight_khk_F"}, // 0.05%
  4156. {9248.56223994572, "muzzle_snds_65_TI_ghex_F"}, // 0.05%
  4157. {9253.52929183485, "optic_DMS_ghex_F"}, // 0.05%
  4158. {9258.49634372399, "muzzle_snds_65_TI_hex_F"}, // 0.05%
  4159. {9263.46339561313, "optic_DMS"}, // 0.05%
  4160. {9268.43044750226, "muzzle_snds_65_TI_blk_F"}, // 0.05%
  4161. {9273.3974993914, "muzzle_snds_58_wdm_F"}, // 0.05%
  4162. {9278.36455128053, "muzzle_snds_m_snd_F"}, // 0.05%
  4163. {9283.33160316967, "muzzle_snds_H_MG_khk_F"}, // 0.05%
  4164. {9288.29865505881, "optic_Arco"}, // 0.05%
  4165. {9293.26570694794, "optic_Arco_blk_F"}, // 0.05%
  4166. {9298.23275883708, "optic_Arco_ghex_F"}, // 0.05%
  4167. {9303.19981072622, "optic_ERCO_khk_F"}, // 0.05%
  4168. {9308.16686261535, "optic_Hamr"}, // 0.05%
  4169. {9313.13391450449, "optic_Hamr_khk_F"}, // 0.05%
  4170. {9318.10096639362, "optic_Holosight"}, // 0.05%
  4171. {9323.06801828276, "muzzle_snds_m_khk_F"}, // 0.05%
  4172. {9328.0350701719, "muzzle_snds_58_blk_F"}, // 0.05%
  4173. {9333.00212206103, "muzzle_snds_H_snd_F"}, // 0.05%
  4174. {9337.96917395017, "muzzle_snds_H_khk_F"}, // 0.05%
  4175. {9342.9362258393, "muzzle_snds_H"}, // 0.05%
  4176. {9347.90327772844, "muzzle_snds_M"}, // 0.05%
  4177. {9352.87032961758, "optic_Holosight_blk_F"}, // 0.05%
  4178. {9357.83738150671, "optic_MRCO"}, // 0.05%
  4179. {9362.80443339585, "acc_pointer_IR"}, // 0.05%
  4180. {9367.77148528499, "optic_ERCO_blk_F"}, // 0.05%
  4181. {9372.72198033449, "Exile_Magazine_10Rnd_93x64_DMR_05_Bullet_Cam_Mag"}, // 0.05%
  4182. {9377.672475384, "Exile_Magazine_10Rnd_338_Bullet_Cam_Mag"}, // 0.05%
  4183. {9382.55783234074, "U_B_SpecopsUniform_sgg"}, // 0.05%
  4184. {9387.4271717337, "H_Booniehat_khk"}, // 0.05%
  4185. {9392.29651112665, "H_Booniehat_mcamo"}, // 0.05%
  4186. {9397.16585051961, "Exile_Headgear_GasMask"}, // 0.05%
  4187. {9402.03518991257, "H_Booniehat_dirty"}, // 0.05%
  4188. {9406.90452930552, "H_Booniehat_dgtl"}, // 0.05%
  4189. {9411.77386869848, "H_Booniehat_khk_hs"}, // 0.05%
  4190. {9416.64320809143, "H_Booniehat_indp"}, // 0.05%
  4191. {9421.51254748439, "H_Booniehat_tan"}, // 0.05%
  4192. {9426.38188687734, "H_Booniehat_grn"}, // 0.05%
  4193. {9431.21163814515, "H_MilCap_blue"}, // 0.05%
  4194. {9436.04138941296, "H_MilCap_oucamo"}, // 0.05%
  4195. {9440.87114068077, "H_MilCap_mcamo"}, // 0.05%
  4196. {9445.70089194858, "H_MilCap_ocamo"}, // 0.05%
  4197. {9450.53064321639, "Exile_Headgear_GasMask"}, // 0.05%
  4198. {9455.3603944842, "H_MilCap_rucamo"}, // 0.05%
  4199. {9460.19014575201, "H_MilCap_dgtl"}, // 0.05%
  4200. {9464.77393746451, "arifle_Mk20_F"}, // 0.05%
  4201. {9469.35772917701, "arifle_Mk20C_F"}, // 0.05%
  4202. {9473.81317472157, "V_I_G_resistanceLeader_F"}, // 0.04%
  4203. {9477.74213904657, "arifle_MXM_F"}, // 0.04%
  4204. {9481.67110337157, "arifle_SDAR_F"}, // 0.04%
  4205. {9485.58876132442, "20Rnd_556x45_UW_mag"}, // 0.04%
  4206. {9489.39683443942, "U_I_G_resistanceLeader_F"}, // 0.04%
  4207. {9493.04883898414, "H_Bandanna_khk_hs"}, // 0.04%
  4208. {9496.70084352886, "H_Bandanna_khk"}, // 0.04%
  4209. {9500.35284807357, "H_Watchcap_blk"}, // 0.04%
  4210. {9504.00485261829, "H_Cap_khaki_specops_UK"}, // 0.04%
  4211. {9507.656857163, "H_Cap_tan_specops_US"}, // 0.04%
  4212. {9511.30886170772, "H_Cap_brn_SPECOPS"}, // 0.04%
  4213. {9514.96086625244, "H_Watchcap_khk"}, // 0.04%
  4214. {9518.61287079715, "H_BandMask_blk"}, // 0.04%
  4215. {9522.26487534187, "H_Bandanna_mcamo"}, // 0.04%
  4216. {9525.91687988658, "H_Bandanna_camo"}, // 0.04%
  4217. {9529.5688844313, "H_Bandanna_sgg"}, // 0.04%
  4218. {9533.22088897602, "H_Bandanna_cbr"}, // 0.04%
  4219. {9536.87289352073, "H_Hat_camo"}, // 0.04%
  4220. {9540.52489806545, "H_Bandanna_gry"}, // 0.04%
  4221. {9544.1472115163, "H_HelmetB"}, // 0.04%
  4222. {9547.76952496716, "H_HelmetB_paint"}, // 0.04%
  4223. {9551.39183841802, "H_HelmetB_light"}, // 0.04%
  4224. {9555.01415186887, "H_HelmetB_plain_blk"}, // 0.04%
  4225. {9558.63646531973, "H_HelmetSpecB"}, // 0.04%
  4226. {9562.25877877059, "H_HelmetSpecB_paint1"}, // 0.04%
  4227. {9565.88109222144, "H_HelmetSpecB_paint2"}, // 0.04%
  4228. {9569.5034056723, "H_HelmetSpecB_blk"}, // 0.04%
  4229. {9573.12571912315, "H_HelmetIA"}, // 0.04%
  4230. {9576.39985606066, "arifle_AKM_F"}, // 0.03%
  4231. {9579.67399299816, "arifle_SPAR_03_khk_F"}, // 0.03%
  4232. {9582.94812993566, "arifle_SPAR_01_GL_snd_F"}, // 0.03%
  4233. {9586.22226687317, "arifle_SPAR_01_GL_khk_F"}, // 0.03%
  4234. {9589.49640381067, "arifle_SPAR_01_GL_blk_F"}, // 0.03%
  4235. {9592.77054074818, "arifle_SPAR_01_snd_F"}, // 0.03%
  4236. {9596.04467768568, "arifle_SPAR_01_khk_F"}, // 0.03%
  4237. {9599.31881462318, "arifle_SPAR_01_blk_F"}, // 0.03%
  4238. {9602.59295156069, "arifle_CTARS_hex_F"}, // 0.03%
  4239. {9605.86708849819, "arifle_CTARS_ghex_F"}, // 0.03%
  4240. {9609.14122543569, "arifle_CTARS_blk_F"}, // 0.03%
  4241. {9612.4153623732, "arifle_SPAR_02_blk_F"}, // 0.03%
  4242. {9615.6894993107, "arifle_CTAR_GL_blk_F"}, // 0.03%
  4243. {9618.9636362482, "arifle_CTAR_blk_F"}, // 0.03%
  4244. {9622.23777318571, "arifle_ARX_hex_F"}, // 0.03%
  4245. {9625.51191012321, "arifle_ARX_ghex_F"}, // 0.03%
  4246. {9628.78604706071, "arifle_ARX_blk_F"}, // 0.03%
  4247. {9632.06018399822, "arifle_AKS_F"}, // 0.03%
  4248. {9635.33432093572, "arifle_AKM_FL_F"}, // 0.03%
  4249. {9638.60845787322, "arifle_AK12_GL_F"}, // 0.03%
  4250. {9641.88259481073, "arifle_AK12_F"}, // 0.03%
  4251. {9645.15673174823, "arifle_SPAR_03_snd_F"}, // 0.03%
  4252. {9648.43086868573, "arifle_CTAR_ghex_F"}, // 0.03%
  4253. {9651.70500562324, "arifle_SPAR_02_khk_F"}, // 0.03%
  4254. {9654.97914256074, "arifle_CTAR_hex_F"}, // 0.03%
  4255. {9658.25327949825, "arifle_SPAR_03_blk_F"}, // 0.03%
  4256. {9661.52741643575, "arifle_SPAR_02_snd_F"}, // 0.03%
  4257. {9664.78432107358, "U_O_V_Soldier_Viper_hex_F"}, // 0.03%
  4258. {9668.04122571141, "U_O_OfficerUniform_ocamo"}, // 0.03%
  4259. {9671.29813034925, "U_I_OfficerUniform"}, // 0.03%
  4260. {9674.55503498708, "U_O_Wetsuit"}, // 0.03%
  4261. {9677.81193962491, "U_B_Wetsuit"}, // 0.03%
  4262. {9681.06884426274, "U_O_CombatUniform_ocamo"}, // 0.03%
  4263. {9684.32574890057, "U_O_CombatUniform_oucamo"}, // 0.03%
  4264. {9687.58265353841, "U_O_SpecopsUniform_ocamo"}, // 0.03%
  4265. {9690.83955817624, "U_O_SpecopsUniform_blk"}, // 0.03%
  4266. {9694.09646281407, "U_O_V_Soldier_Viper_F"}, // 0.03%
  4267. {9697.3533674519, "U_I_Wetsuit"}, // 0.03%
  4268. {9700.55872395878, "Exile_Magazine_30Rnd_545x39_AK_Green"}, // 0.03%
  4269. {9703.76408046565, "Exile_Magazine_30Rnd_545x39_AK"}, // 0.03%
  4270. {9706.96943697253, "Exile_Magazine_30Rnd_762x39_AK"}, // 0.03%
  4271. {9710.1747934794, "30Rnd_65x39_caseless_mag_Tracer"}, // 0.03%
  4272. {9713.38014998627, "30Rnd_65x39_caseless_mag"}, // 0.03%
  4273. {9716.58550649315, "Exile_Magazine_10Rnd_9x39"}, // 0.03%
  4274. {9719.79086300002, "30Rnd_556x45_Stanag_Tracer_Yellow"}, // 0.03%
  4275. {9722.9962195069, "30Rnd_556x45_Stanag_Tracer_Red"}, // 0.03%
  4276. {9726.20157601377, "30Rnd_556x45_Stanag_Tracer_Green"}, // 0.03%
  4277. {9729.40693252065, "Exile_Magazine_30Rnd_545x39_AK_Red"}, // 0.03%
  4278. {9732.61228902752, "30Rnd_65x39_caseless_green_mag_Tracer"}, // 0.03%
  4279. {9735.8176455344, "Exile_Magazine_30Rnd_545x39_AK_White"}, // 0.03%
  4280. {9739.02300204127, "Exile_Magazine_20Rnd_9x39"}, // 0.03%
  4281. {9742.22835854815, "Exile_Magazine_20Rnd_762x51_DMR"}, // 0.03%
  4282. {9745.43371505502, "Exile_Magazine_30Rnd_545x39_AK_Yellow"}, // 0.03%
  4283. {9748.63907156189, "30Rnd_545x39_Mag_Tracer_Green_F"}, // 0.03%
  4284. {9751.84442806877, "30Rnd_545x39_Mag_Tracer_F"}, // 0.03%
  4285. {9755.04978457564, "30Rnd_545x39_Mag_Green_F"}, // 0.03%
  4286. {9758.25514108252, "30Rnd_545x39_Mag_F"}, // 0.03%
  4287. {9761.46049758939, "30Rnd_762x39_AK47_M"}, // 0.03%
  4288. {9764.66585409627, "30Rnd_762x39_Mag_Tracer_Green_F"}, // 0.03%
  4289. {9767.87121060314, "30Rnd_762x39_Mag_Tracer_F"}, // 0.03%
  4290. {9771.07656711002, "30Rnd_580x42_Mag_F"}, // 0.03%
  4291. {9774.28192361689, "30Rnd_762x39_Mag_Green_F"}, // 0.03%
  4292. {9777.48728012377, "30Rnd_762x39_Mag_F"}, // 0.03%
  4293. {9780.69263663064, "100Rnd_580x42_Mag_F"}, // 0.03%
  4294. {9783.89799313751, "30Rnd_580x42_Mag_Tracer_F"}, // 0.03%
  4295. {9787.10334964439, "150Rnd_556x45_Drum_Mag_F"}, // 0.03%
  4296. {9790.30870615126, "Exile_Magazine_20Rnd_762x51_DMR_Yellow"}, // 0.03%
  4297. {9793.51406265814, "150Rnd_556x45_Drum_Mag_Tracer_F"}, // 0.03%
  4298. {9796.71941916501, "20Rnd_762x51_Mag"}, // 0.03%
  4299. {9799.92477567189, "Exile_Magazine_10Rnd_762x54"}, // 0.03%
  4300. {9803.13013217876, "Exile_Magazine_20Rnd_762x51_DMR_Red"}, // 0.03%
  4301. {9806.33548868564, "Exile_Magazine_20Rnd_762x51_DMR_Green"}, // 0.03%
  4302. {9809.54084519251, "Exile_Magazine_20Rnd_762x51_DMR_White"}, // 0.03%
  4303. {9812.74620169939, "Exile_Magazine_5Rnd_22LR"}, // 0.03%
  4304. {9815.95155820626, "100Rnd_580x42_Mag_Tracer_F"}, // 0.03%
  4305. {9818.92185523596, "Exile_Magazine_7Rnd_408_Bullet_Cam_Mag"}, // 0.03%
  4306. {9821.83391114743, "130Rnd_338_Mag"}, // 0.03%
  4307. {9824.68311693132, "Exile_Magazine_10Rnd_303"}, // 0.03%
  4308. {9827.30242648132, "arifle_TRG21_GL_F"}, // 0.03%
  4309. {9829.92173603133, "arifle_Mk20_GL_F"}, // 0.03%
  4310. {9832.54104558133, "arifle_MX_GL_khk_F"}, // 0.03%
  4311. {9835.16035513133, "arifle_MX_GL_F"}, // 0.03%
  4312. {9837.6438810759, "optic_NVS"}, // 0.02%
  4313. {9840.07855077238, "H_FakeHeadgear_Syndikat_F"}, // 0.02%
  4314. {9842.51322046886, "H_Watchcap_camo"}, // 0.02%
  4315. {9844.94789016533, "H_Cap_grn_Syndikat_F"}, // 0.02%
  4316. {9847.38255986181, "H_MilCap_gen_F"}, // 0.02%
  4317. {9849.81722955829, "H_Cap_tan_Syndikat_F"}, // 0.02%
  4318. {9852.25189925477, "H_Watchcap_sgg"}, // 0.02%
  4319. {9854.68656895125, "H_TurbanO_blk"}, // 0.02%
  4320. {9857.12123864773, "H_Shemag_tan"}, // 0.02%
  4321. {9859.55590834421, "H_Shemag_olive"}, // 0.02%
  4322. {9861.99057804068, "H_Shemag_olive_hs"}, // 0.02%
  4323. {9864.42524773716, "H_ShemagOpen_khk"}, // 0.02%
  4324. {9866.85991743364, "H_ShemagOpen_tan"}, // 0.02%
  4325. {9869.29458713012, "H_MilCap_tna_F"}, // 0.02%
  4326. {9871.7292568266, "H_Cap_blk_Syndikat_F"}, // 0.02%
  4327. {9874.16392652308, "H_Shemag_khk"}, // 0.02%
  4328. {9876.59859621956, "H_MilCap_ghex_F"}, // 0.02%
  4329. {9879.03326591603, "H_Booniehat_tna_F"}, // 0.02%
  4330. {9881.46793561251, "H_Cap_oli_Syndikat_F"}, // 0.02%
  4331. {9883.88281124642, "H_HelmetB_light_grass"}, // 0.02%
  4332. {9886.29768688032, "H_HelmetB_black"}, // 0.02%
  4333. {9888.71256251423, "H_HelmetB_desert"}, // 0.02%
  4334. {9891.12743814813, "H_HelmetB_light_desert"}, // 0.02%
  4335. {9893.54231378204, "H_HelmetB_light_black"}, // 0.02%
  4336. {9895.95718941595, "H_HelmetB_light_sand"}, // 0.02%
  4337. {9898.37206504985, "H_HelmetB_snakeskin"}, // 0.02%
  4338. {9900.78694068376, "H_HelmetB_grass"}, // 0.02%
  4339. {9903.20181631766, "H_HelmetIA_camo"}, // 0.02%
  4340. {9905.61669195157, "H_HelmetIA_net"}, // 0.02%
  4341. {9908.03156758547, "H_HelmetB_sand"}, // 0.02%
  4342. {9910.44644321938, "H_HelmetB_light_snakeskin"}, // 0.02%
  4343. {9912.86131885328, "H_HelmetB_TI_tna_F"}, // 0.02%
  4344. {9915.27619448719, "H_HelmetSpecO_ghex_F"}, // 0.02%
  4345. {9917.69107012109, "H_HelmetCrew_O_ghex_F"}, // 0.02%
  4346. {9920.105945755, "H_HelmetLeaderO_ghex_F"}, // 0.02%
  4347. {9922.52082138891, "H_HelmetB_tna_F"}, // 0.02%
  4348. {9924.93569702281, "H_Beret_gen_F"}, // 0.02%
  4349. {9927.35057265672, "H_HelmetB_Light_tna_F"}, // 0.02%
  4350. {9929.76544829062, "H_HelmetB_Enh_tna_F"}, // 0.02%
  4351. {9932.18032392453, "H_Helmet_Skate"}, // 0.02%
  4352. {9934.59519955843, "H_BandMask_khk"}, // 0.02%
  4353. {9937.01007519234, "H_BandMask_reaper"}, // 0.02%
  4354. {9939.42495082624, "H_BandMask_demon"}, // 0.02%
  4355. {9941.40514884605, "Exile_Magazine_5Rnd_127x108_Bullet_Cam_Mag"}, // 0.02%
  4356. {9943.36963100855, "arifle_MXM_Black_F"}, // 0.02%
  4357. {9945.33411317105, "arifle_MX_Black_F"}, // 0.02%
  4358. {9947.29859533355, "arifle_MX_GL_Black_F"}, // 0.02%
  4359. {9949.26307749606, "arifle_MXC_Black_F"}, // 0.02%
  4360. {9951.22755965856, "arifle_MXM_khk_F"}, // 0.02%
  4361. {9953.00831327349, "10Rnd_50BW_Mag_F"}, // 0.02%
  4362. {9954.46434122923, "U_B_FullGhillie_sard"}, // 0.01%
  4363. {9955.92036918496, "U_B_FullGhillie_lsh"}, // 0.01%
  4364. {9957.3763971407, "U_B_FullGhillie_ard"}, // 0.01%
  4365. {9958.83242509644, "U_O_FullGhillie_sard"}, // 0.01%
  4366. {9960.28845305218, "U_O_FullGhillie_lsh"}, // 0.01%
  4367. {9961.74448100791, "U_I_FullGhillie_ard"}, // 0.01%
  4368. {9963.20050896365, "U_I_FullGhillie_lsh"}, // 0.01%
  4369. {9964.65653691939, "U_I_FullGhillie_sard"}, // 0.01%
  4370. {9966.11256487512, "U_O_FullGhillie_ard"}, // 0.01%
  4371. {9967.32989972336, "H_Beret_ocamo"}, // 0.01%
  4372. {9968.5472345716, "H_Beret_brn_SF"}, // 0.01%
  4373. {9969.76456941984, "H_Beret_grn"}, // 0.01%
  4374. {9970.98190426808, "H_Beret_red"}, // 0.01%
  4375. {9972.19923911632, "H_Beret_blk"}, // 0.01%
  4376. {9973.41657396456, "H_Beret_Colonel"}, // 0.01%
  4377. {9974.6339088128, "H_Beret_02"}, // 0.01%
  4378. {9975.85124366104, "H_Beret_grn_SF"}, // 0.01%
  4379. {9977.05868147799, "H_PilotHelmetFighter_B"}, // 0.01%
  4380. {9978.26611929494, "H_HelmetO_ghex_F"}, // 0.01%
  4381. {9979.4735571119, "H_HelmetCrew_I"}, // 0.01%
  4382. {9980.68099492885, "H_HelmetCrew_O"}, // 0.01%
  4383. {9981.8884327458, "H_PilotHelmetHeli_B"}, // 0.01%
  4384. {9983.09587056275, "H_PilotHelmetHeli_O"}, // 0.01%
  4385. {9984.30330837971, "H_PilotHelmetHeli_I"}, // 0.01%
  4386. {9985.51074619666, "H_HelmetB_camo"}, // 0.01%
  4387. {9986.71818401361, "H_CrewHelmetHeli_B"}, // 0.01%
  4388. {9987.92562183057, "H_PilotHelmetFighter_O"}, // 0.01%
  4389. {9989.13305964752, "H_CrewHelmetHeli_O"}, // 0.01%
  4390. {9990.34049746447, "H_HelmetCrew_B"}, // 0.01%
  4391. {9991.54793528142, "H_HelmetO_oucamo"}, // 0.01%
  4392. {9992.75537309838, "H_HelmetLeaderO_oucamo"}, // 0.01%
  4393. {9993.96281091533, "H_HelmetSpecO_ocamo"}, // 0.01%
  4394. {9995.17024873228, "H_HelmetSpecO_blk"}, // 0.01%
  4395. {9996.37768654923, "H_HelmetO_ocamo"}, // 0.01%
  4396. {9997.58512436619, "H_HelmetLeaderO_ocamo"}, // 0.01%
  4397. {9998.79256218314, "H_CrewHelmetHeli_I"}, // 0.01%
  4398. {10000.0000000001, "H_PilotHelmetFighter_I"} // 0.01%
  4399. };
  4400. };
  4401.  
  4402. /**
  4403. Result of 100 rounds:
  4404.  
  4405. Exile_Item_Can_Empty
  4406. Exile_Item_Vishpirin
  4407. Exile_Item_Bandage
  4408. Exile_Item_PlasticBottleEmpty
  4409. Exile_Item_Heatpack
  4410. Exile_Item_Can_Empty
  4411. Exile_Item_Magazine03
  4412. Exile_Item_InstaDoc
  4413. Exile_Item_Vishpirin
  4414. Exile_Item_Vishpirin
  4415. Exile_Item_PlasticBottleEmpty
  4416. Exile_Item_Vishpirin
  4417. Exile_Item_Heatpack
  4418. Exile_Item_Vishpirin
  4419. Exile_Item_Bandage
  4420. Exile_Item_Can_Empty
  4421. Exile_Item_Heatpack
  4422. Exile_Item_Vishpirin
  4423. Exile_Item_Vishpirin
  4424. Exile_Item_Can_Empty
  4425. Exile_Item_Bandage
  4426. Exile_Item_Heatpack
  4427. Exile_Item_Can_Empty
  4428. Exile_Item_Heatpack
  4429. Exile_Item_Heatpack
  4430. Exile_Item_Bandage
  4431. Exile_Item_Vishpirin
  4432. Exile_Item_PlasticBottleEmpty
  4433. Exile_Item_Magazine02
  4434. Exile_Item_Heatpack
  4435. Exile_Item_Heatpack
  4436. Exile_Item_Can_Empty
  4437. Exile_Item_PlasticBottleEmpty
  4438. Exile_Item_Vishpirin
  4439. Exile_Item_Heatpack
  4440. Exile_Item_Vishpirin
  4441. Exile_Item_Magazine01
  4442. Exile_Item_Vishpirin
  4443. Exile_Item_Bandage
  4444. Exile_Item_Heatpack
  4445. Exile_Item_Vishpirin
  4446. Exile_Item_PlasticBottleEmpty
  4447. Exile_Item_Heatpack
  4448. Exile_Item_Heatpack
  4449. Exile_Item_Vishpirin
  4450. Exile_Item_Can_Empty
  4451. Exile_Item_InstaDoc
  4452. Exile_Item_Heatpack
  4453. Exile_Item_PlasticBottleEmpty
  4454. Exile_Item_Vishpirin
  4455. Exile_Item_Can_Empty
  4456. Exile_Item_Vishpirin
  4457. Exile_Item_Vishpirin
  4458. Exile_Item_Vishpirin
  4459. Exile_Item_ToiletPaper
  4460. Exile_Item_Heatpack
  4461. Exile_Item_Heatpack
  4462. Exile_Item_Heatpack
  4463. Exile_Item_Heatpack
  4464. Exile_Item_PlasticBottleEmpty
  4465. Exile_Item_Can_Empty
  4466. Exile_Item_Vishpirin
  4467. Exile_Item_Magazine02
  4468. Exile_Item_InstaDoc
  4469. Exile_Item_Bandage
  4470. Exile_Item_Vishpirin
  4471. Exile_Item_Heatpack
  4472. Exile_Item_Heatpack
  4473. Exile_Item_Can_Empty
  4474. Exile_Item_Heatpack
  4475. Exile_Item_Can_Empty
  4476. Exile_Item_Vishpirin
  4477. Exile_Item_Heatpack
  4478. Exile_Item_Can_Empty
  4479. Exile_Item_Heatpack
  4480. Exile_Item_ToiletPaper
  4481. Exile_Item_InstaDoc
  4482. Exile_Item_Heatpack
  4483. Exile_Item_Vishpirin
  4484. Exile_Item_ToiletPaper
  4485. Exile_Item_ToiletPaper
  4486. Exile_Item_Bandage
  4487. Exile_Item_Vishpirin
  4488. Exile_Item_ToiletPaper
  4489. Exile_Item_Bandage
  4490. Exile_Item_Heatpack
  4491. Exile_Item_Can_Empty
  4492. Exile_Item_Can_Empty
  4493. Exile_Item_Heatpack
  4494. Exile_Item_Vishpirin
  4495. Exile_Item_Can_Empty
  4496. Exile_Item_Can_Empty
  4497. Exile_Item_Can_Empty
  4498. Exile_Item_ToiletPaper
  4499. Exile_Item_PlasticBottleEmpty
  4500. Exile_Item_Vishpirin
  4501. Exile_Item_InstaDoc
  4502. Exile_Item_Heatpack
  4503. Exile_Item_InstaDoc
  4504. Exile_Item_Magazine02
  4505. */
  4506. class Medical
  4507. {
  4508. count = 11;
  4509. half = 8731.48148148148;
  4510. halfIndex = 5;
  4511. sum = 10000;
  4512. items[] =
  4513. {
  4514. {2592.59259259259, "Exile_Item_Vishpirin"}, // 25.93%
  4515. {5185.18518518519, "Exile_Item_Heatpack"}, // 25.93%
  4516. {6481.48148148148, "Exile_Item_Bandage"}, // 12.96%
  4517. {7231.48148148148, "Exile_Item_Can_Empty"}, // 7.50%
  4518. {7981.48148148148, "Exile_Item_ToiletPaper"}, // 7.50%
  4519. {8731.48148148148, "Exile_Item_PlasticBottleEmpty"}, // 7.50%
  4520. {9250, "Exile_Item_InstaDoc"}, // 5.19%
  4521. {9437.5, "Exile_Item_Magazine01"}, // 1.88%
  4522. {9625, "Exile_Item_Magazine02"}, // 1.88%
  4523. {9812.5, "Exile_Item_Magazine03"}, // 1.88%
  4524. {10000, "Exile_Item_Magazine04"} // 1.88%
  4525. };
  4526. };
  4527.  
  4528. /**
  4529. Result of 100 rounds:
  4530.  
  4531. Exile_Item_Bandage
  4532. srifle_DMR_07_ghex_F
  4533. B_Carryall_ocamo
  4534. 20Rnd_762x51_Mag
  4535. B_Carryall_cbr
  4536. U_O_T_Sniper_F
  4537. U_I_FullGhillie_sard
  4538. H_HelmetSpecB_paint2
  4539. srifle_DMR_07_hex_F
  4540. Exile_Item_ZipTie
  4541. muzzle_snds_338_black
  4542. srifle_DMR_07_hex_F
  4543. MiniGrenade
  4544. srifle_DMR_05_tan_F
  4545. B_Carryall_khk
  4546. APERSBoundingMine_Range_Mag
  4547. srifle_GM6_ghex_F
  4548. srifle_DMR_01_F
  4549. srifle_DMR_07_ghex_F
  4550. U_B_T_Sniper_F
  4551. srifle_DMR_03_F
  4552. srifle_GM6_ghex_F
  4553. U_B_T_Sniper_F
  4554. srifle_GM6_ghex_F
  4555. srifle_DMR_02_sniper_F
  4556. srifle_DMR_06_camo_F
  4557. srifle_DMR_01_F
  4558. H_MilCap_rucamo
  4559. H_HelmetB_light_grass
  4560. srifle_GM6_ghex_F
  4561. Exile_Item_Vishpirin
  4562. U_O_T_FullGhillie_tna_F
  4563. optic_KHS_hex
  4564. Exile_Item_ZipTie
  4565. U_I_GhillieSuit
  4566. srifle_EBR_F
  4567. H_BandMask_demon
  4568. srifle_DMR_01_F
  4569. srifle_DMR_06_olive_F
  4570. Exile_Item_Heatpack
  4571. srifle_LRR_F
  4572. H_MilCap_blue
  4573. U_O_GhillieSuit
  4574. srifle_DMR_02_F
  4575. srifle_DMR_05_tan_F
  4576. U_O_T_Sniper_F
  4577. H_HelmetB_paint
  4578. srifle_DMR_02_camo_F
  4579. muzzle_snds_338_sand
  4580. srifle_DMR_07_ghex_F
  4581. U_B_T_FullGhillie_tna_F
  4582. Exile_Item_ZipTie
  4583. Exile_Item_ZipTie
  4584. srifle_DMR_05_hex_F
  4585. ItemRadio
  4586. U_O_GhillieSuit
  4587. srifle_DMR_02_sniper_F
  4588. srifle_GM6_F
  4589. srifle_DMR_04_F
  4590. optic_AMS_khk
  4591. APERSBoundingMine_Range_Mag
  4592. srifle_DMR_05_hex_F
  4593. SatchelCharge_Remote_Mag
  4594. H_HelmetSpecB
  4595. B_Carryall_ghex_F
  4596. srifle_DMR_05_hex_F
  4597. srifle_DMR_04_Tan_F
  4598. srifle_GM6_F
  4599. U_O_T_FullGhillie_tna_F
  4600. srifle_DMR_02_F
  4601. U_B_T_Sniper_F
  4602. srifle_LRR_tna_F
  4603. srifle_DMR_02_F
  4604. APERSMine_Range_Mag
  4605. srifle_DMR_02_camo_F
  4606. DemoCharge_Remote_Mag
  4607. H_HelmetSpecB_paint1
  4608. srifle_GM6_F
  4609. srifle_DMR_07_blk_F
  4610. ItemRadio
  4611. 10Rnd_93x64_DMR_05_Mag
  4612. B_Carryall_oucamo
  4613. Exile_Item_ZipTie
  4614. B_Bergen_dgtl_F
  4615. B_Carryall_mcamo
  4616. srifle_DMR_02_F
  4617. Exile_Item_Bandage
  4618. U_B_T_Soldier_F
  4619. srifle_GM6_ghex_F
  4620. Exile_Item_ZipTie
  4621. srifle_DMR_06_camo_F
  4622. APERSTripMine_Wire_Mag
  4623. U_O_T_FullGhillie_tna_F
  4624. ItemRadio
  4625. H_MilCap_mcamo
  4626. srifle_DMR_05_tan_F
  4627. optic_SOS
  4628. srifle_DMR_02_camo_F
  4629. H_BandMask_khk
  4630. H_HelmetB_light_snakeskin
  4631. */
  4632. class Tourist
  4633. {
  4634. count = 169;
  4635. half = 8667.89250984947;
  4636. halfIndex = 84;
  4637. sum = 9999.99999999999;
  4638. items[] =
  4639. {
  4640. {400, "Exile_Item_ZipTie"}, // 4.00%
  4641. {666.666666666667, "srifle_DMR_01_F"}, // 2.67%
  4642. {933.333333333333, "srifle_EBR_F"}, // 2.67%
  4643. {1149.54954954955, "srifle_DMR_05_tan_F"}, // 2.16%
  4644. {1365.76576576577, "srifle_DMR_05_blk_F"}, // 2.16%
  4645. {1581.98198198198, "srifle_DMR_05_hex_F"}, // 2.16%
  4646. {1791.50579150579, "srifle_DMR_07_ghex_F"}, // 2.10%
  4647. {2001.0296010296, "srifle_DMR_07_blk_F"}, // 2.10%
  4648. {2210.55341055341, "srifle_DMR_07_hex_F"}, // 2.10%
  4649. {2420.07722007722, "srifle_LRR_tna_F"}, // 2.10%
  4650. {2629.60102960103, "srifle_LRR_F"}, // 2.10%
  4651. {2839.12483912484, "srifle_GM6_F"}, // 2.10%
  4652. {3048.64864864865, "srifle_GM6_ghex_F"}, // 2.10%
  4653. {3248.64864864865, "MiniGrenade"}, // 2.00%
  4654. {3448.64864864865, "HandGrenade"}, // 2.00%
  4655. {3637.83783783784, "srifle_DMR_04_Tan_F"}, // 1.89%
  4656. {3827.02702702703, "srifle_DMR_04_F"}, // 1.89%
  4657. {3993.69369369369, "U_O_GhillieSuit"}, // 1.67%
  4658. {4160.36036036036, "U_I_GhillieSuit"}, // 1.67%
  4659. {4327.02702702703, "U_B_GhillieSuit"}, // 1.67%
  4660. {4489.18918918919, "srifle_DMR_02_sniper_F"}, // 1.62%
  4661. {4651.35135135135, "srifle_DMR_02_F"}, // 1.62%
  4662. {4813.51351351352, "srifle_DMR_02_camo_F"}, // 1.62%
  4663. {4961.66166166166, "Exile_Item_Vishpirin"}, // 1.48%
  4664. {5109.80980980981, "Exile_Item_Heatpack"}, // 1.48%
  4665. {5237.3265883333, "B_Carryall_cbr"}, // 1.28%
  4666. {5364.84336685679, "B_Carryall_ghex_F"}, // 1.28%
  4667. {5485.64873598431, "B_Carryall_oli"}, // 1.21%
  4668. {5606.45410511182, "B_Carryall_khk"}, // 1.21%
  4669. {5707.12524605142, "B_Carryall_ocamo"}, // 1.01%
  4670. {5807.79638699102, "B_Carryall_oucamo"}, // 1.01%
  4671. {5908.46752793062, "B_Carryall_mcamo"}, // 1.01%
  4672. {5997.35641681951, "Exile_Item_Heatpack"}, // 0.89%
  4673. {6078.43749790059, "srifle_DMR_06_olive_F"}, // 0.81%
  4674. {6159.51857898167, "srifle_DMR_03_F"}, // 0.81%
  4675. {6240.59966006275, "srifle_DMR_03_khaki_F"}, // 0.81%
  4676. {6321.68074114383, "srifle_DMR_03_tan_F"}, // 0.81%
  4677. {6402.76182222491, "srifle_DMR_03_woodland_F"}, // 0.81%
  4678. {6483.84290330599, "srifle_DMR_06_camo_F"}, // 0.81%
  4679. {6563.84290330599, "APERSBoundingMine_Range_Mag"}, // 0.80%
  4680. {6643.84290330599, "APERSTripMine_Wire_Mag"}, // 0.80%
  4681. {6723.84290330599, "APERSMine_Range_Mag"}, // 0.80%
  4682. {6801.62068108377, "ItemMap"}, // 0.78%
  4683. {6875.69475515784, "Exile_Item_Bandage"}, // 0.74%
  4684. {6949.22416692255, "U_O_T_FullGhillie_tna_F"}, // 0.74%
  4685. {7022.75357868725, "U_O_T_Sniper_F"}, // 0.74%
  4686. {7096.28299045196, "U_B_T_FullGhillie_tna_F"}, // 0.74%
  4687. {7169.81240221667, "U_B_T_Soldier_F"}, // 0.74%
  4688. {7243.34181398137, "U_B_T_Sniper_F"}, // 0.74%
  4689. {7310.00848064804, "ItemWatch"}, // 0.67%
  4690. {7376.67514731471, "ItemRadio"}, // 0.67%
  4691. {7432.8154981919, "10Rnd_93x64_DMR_05_Mag"}, // 0.56%
  4692. {7488.95584906909, "10Rnd_338_Mag"}, // 0.56%
  4693. {7538.07865608664, "10Rnd_127x54_Mag"}, // 0.49%
  4694. {7586.07865608664, "IEDLandSmall_Remote_Mag"}, // 0.48%
  4695. {7634.07865608664, "DemoCharge_Remote_Mag"}, // 0.48%
  4696. {7682.07865608664, "IEDUrbanSmall_Remote_Mag"}, // 0.48%
  4697. {7726.52310053108, "ItemGPS"}, // 0.44%
  4698. {7770.96754497553, "Binocular"}, // 0.44%
  4699. {7812.96754497553, "20Rnd_650x39_Cased_Mag_F"}, // 0.42%
  4700. {7853.23600135136, "B_Bergen_Base_F"}, // 0.40%
  4701. {7893.5044577272, "B_Bergen_mcamo_F"}, // 0.40%
  4702. {7933.77291410304, "B_Bergen_dgtl_F"}, // 0.40%
  4703. {7974.04137047888, "B_Bergen_tna_F"}, // 0.40%
  4704. {8014.30982685472, "B_Bergen_hex_F"}, // 0.40%
  4705. {8052.90631808279, "20Rnd_762x51_Mag"}, // 0.39%
  4706. {8090.90631808279, "20Rnd_762x51_Mag"}, // 0.38%
  4707. {8124.90631808279, "10Rnd_762x54_Mag"}, // 0.34%
  4708. {8158.23965141613, "muzzle_snds_338_green"}, // 0.33%
  4709. {8191.57298474946, "muzzle_snds_338_sand"}, // 0.33%
  4710. {8224.90631808279, "muzzle_snds_93mmg"}, // 0.33%
  4711. {8258.23965141613, "muzzle_snds_93mmg_tan"}, // 0.33%
  4712. {8291.57298474946, "muzzle_snds_B"}, // 0.33%
  4713. {8324.90631808279, "muzzle_snds_338_black"}, // 0.33%
  4714. {8357.42664328605, "H_MilCap_dgtl"}, // 0.33%
  4715. {8389.9469684893, "H_MilCap_rucamo"}, // 0.33%
  4716. {8422.46729369255, "H_MilCap_oucamo"}, // 0.33%
  4717. {8454.9876188958, "H_MilCap_mcamo"}, // 0.33%
  4718. {8487.50794409905, "H_MilCap_ocamo"}, // 0.33%
  4719. {8520.0282693023, "Exile_Headgear_GasMask"}, // 0.33%
  4720. {8552.54859450556, "H_MilCap_blue"}, // 0.33%
  4721. {8582.17822413518, "Exile_Item_InstaDoc"}, // 0.30%
  4722. {8610.74965270661, "optic_KHS_blk"}, // 0.29%
  4723. {8639.32108127804, "optic_AMS"}, // 0.29%
  4724. {8667.89250984947, "optic_KHS_hex"}, // 0.29%
  4725. {8696.4639384209, "optic_KHS_old"}, // 0.29%
  4726. {8725.03536699233, "optic_AMS_khk"}, // 0.29%
  4727. {8753.60679556376, "optic_AMS_snd"}, // 0.29%
  4728. {8782.17822413519, "optic_KHS_tan"}, // 0.29%
  4729. {8809.72924454335, "optic_DMS"}, // 0.28%
  4730. {8836.25985678825, "optic_LRPS_tna_F"}, // 0.27%
  4731. {8862.79046903315, "optic_LRPS"}, // 0.27%
  4732. {8889.32108127805, "optic_LRPS_ghex_F"}, // 0.27%
  4733. {8915.85169352295, "optic_SOS_khk_F"}, // 0.27%
  4734. {8942.38230576785, "optic_SOS"}, // 0.27%
  4735. {8966.77254967028, "H_HelmetB_plain_blk"}, // 0.24%
  4736. {8991.16279357272, "H_HelmetIA"}, // 0.24%
  4737. {9015.55303747516, "H_HelmetSpecB_paint1"}, // 0.24%
  4738. {9039.9432813776, "H_HelmetB_light"}, // 0.24%
  4739. {9064.33352528004, "H_HelmetB_paint"}, // 0.24%
  4740. {9088.72376918248, "H_HelmetSpecB_blk"}, // 0.24%
  4741. {9113.11401308492, "H_HelmetB"}, // 0.24%
  4742. {9137.50425698735, "H_HelmetSpecB"}, // 0.24%
  4743. {9161.89450088979, "H_HelmetSpecB_paint2"}, // 0.24%
  4744. {9181.89450088979, "5Rnd_127x108_Mag"}, // 0.20%
  4745. {9201.89450088979, "7Rnd_408_Mag"}, // 0.20%
  4746. {9221.28225599184, "muzzle_snds_B"}, // 0.19%
  4747. {9237.54241859346, "H_HelmetB_desert"}, // 0.16%
  4748. {9253.80258119509, "H_BandMask_khk"}, // 0.16%
  4749. {9270.06274379671, "H_BandMask_reaper"}, // 0.16%
  4750. {9286.32290639834, "H_BandMask_demon"}, // 0.16%
  4751. {9302.58306899996, "H_Helmet_Skate"}, // 0.16%
  4752. {9318.84323160159, "H_HelmetB_Enh_tna_F"}, // 0.16%
  4753. {9335.10339420322, "H_HelmetB_Light_tna_F"}, // 0.16%
  4754. {9351.36355680484, "H_Beret_gen_F"}, // 0.16%
  4755. {9367.62371940647, "H_HelmetB_tna_F"}, // 0.16%
  4756. {9383.88388200809, "H_HelmetSpecO_ghex_F"}, // 0.16%
  4757. {9400.14404460972, "H_HelmetIA_net"}, // 0.16%
  4758. {9416.40420721134, "H_HelmetIA_camo"}, // 0.16%
  4759. {9432.66436981297, "H_HelmetB_grass"}, // 0.16%
  4760. {9448.9245324146, "H_HelmetLeaderO_ghex_F"}, // 0.16%
  4761. {9465.18469501622, "H_HelmetCrew_O_ghex_F"}, // 0.16%
  4762. {9481.44485761785, "H_HelmetB_TI_tna_F"}, // 0.16%
  4763. {9497.70502021947, "H_HelmetB_light_black"}, // 0.16%
  4764. {9513.9651828211, "H_HelmetB_light_desert"}, // 0.16%
  4765. {9530.22534542272, "H_HelmetB_light_snakeskin"}, // 0.16%
  4766. {9546.48550802435, "H_HelmetB_light_grass"}, // 0.16%
  4767. {9562.74567062598, "H_HelmetB_sand"}, // 0.16%
  4768. {9579.0058332276, "H_HelmetB_black"}, // 0.16%
  4769. {9595.26599582923, "H_HelmetB_snakeskin"}, // 0.16%
  4770. {9611.52615843085, "H_HelmetB_light_sand"}, // 0.16%
  4771. {9627.52615843085, "SatchelCharge_Remote_Mag"}, // 0.16%
  4772. {9643.52615843085, "5Rnd_127x108_APDS_Mag"}, // 0.16%
  4773. {9658.23204078379, "U_B_FullGhillie_sard"}, // 0.15%
  4774. {9672.93792313673, "U_B_FullGhillie_ard"}, // 0.15%
  4775. {9687.64380548968, "U_B_FullGhillie_lsh"}, // 0.15%
  4776. {9702.34968784262, "U_O_FullGhillie_ard"}, // 0.15%
  4777. {9717.05557019556, "U_O_FullGhillie_lsh"}, // 0.15%
  4778. {9731.7614525485, "U_O_FullGhillie_sard"}, // 0.15%
  4779. {9746.46733490144, "U_I_FullGhillie_ard"}, // 0.15%
  4780. {9761.17321725438, "U_I_FullGhillie_lsh"}, // 0.15%
  4781. {9775.87909960732, "U_I_FullGhillie_sard"}, // 0.15%
  4782. {9786.99021071843, "Exile_Item_MobilePhone"}, // 0.11%
  4783. {9797.19429235108, "muzzle_snds_B_snd_F"}, // 0.10%
  4784. {9807.39837398374, "muzzle_snds_B_khk_F"}, // 0.10%
  4785. {9817.39837398374, "Exile_Magazine_10Rnd_93x64_DMR_05_Bullet_Cam_Mag"}, // 0.10%
  4786. {9827.39837398374, "Exile_Magazine_10Rnd_338_Bullet_Cam_Mag"}, // 0.10%
  4787. {9835.52845528455, "H_PilotHelmetFighter_B"}, // 0.08%
  4788. {9843.65853658536, "H_CrewHelmetHeli_B"}, // 0.08%
  4789. {9851.78861788618, "H_CrewHelmetHeli_O"}, // 0.08%
  4790. {9859.91869918699, "H_CrewHelmetHeli_I"}, // 0.08%
  4791. {9868.0487804878, "H_HelmetO_oucamo"}, // 0.08%
  4792. {9876.17886178861, "H_HelmetLeaderO_oucamo"}, // 0.08%
  4793. {9884.30894308943, "H_HelmetSpecO_ocamo"}, // 0.08%
  4794. {9892.43902439024, "H_HelmetSpecO_blk"}, // 0.08%
  4795. {9900.56910569105, "H_HelmetO_ocamo"}, // 0.08%
  4796. {9908.69918699187, "H_HelmetLeaderO_ocamo"}, // 0.08%
  4797. {9916.82926829268, "H_PilotHelmetHeli_O"}, // 0.08%
  4798. {9924.95934959349, "H_PilotHelmetFighter_O"}, // 0.08%
  4799. {9933.0894308943, "H_PilotHelmetHeli_B"}, // 0.08%
  4800. {9941.21951219512, "H_PilotHelmetHeli_I"}, // 0.08%
  4801. {9949.34959349593, "H_PilotHelmetFighter_I"}, // 0.08%
  4802. {9957.47967479674, "H_HelmetCrew_B"}, // 0.08%
  4803. {9965.60975609756, "H_HelmetCrew_O"}, // 0.08%
  4804. {9973.73983739837, "H_HelmetCrew_I"}, // 0.08%
  4805. {9981.86991869918, "H_HelmetO_ghex_F"}, // 0.08%
  4806. {9989.99999999999, "H_HelmetB_camo"}, // 0.08%
  4807. {9995.99999999999, "Exile_Magazine_7Rnd_408_Bullet_Cam_Mag"}, // 0.06%
  4808. {9999.99999999999, "Exile_Magazine_5Rnd_127x108_Bullet_Cam_Mag"} // 0.04%
  4809. };
  4810. };
  4811.  
  4812. /**
  4813. Result of 100 rounds:
  4814.  
  4815. B_Carryall_khk
  4816. srifle_DMR_05_blk_F
  4817. U_O_GhillieSuit
  4818. MMG_01_hex_F
  4819. HandGrenade
  4820. IEDUrbanSmall_Remote_Mag
  4821. U_O_FullGhillie_ard
  4822. optic_LRPS_tna_F
  4823. srifle_GM6_F
  4824. srifle_DMR_01_F
  4825. B_Bergen_tna_F
  4826. srifle_GM6_F
  4827. srifle_DMR_07_blk_F
  4828. srifle_DMR_05_hex_F
  4829. U_B_GhillieSuit
  4830. srifle_DMR_03_khaki_F
  4831. srifle_DMR_07_hex_F
  4832. Exile_Item_ZipTie
  4833. srifle_DMR_05_blk_F
  4834. B_Carryall_mcamo
  4835. srifle_DMR_06_camo_F
  4836. srifle_DMR_07_hex_F
  4837. B_Carryall_mcamo
  4838. srifle_DMR_07_hex_F
  4839. srifle_DMR_02_camo_F
  4840. srifle_DMR_03_khaki_F
  4841. srifle_EBR_F
  4842. B_Bergen_dgtl_F
  4843. H_Beret_gen_F
  4844. srifle_DMR_07_hex_F
  4845. APERSTripMine_Wire_Mag
  4846. B_Carryall_khk
  4847. muzzle_snds_338_sand
  4848. srifle_EBR_F
  4849. srifle_DMR_02_sniper_F
  4850. Exile_Item_ZipTie
  4851. H_HelmetSpecB_paint2
  4852. srifle_EBR_F
  4853. B_Carryall_ghex_F
  4854. MiniGrenade
  4855. srifle_DMR_07_ghex_F
  4856. muzzle_snds_338_green
  4857. srifle_DMR_04_Tan_F
  4858. APERSMine_Range_Mag
  4859. Exile_Item_ZipTie
  4860. IEDUrbanSmall_Remote_Mag
  4861. optic_DMS
  4862. APERSBoundingMine_Range_Mag
  4863. 10Rnd_127x54_Mag
  4864. srifle_DMR_05_blk_F
  4865. IEDUrbanSmall_Remote_Mag
  4866. srifle_EBR_F
  4867. srifle_DMR_01_F
  4868. srifle_DMR_05_blk_F
  4869. B_Carryall_ocamo
  4870. srifle_DMR_02_F
  4871. srifle_DMR_02_camo_F
  4872. srifle_DMR_07_ghex_F
  4873. srifle_DMR_04_F
  4874. H_MilCap_blue
  4875. srifle_DMR_03_F
  4876. srifle_DMR_05_tan_F
  4877. H_HelmetB_light_black
  4878. optic_LRPS
  4879. U_I_GhillieSuit
  4880. srifle_DMR_05_tan_F
  4881. srifle_DMR_04_F
  4882. srifle_DMR_07_hex_F
  4883. IEDLandSmall_Remote_Mag
  4884. APERSMine_Range_Mag
  4885. B_Carryall_mcamo
  4886. srifle_LRR_F
  4887. APERSMine_Range_Mag
  4888. srifle_DMR_06_olive_F
  4889. APERSBoundingMine_Range_Mag
  4890. MMG_02_sand_F
  4891. optic_KHS_tan
  4892. srifle_DMR_07_ghex_F
  4893. srifle_GM6_F
  4894. B_Carryall_ocamo
  4895. B_Carryall_ocamo
  4896. Exile_Item_Vishpirin
  4897. srifle_DMR_01_F
  4898. U_B_T_Soldier_F
  4899. Exile_Item_Heatpack
  4900. APERSMine_Range_Mag
  4901. B_Carryall_khk
  4902. DemoCharge_Remote_Mag
  4903. srifle_DMR_07_blk_F
  4904. srifle_DMR_01_F
  4905. srifle_DMR_03_khaki_F
  4906. srifle_DMR_03_F
  4907. IEDLandSmall_Remote_Mag
  4908. B_Carryall_oucamo
  4909. SatchelCharge_Remote_Mag
  4910. srifle_DMR_05_hex_F
  4911. optic_KHS_blk
  4912. APERSBoundingMine_Range_Mag
  4913. H_HelmetB_plain_blk
  4914. H_HelmetSpecO_ghex_F
  4915. */
  4916. class Radiation
  4917. {
  4918. count = 167;
  4919. half = 8941.6128511025;
  4920. halfIndex = 83;
  4921. sum = 10000;
  4922. items[] =
  4923. {
  4924. {317.460317460317, "srifle_DMR_01_F"}, // 3.17%
  4925. {634.920634920635, "srifle_EBR_F"}, // 3.17%
  4926. {952.380952380952, "Exile_Item_ZipTie"}, // 3.17%
  4927. {1209.78120978121, "srifle_DMR_05_hex_F"}, // 2.57%
  4928. {1467.18146718147, "srifle_DMR_05_tan_F"}, // 2.57%
  4929. {1724.58172458172, "srifle_DMR_05_blk_F"}, // 2.57%
  4930. {1974.01483115769, "srifle_LRR_tna_F"}, // 2.49%
  4931. {2223.44793773365, "srifle_GM6_F"}, // 2.49%
  4932. {2472.88104430962, "srifle_LRR_F"}, // 2.49%
  4933. {2722.31415088558, "srifle_DMR_07_ghex_F"}, // 2.49%
  4934. {2971.74725746154, "srifle_DMR_07_hex_F"}, // 2.49%
  4935. {3221.18036403751, "srifle_DMR_07_blk_F"}, // 2.49%
  4936. {3470.61347061347, "srifle_GM6_ghex_F"}, // 2.49%
  4937. {3695.8386958387, "srifle_DMR_04_F"}, // 2.25%
  4938. {3921.06392106392, "srifle_DMR_04_Tan_F"}, // 2.25%
  4939. {4114.11411411411, "srifle_DMR_02_F"}, // 1.93%
  4940. {4307.16430716431, "srifle_DMR_02_sniper_F"}, // 1.93%
  4941. {4500.2145002145, "srifle_DMR_02_camo_F"}, // 1.93%
  4942. {4658.94465894466, "APERSMine_Range_Mag"}, // 1.59%
  4943. {4817.67481767482, "APERSBoundingMine_Range_Mag"}, // 1.59%
  4944. {4976.40497640498, "APERSTripMine_Wire_Mag"}, // 1.59%
  4945. {5135.13513513514, "MiniGrenade"}, // 1.59%
  4946. {5293.8652938653, "HandGrenade"}, // 1.59%
  4947. {5426.14042614043, "U_I_GhillieSuit"}, // 1.32%
  4948. {5558.41555841556, "U_B_GhillieSuit"}, // 1.32%
  4949. {5690.69069069069, "U_O_GhillieSuit"}, // 1.32%
  4950. {5808.26858604636, "Exile_Item_Vishpirin"}, // 1.18%
  4951. {5925.84648140204, "Exile_Item_Heatpack"}, // 1.18%
  4952. {6027.050273881, "B_Carryall_cbr"}, // 1.01%
  4953. {6128.25406635996, "B_Carryall_ghex_F"}, // 1.01%
  4954. {6224.77916288505, "srifle_DMR_06_camo_F"}, // 0.97%
  4955. {6321.30425941015, "srifle_DMR_03_woodland_F"}, // 0.97%
  4956. {6417.82935593525, "srifle_DMR_03_tan_F"}, // 0.97%
  4957. {6514.35445246034, "srifle_DMR_03_khaki_F"}, // 0.97%
  4958. {6610.87954898544, "srifle_DMR_03_F"}, // 0.97%
  4959. {6707.40464551053, "srifle_DMR_06_olive_F"}, // 0.97%
  4960. {6803.28192259587, "B_Carryall_oli"}, // 0.96%
  4961. {6899.1591996812, "B_Carryall_khk"}, // 0.96%
  4962. {6994.39729491929, "IEDLandSmall_Remote_Mag"}, // 0.95%
  4963. {7089.63539015739, "IEDUrbanSmall_Remote_Mag"}, // 0.95%
  4964. {7184.87348539548, "DemoCharge_Remote_Mag"}, // 0.95%
  4965. {7264.77121629993, "B_Carryall_mcamo"}, // 0.80%
  4966. {7344.66894720437, "B_Carryall_oucamo"}, // 0.80%
  4967. {7424.56667810881, "B_Carryall_ocamo"}, // 0.80%
  4968. {7497.82675136888, "MMG_02_camo_F"}, // 0.73%
  4969. {7571.08682462896, "MMG_02_black_F"}, // 0.73%
  4970. {7644.34689788903, "MMG_02_sand_F"}, // 0.73%
  4971. {7703.13584556687, "Exile_Item_Bandage"}, // 0.59%
  4972. {7761.4925215706, "U_O_T_FullGhillie_tna_F"}, // 0.58%
  4973. {7819.84919757433, "U_O_T_Sniper_F"}, // 0.58%
  4974. {7878.20587357807, "U_B_T_FullGhillie_tna_F"}, // 0.58%
  4975. {7936.5625495818, "U_B_T_Soldier_F"}, // 0.58%
  4976. {7994.91922558554, "U_B_T_Sniper_F"}, // 0.58%
  4977. {8043.75927442559, "MMG_01_tan_F"}, // 0.49%
  4978. {8092.59932326564, "MMG_01_hex_F"}, // 0.49%
  4979. {8137.15515729515, "10Rnd_93x64_DMR_05_Mag"}, // 0.45%
  4980. {8181.71099132467, "10Rnd_338_Mag"}, // 0.45%
  4981. {8220.6973461005, "10Rnd_127x54_Mag"}, // 0.39%
  4982. {8254.03067943383, "20Rnd_650x39_Cased_Mag_F"}, // 0.33%
  4983. {8285.98977179561, "B_Bergen_hex_F"}, // 0.32%
  4984. {8317.94886415739, "B_Bergen_tna_F"}, // 0.32%
  4985. {8349.90795651916, "B_Bergen_mcamo_F"}, // 0.32%
  4986. {8381.86704888094, "B_Bergen_Base_F"}, // 0.32%
  4987. {8413.82614124271, "B_Bergen_dgtl_F"}, // 0.32%
  4988. {8445.57217298875, "SatchelCharge_Remote_Mag"}, // 0.32%
  4989. {8476.20430888404, "20Rnd_762x51_Mag"}, // 0.31%
  4990. {8506.36303904277, "20Rnd_762x51_Mag"}, // 0.30%
  4991. {8533.3471660269, "10Rnd_762x54_Mag"}, // 0.27%
  4992. {8559.80219248192, "muzzle_snds_338_green"}, // 0.26%
  4993. {8586.25721893695, "muzzle_snds_93mmg_tan"}, // 0.26%
  4994. {8612.71224539198, "muzzle_snds_93mmg"}, // 0.26%
  4995. {8639.16727184701, "muzzle_snds_B"}, // 0.26%
  4996. {8665.62229830203, "muzzle_snds_338_sand"}, // 0.26%
  4997. {8692.07732475706, "muzzle_snds_338_black"}, // 0.26%
  4998. {8717.8871066644, "H_MilCap_blue"}, // 0.26%
  4999. {8743.69688857175, "H_MilCap_oucamo"}, // 0.26%
  5000. {8769.50667047909, "H_MilCap_mcamo"}, // 0.26%
  5001. {8795.31645238643, "H_MilCap_ocamo"}, // 0.26%
  5002. {8821.12623429377, "Exile_Headgear_GasMask"}, // 0.26%
  5003. {8846.93601620112, "H_MilCap_dgtl"}, // 0.26%
  5004. {8872.74579810846, "H_MilCap_rucamo"}, // 0.26%
  5005. {8896.26137717959, "Exile_Item_InstaDoc"}, // 0.24%
  5006. {8918.93711414104, "optic_AMS_snd"}, // 0.23%
  5007. {8941.6128511025, "optic_KHS_blk"}, // 0.23%
  5008. {8964.28858806395, "optic_KHS_hex"}, // 0.23%
  5009. {8986.9643250254, "optic_KHS_old"}, // 0.23%
  5010. {9009.64006198685, "optic_KHS_tan"}, // 0.23%
  5011. {9032.3157989483, "optic_AMS_khk"}, // 0.23%
  5012. {9054.99153590975, "optic_AMS"}, // 0.23%
  5013. {9076.85742512258, "optic_DMS"}, // 0.22%
  5014. {9097.91346658679, "optic_SOS"}, // 0.21%
  5015. {9118.96950805099, "optic_SOS_khk_F"}, // 0.21%
  5016. {9140.02554951519, "optic_LRPS"}, // 0.21%
  5017. {9161.0815909794, "optic_LRPS_tna_F"}, // 0.21%
  5018. {9182.1376324436, "optic_LRPS_ghex_F"}, // 0.21%
  5019. {9201.49496887411, "H_HelmetB"}, // 0.19%
  5020. {9220.85230530462, "H_HelmetB_paint"}, // 0.19%
  5021. {9240.20964173512, "H_HelmetB_light"}, // 0.19%
  5022. {9259.56697816563, "H_HelmetB_plain_blk"}, // 0.19%
  5023. {9278.92431459614, "H_HelmetSpecB_blk"}, // 0.19%
  5024. {9298.28165102664, "H_HelmetSpecB_paint2"}, // 0.19%
  5025. {9317.63898745715, "H_HelmetSpecB_paint1"}, // 0.19%
  5026. {9336.99632388766, "H_HelmetIA"}, // 0.19%
  5027. {9356.35366031816, "H_HelmetSpecB"}, // 0.19%
  5028. {9372.22667619118, "5Rnd_127x108_Mag"}, // 0.16%
  5029. {9388.09969206419, "7Rnd_408_Mag"}, // 0.16%
  5030. {9403.48679928804, "muzzle_snds_B"}, // 0.15%
  5031. {9416.39169024171, "H_HelmetB_desert"}, // 0.13%
  5032. {9429.29658119538, "H_HelmetB_snakeskin"}, // 0.13%
  5033. {9442.20147214905, "H_HelmetB_grass"}, // 0.13%
  5034. {9455.10636310272, "H_HelmetIA_camo"}, // 0.13%
  5035. {9468.0112540564, "H_HelmetIA_net"}, // 0.13%
  5036. {9480.91614501007, "H_HelmetB_light_grass"}, // 0.13%
  5037. {9493.82103596374, "H_HelmetB_light_sand"}, // 0.13%
  5038. {9506.72592691741, "H_HelmetLeaderO_ghex_F"}, // 0.13%
  5039. {9519.63081787109, "H_HelmetSpecO_ghex_F"}, // 0.13%
  5040. {9532.53570882476, "H_HelmetB_tna_F"}, // 0.13%
  5041. {9545.44059977843, "H_Beret_gen_F"}, // 0.13%
  5042. {9558.3454907321, "H_HelmetB_Light_tna_F"}, // 0.13%
  5043. {9571.25038168578, "H_HelmetB_Enh_tna_F"}, // 0.13%
  5044. {9584.15527263945, "H_Helmet_Skate"}, // 0.13%
  5045. {9597.06016359312, "H_BandMask_demon"}, // 0.13%
  5046. {9609.96505454679, "H_HelmetCrew_O_ghex_F"}, // 0.13%
  5047. {9622.86994550046, "H_HelmetB_light_black"}, // 0.13%
  5048. {9635.77483645414, "H_HelmetB_light_desert"}, // 0.13%
  5049. {9648.67972740781, "H_HelmetB_light_snakeskin"}, // 0.13%
  5050. {9661.58461836148, "H_HelmetB_sand"}, // 0.13%
  5051. {9674.48950931515, "H_HelmetB_black"}, // 0.13%
  5052. {9687.39440026883, "H_BandMask_reaper"}, // 0.13%
  5053. {9700.2992912225, "H_BandMask_khk"}, // 0.13%
  5054. {9713.20418217617, "H_HelmetB_TI_tna_F"}, // 0.13%
  5055. {9725.90259487458, "5Rnd_127x108_APDS_Mag"}, // 0.13%
  5056. {9737.57393007533, "U_B_FullGhillie_sard"}, // 0.12%
  5057. {9749.24526527608, "U_I_FullGhillie_sard"}, // 0.12%
  5058. {9760.91660047682, "U_B_FullGhillie_lsh"}, // 0.12%
  5059. {9772.58793567757, "U_O_FullGhillie_ard"}, // 0.12%
  5060. {9784.25927087832, "U_O_FullGhillie_lsh"}, // 0.12%
  5061. {9795.93060607906, "U_O_FullGhillie_sard"}, // 0.12%
  5062. {9807.60194127981, "U_I_FullGhillie_ard"}, // 0.12%
  5063. {9819.27327648056, "U_I_FullGhillie_lsh"}, // 0.12%
  5064. {9830.9446116813, "U_B_FullGhillie_ard"}, // 0.12%
  5065. {9839.04308916753, "muzzle_snds_B_snd_F"}, // 0.08%
  5066. {9847.14156665377, "muzzle_snds_B_khk_F"}, // 0.08%
  5067. {9855.07807459027, "Exile_Magazine_10Rnd_93x64_DMR_05_Bullet_Cam_Mag"}, // 0.08%
  5068. {9863.01458252678, "Exile_Magazine_10Rnd_338_Bullet_Cam_Mag"}, // 0.08%
  5069. {9869.46702800362, "H_PilotHelmetHeli_O"}, // 0.06%
  5070. {9875.91947348045, "H_HelmetSpecO_blk"}, // 0.06%
  5071. {9882.37191895729, "H_CrewHelmetHeli_B"}, // 0.06%
  5072. {9888.82436443412, "H_CrewHelmetHeli_O"}, // 0.06%
  5073. {9895.27680991096, "H_CrewHelmetHeli_I"}, // 0.06%
  5074. {9901.7292553878, "H_HelmetO_oucamo"}, // 0.06%
  5075. {9908.18170086463, "H_HelmetLeaderO_oucamo"}, // 0.06%
  5076. {9914.63414634147, "H_HelmetSpecO_ocamo"}, // 0.06%
  5077. {9921.0865918183, "H_PilotHelmetHeli_B"}, // 0.06%
  5078. {9927.53903729514, "H_HelmetB_camo"}, // 0.06%
  5079. {9933.99148277198, "H_HelmetO_ocamo"}, // 0.06%
  5080. {9940.44392824881, "H_HelmetO_ghex_F"}, // 0.06%
  5081. {9946.89637372565, "H_PilotHelmetFighter_I"}, // 0.06%
  5082. {9953.34881920249, "H_PilotHelmetFighter_O"}, // 0.06%
  5083. {9959.80126467932, "H_PilotHelmetFighter_B"}, // 0.06%
  5084. {9966.25371015616, "H_HelmetCrew_I"}, // 0.06%
  5085. {9972.70615563299, "H_HelmetCrew_O"}, // 0.06%
  5086. {9979.15860110983, "H_HelmetCrew_B"}, // 0.06%
  5087. {9985.61104658667, "H_HelmetLeaderO_ocamo"}, // 0.06%
  5088. {9992.0634920635, "H_PilotHelmetHeli_I"}, // 0.06%
  5089. {9996.82539682541, "Exile_Magazine_7Rnd_408_Bullet_Cam_Mag"}, // 0.05%
  5090. {10000, "Exile_Magazine_5Rnd_127x108_Bullet_Cam_Mag"} // 0.03%
  5091. };
  5092. };
  5093. class CfgPatches {
  5094. class helicrash {
  5095. units[] = {};
  5096. weapons[] = {};
  5097. requiredVersion = 0.1;
  5098. requiredAddons[] = {};
  5099. };
  5100. };
  5101.  
  5102. class CfgFunctions {
  5103. class helicrash {
  5104. class A3CCustom {
  5105. file = "helicrash\init";
  5106. class init {
  5107. postInit = 1;
  5108. };
  5109. };
  5110. };
  5111.  
  5112. class CfgSettings
  5113. {
  5114. ///////////////////////////////////////////////////////////////////////
  5115. // Community Base Addons
  5116. ///////////////////////////////////////////////////////////////////////
  5117. class CBA
  5118. {
  5119. // Set this to 1 if you want to have CBA support
  5120. useStackedEH = 0;
  5121.  
  5122. // If you set this to 1 ...........................................
  5123. iReallyWantToGetHackedAndImRetarded = 0;
  5124. };
  5125.  
  5126. ///////////////////////////////////////////////////////////////////////
  5127. // GARBAGE COLLECTOR
  5128. ///////////////////////////////////////////////////////////////////////
  5129. class GarbageCollector
  5130. {
  5131. /*
  5132. Remark:
  5133. In 0.9.35 and below, Exile has checked if a player was nearby and then delayed
  5134. the deletion. This check has been removed to save server performance.
  5135.  
  5136. Do NOT touch these if you are not 10000% sure what you do!
  5137. */
  5138. class Ingame
  5139. {
  5140. // Dropped items without fissix
  5141. class GroundWeaponHolder
  5142. {
  5143. lifeTime = 10;
  5144. interval = 5;
  5145. };
  5146.  
  5147. // Dropped items with fissix
  5148. class WeaponHolderSimulated
  5149. {
  5150. lifeTime = 10;
  5151. interval = 5;
  5152. };
  5153.  
  5154. // Corpses and wrecks
  5155. class AllDead
  5156. {
  5157. lifeTime = 15;
  5158. interval = 5;
  5159. };
  5160.  
  5161. // Loot spawned inside a building
  5162. class Loot
  5163. {
  5164. lifeTime = 8;
  5165. interval = 1;
  5166. };
  5167.  
  5168. // Never touch this or you will break your sever!
  5169. class Groups
  5170. {
  5171. interval = 0.5;
  5172. };
  5173. };
  5174.  
  5175. class Database
  5176. {
  5177. // Remove all deleted items from the database after X days
  5178. permanentlyDeleteTime = 3;
  5179.  
  5180. // Remove all territories (and contructions + containers in it) that were not paid after X days
  5181. territoryLifeTime = 14;
  5182.  
  5183. // Remove all containers outside of territories that have not been used for X days
  5184. // Example: Tents
  5185. containerLifeTime = 10;
  5186.  
  5187. // Remove all constructions outside of territories that are older than X days or not moved for X days
  5188. // Example: Work Benches
  5189. constructionLifeTime = 2;
  5190.  
  5191. // Remove all vehicles that were not moved/used for X days
  5192. vehicleLifeTime = 10;
  5193.  
  5194. // Set safe as abandoned
  5195. abandonedTime = 7;
  5196.  
  5197. // Deletes a base X days after the flag is stolen if the ransom money isn't paid
  5198. stolenFlagLifeTime = 3;
  5199.  
  5200. // Sets door & safe pins to 0000 and marks safes to abandoned X days after the flag is stolen if the ransom money isn't paid
  5201. unlockLifeTime = 2;
  5202. };
  5203. };
  5204.  
  5205. ///////////////////////////////////////////////////////////////////////
  5206. // RESPECT, YO
  5207. ///////////////////////////////////////////////////////////////////////
  5208. class Respect
  5209. {
  5210. /**
  5211. * Defines the factor of respect you gain for every pop tab in revenue
  5212. *
  5213. * Default: Get 1 respect for every 10 pop tabs
  5214. */
  5215. tradingRespectFactor = 0.1;
  5216.  
  5217. /**
  5218. * Defines the the minimum amount of Respect earned/lost for a kill
  5219. */
  5220. minRespectTransfer = 100;
  5221.  
  5222. /**
  5223. * Defines the amount of respect earned/lost for certain types of frags
  5224. */
  5225. class Frags
  5226. {
  5227. domination = 200; // Keeps killing the same guy
  5228. letItRain = 200; // MG, also vehicle MGs
  5229. humiliation = 300; // Axe
  5230. passenger = 400; // Out of car/chopper/boat
  5231. roadKill = 200; // :)
  5232. bigBird = 600; // Roadkill, but with chopper/plane
  5233. chuteGreaterChopper = 1000; // Someone flies into chute and chopper/plane explodes
  5234. };
  5235.  
  5236. class Percentages
  5237. {
  5238. unlucky = 1; // Dying for an unknown reason costs you 1% respect
  5239. crash = 1; // Crashing your car costs you 1% respect
  5240. suicide = 1; // Comitting suicide costs you 2% of your respect
  5241. friendyFire = 2; // Friendly fire costs you 3%
  5242. npc = 2; // Being killed by an NPC costs you 4%
  5243. bambiKill = 3; // Killing a bambi costs you 5%
  5244. frag = 5; // Killing someone will get you 5% and remove 5% from the victim
  5245. };
  5246.  
  5247. class Handcuffs
  5248. {
  5249. trapping = -50; // A handcuffs B
  5250. breakingFree = 100; // B broke free
  5251. releasedByHero = 100; // C releases B
  5252. releasedByHostageTaker = 50; // A releases B
  5253. };
  5254.  
  5255. class Bonus
  5256. {
  5257. // Bonus per full 100m
  5258. per100mDistance = 200;
  5259.  
  5260. // First blood after server restart
  5261. firstBlood = 200;
  5262.  
  5263. // If you kill someone while you are in your own territory
  5264. homie = 300;
  5265.  
  5266. // If you kill someone who is in his own territory
  5267. raid = 300;
  5268.  
  5269. /*
  5270. Example with killstreak = 50
  5271.  
  5272. Frag Factor Bonus
  5273. 2 * 50 +100
  5274. 3 * 50 +150
  5275. 4 * 50 +200
  5276. 5 * 50 +250
  5277. */
  5278. killStreak = 300;
  5279.  
  5280. // Kills within this amount of seconds stack (default: 2 minutes)
  5281. killStreakTimeout = 120;
  5282. };
  5283. };
  5284.  
  5285. ///////////////////////////////////////////////////////////////////////
  5286. // KILLFEED MAN!
  5287. ///////////////////////////////////////////////////////////////////////
  5288.  
  5289. class KillFeed
  5290. {
  5291. // Shows a kill feed for well kills
  5292. showKillFeed = 1;
  5293. };
  5294.  
  5295. ///////////////////////////////////////////////////////////////////////
  5296. // PLAYER SPAWN CONFIGURATION
  5297. ///////////////////////////////////////////////////////////////////////
  5298. class BambiSettings
  5299. {
  5300. /**
  5301. * Loadout of new bambi players
  5302. *
  5303. * (They will always spawn with a bambi overall - you cannot
  5304. * change the loadout uniform)
  5305. */
  5306. loadOut[] =
  5307. {
  5308. "ItemCompass",
  5309. "ItemMap", // Because why not
  5310. "Exile_Item_XM8",
  5311. "ItemRadio",
  5312. "Exile_Item_PlasticBottleFreshWater",
  5313. "Exile_Item_Dogfood",
  5314. "Exile_Item_DuctTape",
  5315. "Exile_Item_CanOpener"
  5316. };
  5317.  
  5318. /**
  5319. * Enables or disables parachute spawning.
  5320. *
  5321. * 1 = On
  5322. * 0 = Off
  5323. */
  5324. parachuteSpawning = 0;
  5325.  
  5326. /**
  5327. * Enables or disables halo jumping. Only applies
  5328. * if parachute spawning is enabled.
  5329. *
  5330. * Remember that if you enable halo jump, it is adviced
  5331. * to adjust the parachuteDropHeight to something around
  5332. * 1km or so.
  5333. *
  5334. * 1 = On
  5335. * 0 = Off
  5336. */
  5337. haloJump = 0;
  5338.  
  5339. /**
  5340. * Parachute drop height in meters.
  5341. */
  5342. parachuteDropHeight = 1000;
  5343.  
  5344. /**
  5345. * Number of minutes where a fresh spawned player remains in the
  5346. * bambi state. It will end the bambi state after this timeout
  5347. * expired or when they pick up their first weapon. Whatever
  5348. * happens first.
  5349. */
  5350. protectionDuration = 5;
  5351.  
  5352. /**
  5353. * Radius of spawn zones around the center of spawn zone markers.
  5354. */
  5355. spawnZoneRadius = 500;
  5356.  
  5357. /**
  5358. * These vehicles spawn on server restart close to spawn zones.
  5359. * They are non-persistent and will despawn on server restart.
  5360. * Basically they are just used to get away from the spawn zone
  5361. * faster.
  5362. *
  5363. * {Number of vehicles *per* spawn zone, vehicle class name}
  5364. */
  5365. spawnZoneVehicles[] =
  5366. {
  5367. {2, "Exile_Car_Van_Black"},
  5368. {2, "Exile_Car_Offroad_Repair_Civillian"},
  5369. {2, "Exile_Chopper_Hummingbird_Civillian_Digital"}
  5370. };
  5371. };
  5372.  
  5373. ///////////////////////////////////////////////////////////////////////
  5374. // VEHICLE SPAWN CONFIGURATION
  5375. ///////////////////////////////////////////////////////////////////////
  5376.  
  5377. class VehicleSpawn
  5378. {
  5379. /**
  5380. * Grid Size for vehicle spawning,
  5381. * smaller the number more vehicles,
  5382. * you get the point
  5383. */
  5384. vehiclesGridSize = 2200;
  5385.  
  5386. /**
  5387. * Vehicle ammount per grid
  5388. * kinda self explanitory
  5389. */
  5390. vehiclesGridAmount = 2;
  5391.  
  5392. /**
  5393. * Creates global markers for vehicle spawn tweeking,
  5394. * after you are satisfied with vehicle ammount and spread set this to 0.
  5395. */
  5396. vehiclesDebugMarkers = 0;
  5397.  
  5398. /**
  5399. * The server will apply random damage up to this value when spawning a vehicle.
  5400. */
  5401. damageChance = 20; // 20% chance for a vehicle HITPOINT to be damaged
  5402. maximumDamage = 0.9;
  5403.  
  5404. /**
  5405. * If "randmizeFuel" is set to 1, vehicles will spawn with randomized
  5406. * fuel. In this case, "fuel" controls the percentage of fuel that
  5407. * can be in the vehicle at a maximum. For example, if you set this to
  5408. * 0.5, then vehicles will spawn with something random between 0% and 50%.
  5409. *
  5410. * If "randomizeFuel" is set to 0, all vehicles will spawn exactly the
  5411. * fuel percentage defined in "fuel". For example, setting this to 0.5
  5412. * will spawn all vehicles with 50% fuel. Setting it to 0 would spawn
  5413. * all vehicles without fuel.
  5414. */
  5415. randomizeFuel = 1;
  5416. fuel = 1;
  5417.  
  5418. /**
  5419. * Works exactly the same as the fuel setting ^
  5420. */
  5421. randomizeAmmo = 1;
  5422. ammo = 1;
  5423.  
  5424. // Stuff to spawn on water
  5425. water[] =
  5426. {
  5427. "Exile_Boat_MotorBoat_Police",
  5428. "Exile_Boat_MotorBoat_Orange",
  5429. "Exile_Boat_MotorBoat_White",
  5430. "Exile_Boat_RubberDuck_CSAT",
  5431. "Exile_Boat_RubberDuck_Digital",
  5432. "Exile_Boat_RubberDuck_Orange",
  5433. "Exile_Boat_RubberDuck_Blue",
  5434. "Exile_Boat_RubberDuck_Black",
  5435. "Exile_Boat_SDV_CSAT",
  5436. "Exile_Boat_SDV_Digital",
  5437. "Exile_Boat_SDV_Grey"
  5438. };
  5439.  
  5440. // Stuff to spawn on roads
  5441. ground[] =
  5442. {
  5443. "Exile_Bike_QuadBike_Black",
  5444. "Exile_Bike_QuadBike_Blue",
  5445. "Exile_Bike_QuadBike_Red",
  5446. "Exile_Bike_QuadBike_White",
  5447. "Exile_Bike_QuadBike_Nato",
  5448. "Exile_Bike_QuadBike_Csat",
  5449. "Exile_Bike_QuadBike_Fia",
  5450. "Exile_Bike_QuadBike_Guerilla01",
  5451. "Exile_Bike_QuadBike_Guerilla02",
  5452. "Exile_Car_Volha_Blue",
  5453. "Exile_Car_Volha_White",
  5454. "Exile_Car_Lada_Green",
  5455. "Exile_Car_Lada_Taxi",
  5456. "Exile_Car_TowTractor_White",
  5457. "Exile_Car_UAZ_Open_Green",
  5458. "Exile_Car_UAZ_Green",
  5459. "Exile_Car_LandRover_Ambulance_Desert",
  5460. "Exile_Car_Tractor_Red",
  5461. "Exile_Car_OldTractor_Red",
  5462. "Exile_Car_Octavius_White",
  5463. "Exile_Car_Hunter_Abstract",
  5464. "Exile_Car_Ifrit_Abstract",
  5465. "Exile_Chopper_Hummingbird_Civillian_Abstract",
  5466. "Exile_Car_Van_Abstract"
  5467. };
  5468.  
  5469. /**
  5470. * Enables or disables nightvision optics on ALL vehicles
  5471. *
  5472. * 0 = off
  5473. * 1 = on
  5474. */
  5475. nightVision = 1;
  5476.  
  5477. /**
  5478. * Enables or disables thermal optics on ALL vehicles
  5479. *
  5480. * 0 = off
  5481. * 1 = on
  5482. */
  5483. thermalVision = 0;
  5484.  
  5485. /**
  5486. * Set this to 1 to unlock vehicles on server boot if they are in safe zones
  5487. *
  5488. * 0 = off
  5489. * 1 = on
  5490. */
  5491. unlockInSafeZonesAfterRestart = 1;
  5492. };
  5493.  
  5494. class Weather
  5495. {
  5496. /*
  5497. You can define multiple "keyframes" for the weather to change. The server will pick
  5498. a keyframe randomly to simulate the weather. It will change the weather-keyframes
  5499. based on the following interval
  5500. */
  5501. interval = 30;
  5502.  
  5503. /*
  5504. Add the keyframes here. The server will pick one random, so if you want one
  5505. weather type of be more dominant compared to others, add it multiple times
  5506. */
  5507. //keyframes[] = {"Sunny", "Cloudy", "Thunderstorm"};
  5508. keyframes[] = {"Sunny"};
  5509.  
  5510. /*
  5511. This is a keyframe. Look up the BIKI to get more details about the parameters
  5512.  
  5513. Be sure to design the fog settings at a view distance of 1,600m as this is the
  5514. limit in multiplayer by default
  5515.  
  5516. https://community.bistudio.com/wiki/fogParams
  5517. https://community.bistudio.com/wiki/overcast
  5518. https://community.bistudio.com/wiki/setWaves
  5519. https://community.bistudio.com/wiki/setWindStr
  5520. https://community.bistudio.com/wiki/setGusts
  5521. https://community.bistudio.com/wiki/setRain
  5522. https://community.bistudio.com/wiki/setLightnings
  5523. https://community.bistudio.com/wiki/setRainbow
  5524. */
  5525. class Sunny
  5526. {
  5527. fogValue = 0.1;
  5528. fogDecay = 0.2;
  5529. fogBase = 5;
  5530. overcast = 0.2;
  5531. waves = 0.2;
  5532. wind = 0.25;
  5533. gusts = 0.1;
  5534. rain = 0;
  5535. lightnings = 0;
  5536. rainbows = 0;
  5537. };
  5538.  
  5539. class Cloudy
  5540. {
  5541. fogValue = 0.2;
  5542. fogDecay = 0.1;
  5543. fogBase = 5;
  5544. overcast = 0.4;
  5545. waves = 0.4;
  5546. wind = 0.25;
  5547. gusts = 0.5;
  5548. rain = 0.1;
  5549. lightnings = 0.1;
  5550. rainbows = 1;
  5551. };
  5552.  
  5553. class Thunderstorm
  5554. {
  5555. fogValue = 0.7;
  5556. fogDecay = 0.2;
  5557. fogBase = 5;
  5558. overcast = 1;
  5559. waves = 1;
  5560. wind = 0.25;
  5561. gusts = 0.5;
  5562. rain = 1;
  5563. lightnings = 1;
  5564. rainbows = 0.5;
  5565. };
  5566. };
  5567.  
  5568. class Time
  5569. {
  5570. // Uses Dedicated Server time as ingame Time
  5571. useRealTime = 0;
  5572.  
  5573. // Will overide RealTime
  5574. useStaticTime = 1;
  5575.  
  5576. // time in ARMA FORMAT << CONFIG
  5577. // https://community.bistudio.com/wiki/setDate
  5578.  
  5579. staticTime[] = {2039,10,24,15,30};
  5580. };
  5581.  
  5582.  
  5583. class RCON
  5584. {
  5585. /*
  5586. Note that for this to work you need to have serverCommandPassowrd defined in config.cfg and BE enabled
  5587. */
  5588.  
  5589. // This needs to match config.cfg serverCommandPassword
  5590. serverPassword = "";
  5591.  
  5592. // Autolocks server until its ready to accept players
  5593. useAutoLock = 1;
  5594.  
  5595. // Server will autoLock at that time before restart (minutes)
  5596. restartAutoLock = 3;
  5597.  
  5598. /*
  5599. Number of hours and minutes of your restart period.
  5600.  
  5601. Examples:
  5602.  
  5603. {4, 0} = Every 4 hours
  5604. {1, 30} = Every one and a half hour (who the hell would do this?)
  5605. */
  5606. restartTimer[] = {4, 0};
  5607.  
  5608. /*
  5609. Kicks players before restart to prevent gear loss.
  5610. We strongely recommend to use this!
  5611.  
  5612. 0 = off
  5613. 1 = on
  5614. */
  5615. useAutoKick = 1;
  5616.  
  5617. /*
  5618. Number of minutes before the server kicks players that did
  5619. not disconnect before the restart. Should at least be two
  5620. minutes!
  5621. */
  5622. kickTime = 2;
  5623.  
  5624. /*
  5625. Self-explanatory
  5626.  
  5627. 0 = off
  5628. 1 = on
  5629. */
  5630. useRestartMessages = 1;
  5631.  
  5632. /*
  5633. Number of minutes before the restart to inform your players.
  5634.  
  5635. Only use full minutes here. Value like 5.5 have not been tested.
  5636. */
  5637. restartWarningTime[] = {15, 10, 5, 3};
  5638.  
  5639. /*
  5640. If set to 1 server will execute '#shutdown',
  5641. to try to shutdown the server
  5642. */
  5643.  
  5644. useShutdown = 1;
  5645. };
  5646.  
  5647. class ServerSettings
  5648. {
  5649. /*
  5650. Support for custom server FSM if wanted
  5651. */
  5652. serverFSM = "exile_server\fsm\main.fsm";
  5653.  
  5654. /*
  5655. If this is enabled, Exile developers will spawn with a ton of pop tabs.
  5656. We will have a hard time debugging things if you disable this.
  5657. */
  5658. devFriendyMode = 1;
  5659.  
  5660. devs[] =
  5661. {
  5662. {"76561197985241690","[EXILE|DEV] Eichi"},
  5663. {"76561198022879703","[EXILE|DEV] Grim"},
  5664. {"76561198075905447","[EXILE|DEV] Vishpala"},
  5665. {"76561197968613061","[EXILE|DEV] Niuva"}
  5666. };
  5667. };
  5668.  
  5669. class Events
  5670. {
  5671. /*
  5672. A list of events that are active
  5673. */
  5674. enabledEvents[] = {"SupplyBox", "AbandonedSafe", "AmbientFlyOver", "EarthQuake"};
  5675.  
  5676. class EarthQuake
  5677. {
  5678. type = "spawn";
  5679. function = "ExileServer_system_event_earthQuake_start";
  5680. minTime = 60;
  5681. maxTime = 180;
  5682. minimumPlayersOnline = 1;
  5683. };
  5684.  
  5685. class SupplyBox
  5686. {
  5687. /*
  5688. Drops a supply box on a parachute next to a random airport on the map.
  5689. The box may contain items. The box can be transported to a territory
  5690. and installed to become a normal storage container.
  5691. */
  5692. type = "spawn";
  5693. function = "ExileServer_system_event_supplyBox_start";
  5694. minTime = 60; // minutes
  5695. maxTime = 180; // minutes
  5696. minimumPlayersOnline = 10;
  5697. dropRadius = 500; // 500m around an airport (including the main airport on Altis!)
  5698. dropAltitude = 100; // altitude of the drop
  5699. markerTime = 10; // minutes
  5700.  
  5701. /*
  5702. These are different types of boxes can be dropped.
  5703. You can specify the cargo a box should contain.
  5704. The type of box is chosen randomly from the following list.
  5705. Add a type multiple times to increase the chance of being used.
  5706. */
  5707. types[] = {"Beer", "Beer", "Tools", "Food", "Food", "RepairParts"};
  5708.  
  5709. class BoxTypes
  5710. {
  5711. class Beer
  5712. {
  5713. items[] =
  5714. {
  5715. {"Exile_Item_Beer", 24}
  5716. };
  5717. };
  5718.  
  5719. class Food
  5720. {
  5721. items[] =
  5722. {
  5723. {"Exile_Item_BBQSandwich", 5},
  5724. {"Exile_Item_Catfood", 5},
  5725. {"Exile_Item_ChristmasTinner", 5},
  5726. {"Exile_Item_GloriousKnakworst", 5},
  5727. {"Exile_Item_SausageGravy", 5},
  5728. {"Exile_Item_Surstromming", 5},
  5729. {"Exile_Item_CanOpener", 1},
  5730. {"Exile_Item_CookingPot", 1},
  5731. {"Exile_Item_Matches", 1}
  5732. };
  5733. };
  5734.  
  5735. class Tools
  5736. {
  5737. items[] =
  5738. {
  5739. {"Exile_Item_Wrench", 1},
  5740. {"Exile_Item_Shovel", 1},
  5741. {"Exile_Item_Screwdriver", 1},
  5742. {"Exile_Item_Pliers", 1},
  5743. {"Exile_Item_Handsaw", 1},
  5744. {"Exile_Item_FireExtinguisher", 1},
  5745. {"Exile_Item_DuctTape", 1}
  5746. };
  5747. };
  5748.  
  5749. class RepairParts
  5750. {
  5751. items[] =
  5752. {
  5753. {"Exile_Item_CarWheel", 8},
  5754. {"Exile_Item_FuelCanisterFull", 4},
  5755. {"Exile_Item_OilCanister", 1},
  5756. {"Exile_Item_Grinder", 1},
  5757. {"Exile_Item_CordlessScrewdriver", 1}
  5758. };
  5759. };
  5760. };
  5761. };
  5762.  
  5763. class AbandonedSafe
  5764. {
  5765. type = "spawn";
  5766. function = "ExileServer_system_event_abandonedSafe_start";
  5767. minTime = 60; // minutes
  5768. maxTime = 120; // minutes
  5769. minimumPlayersOnline = 0;
  5770. markerTime = 15; // minutes
  5771. };
  5772.  
  5773. class AmbientFlyOver
  5774. {
  5775. type = "call";
  5776. function = "ExileServer_system_event_ambientFlyOver_start";
  5777. minTime = 30; // minutes
  5778. maxTime = 90; // minutes
  5779. minimumPlayersOnline = 1;
  5780. };
  5781. };
  5782.  
  5783. class Logging
  5784. {
  5785. /*
  5786. If logging is enabled separate logs will be made in the sql logs folder for each type
  5787. */
  5788. traderLogging = 1;
  5789. deathLogging = 1;
  5790. territoryLogging = 1;
  5791. };
  5792. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement