Advertisement
Guest User

Untitled

a guest
Dec 28th, 2016
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 335.21 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 CfgLootTables
  2293. {
  2294. /**
  2295. Result of 100 rounds:
  2296. CUP_hgun_Colt1911
  2297. Exile_Item_Beer
  2298. V_Rangemaster_belt
  2299. CUP_smg_EVO
  2300. 6Rnd_RedSignal_F
  2301. Exile_Item_SeedAstics
  2302. Chemlight_yellow
  2303. muzzle_snds_L
  2304. FlareWhite_F
  2305. U_C_Journalist
  2306. CUP_hgun_Compact
  2307. Exile_Item_MountainDupe
  2308. Chemlight_yellow
  2309. FlareWhite_F
  2310. B_OutdoorPack_blu
  2311. B_OutdoorPack_blk
  2312. FlareYellow_F
  2313. Chemlight_yellow
  2314. Exile_Item_Moobar
  2315. H_Bandanna_surfer
  2316. hgun_Pistol_heavy_01_F
  2317. H_Hat_tan
  2318. Exile_Item_Hammer
  2319. Exile_Item_CatFood
  2320. hgun_Pistol_heavy_02_F
  2321. U_OrestesBody
  2322. muzzle_snds_L
  2323. Chemlight_yellow
  2324. hgun_Pistol_heavy_01_F
  2325. SMG_01_F
  2326. B_AssaultPack_cbr
  2327. 9Rnd_45ACP_Mag
  2328. H_Cap_blk_Raven
  2329. 9Rnd_45ACP_Mag
  2330. Exile_Item_Dogfood
  2331. CUP_hgun_Glock17
  2332. CUP_arifle_Mk16_SV
  2333. U_C_Poor_shorts_1
  2334. FlareRed_F
  2335. 30Rnd_45ACP_Mag_SMG_01
  2336. Exile_Item_PlasticBottleFreshWater
  2337. hgun_PDW2000_F
  2338. U_C_Poor_2
  2339. U_C_Poor_1
  2340. H_Cap_red
  2341. Exile_Item_MountainDupe
  2342. Exile_Item_EnergyDrink
  2343. H_Cap_headphones
  2344. B_AssaultPack_dgtl
  2345. Exile_Item_MountainDupe
  2346. CUP_arifle_CZ805_A2
  2347. V_Rangemaster_belt
  2348. B_AssaultPack_cbr
  2349. hgun_Rook40_F
  2350. NVGoggles_OPFOR
  2351. U_C_Journalist
  2352. 30Rnd_45ACP_Mag_SMG_01
  2353. H_Cap_oli
  2354. U_NikosAgedBody
  2355. CUP_arifle_Sa58P_des
  2356. Exile_Item_Beer
  2357. CUP_optic_Kobra
  2358. 9Rnd_45ACP_Mag
  2359. H_Bandanna_surfer
  2360. Exile_Item_Cheathas
  2361. Exile_Item_ChristmasTinner
  2362. U_C_Journalist
  2363. H_Cap_blu
  2364. H_Cap_red
  2365. optic_Aco
  2366. Exile_Item_CanOpener
  2367. optic_ACO_grn_smg
  2368. Exile_Item_Beer
  2369. Exile_Item_Beer
  2370. Exile_Item_GloriousKnakworst
  2371. Exile_Item_PowerDrink
  2372. Exile_Item_InstantCoffee
  2373. U_C_Poloshirt_salmon
  2374. CUP_smg_EVO
  2375. Exile_Item_ZipTie
  2376. B_Kitbag_sgg
  2377. V_Press_F
  2378. Exile_Item_PowerDrink
  2379. H_Cap_oli
  2380. SMG_02_F
  2381. H_Hat_blue
  2382. H_Cap_press
  2383. FlareWhite_F
  2384. hgun_Rook40_F
  2385. FlareYellow_F
  2386. CUP_smg_EVO
  2387. Chemlight_red
  2388. Exile_Item_PowerDrink
  2389. FlareYellow_F
  2390. Exile_Item_Beer
  2391. FlareRed_F
  2392. Exile_Item_CordlessScrewdriver
  2393. H_StrawHat
  2394. Exile_Item_Foolbox
  2395. FlareGreen_F
  2396. */
  2397. class CivillianLowerClass
  2398. {
  2399. count
  2400. half
  2401. halfIndex
  2402. sum
  2403. items[]
  2404. {
  2405. {392.670157068063, "Exile_Item_PlasticBottleDirtyWater"}, // 3.93%
  2406. {654.450261780105, "Exile_Item_MountainDupe"}, // 2.62%
  2407. {876.96335078534, "Exile_Item_EnergyDrink"}, // 2.23%
  2408. {1060.20942408377, "Exile_Item_Beer"}, // 1.83%
  2409. {1217.27748691099, "Exile_Item_PlasticBottleFreshWater"}, // 1.57%
  2410. {1348.16753926702, "FlareRed_F"}, // 1.31%
  2411. {1479.05759162304, "FlareWhite_F"}, // 1.31%
  2412. {1609.94764397906, "FlareYellow_F"}, // 1.31%
  2413. {1740.83769633508, "V_Rangemaster_belt"}, // 1.31%
  2414. {1871.7277486911, "Chemlight_blue"}, // 1.31%
  2415. {2002.61780104712, "30Rnd_45ACP_Mag_SMG_01"}, // 1.31%
  2416. {2133.50785340314, "30Rnd_45ACP_Mag_SMG_01_Tracer_Green"}, // 1.31%
  2417. {2264.39790575916, "FlareGreen_F"}, // 1.31%
  2418. {2395.28795811518, "Chemlight_yellow"}, // 1.31%
  2419. {2526.1780104712, "Chemlight_red"}, // 1.31%
  2420. {2657.06806282723, "Chemlight_green"}, // 1.31%
  2421. {2775.08368380397, "Exile_Item_InstantCoffee"}, // 1.18%
  2422. {2871.64191914857, "Exile_Item_Raisins"}, // 0.97%
  2423. {2968.20015449318, "Exile_Item_Moobar"}, // 0.97%
  2424. {3062.44099218951, "muzzle_snds_L"}, // 0.94%
  2425. {3156.68182988585, "muzzle_snds_acp"}, // 0.94%
  2426. {3249.98958998123, "U_C_Journalist"}, // 0.93%
  2427. {3343.29735007661, "U_Rangemaster"}, // 0.93%
  2428. {3436.60511017199, "U_C_HunterBody_grn"}, // 0.93%
  2429. {3529.91287026737, "U_C_Poor_shorts_1"}, // 0.93%
  2430. {3623.22063036275, "U_C_Scientist"}, // 0.93%
  2431. {3716.52839045813, "U_C_Poor_2"}, // 0.93%
  2432. {3809.83615055351, "U_C_Poor_1"}, // 0.93%
  2433. {3901.45918720273, "Exile_Item_PowerDrink"}, // 0.92%
  2434. {3987.28872973127, "Exile_Item_SeedAstics"}, // 0.86%
  2435. {4069.44740874859, "SMG_01_F"}, // 0.82%
  2436. {4149.1896560301, "hgun_PDW2000_F"}, // 0.80%
  2437. {4228.93190331161, "SMG_02_F"}, // 0.80%
  2438. {4304.03275302408, "Exile_Item_CatFood"}, // 0.75%
  2439. {4379.13360273656, "Exile_Item_Surstromming"}, // 0.75%
  2440. {4454.23445244903, "Exile_Item_SausageGravy"}, // 0.75%
  2441. {4529.3353021615, "Exile_Item_ChristmasTinner"}, // 0.75%
  2442. {4604.43615187397, "Exile_Item_BBQSandwich"}, // 0.75%
  2443. {4679.53700158644, "Exile_Item_Dogfood"}, // 0.75%
  2444. {4754.63785129891, "Exile_Item_BeefParts"}, // 0.75%
  2445. {4829.73870101138, "Exile_Item_Cheathas"}, // 0.75%
  2446. {4904.83955072385, "Exile_Item_Noodles"}, // 0.75%
  2447. {4978.13798004323, "30Rnd_9x21_Mag"}, // 0.73%
  2448. {5051.4364093626, "11Rnd_45ACP_Mag"}, // 0.73%
  2449. {5124.73483868197, "9Rnd_45ACP_Mag"}, // 0.73%
  2450. {5197.30754097838, "U_C_Poloshirt_stripped"}, // 0.73%
  2451. {5269.88024327478, "U_C_Poloshirt_tricolour"}, // 0.73%
  2452. {5342.45294557119, "U_C_Poloshirt_salmon"}, // 0.73%
  2453. {5415.0256478676, "U_C_Poloshirt_burgundy"}, // 0.73%
  2454. {5487.59835016401, "U_C_Poloshirt_blue"}, // 0.73%
  2455. {5560.09130223811, "SMG_05_F"}, // 0.72%
  2456. {5630.45779438471, "hgun_P07_F"}, // 0.70%
  2457. {5700.26582230792, "CUP_sgun_M1014"}, // 0.70%
  2458. {5770.07385023113, "CUP_sgun_Saiga12K"}, // 0.70%
  2459. {5839.88187815434, "CUP_sgun_AA12"}, // 0.70%
  2460. {5906.89758496062, "hgun_Rook40_F"}, // 0.67%
  2461. {5973.9132917669, "hgun_ACPC2_F"}, // 0.67%
  2462. {6039.35831794492, "V_Press_F"}, // 0.65%
  2463. {6104.80334412293, "V_TacVest_blk_POLICE"}, // 0.65%
  2464. {6169.17550101933, "Exile_Item_GloriousKnakworst"}, // 0.64%
  2465. {6232.00272615022, "H_Cap_tan"}, // 0.63%
  2466. {6294.82995128111, "H_StrawHat_dark"}, // 0.63%
  2467. {6357.657176412, "H_StrawHat"}, // 0.63%
  2468. {6420.48440154289, "H_Hat_tan"}, // 0.63%
  2469. {6483.31162667378, "H_Hat_grey"}, // 0.63%
  2470. {6546.13885180467, "H_Hat_checker"}, // 0.63%
  2471. {6608.96607693556, "H_Hat_brown"}, // 0.63%
  2472. {6671.79330206645, "H_Hat_blue"}, // 0.63%
  2473. {6734.62052719734, "H_Cap_red"}, // 0.63%
  2474. {6797.44775232823, "H_Cap_press"}, // 0.63%
  2475. {6856.08649578373, "6Rnd_45ACP_Cylinder"}, // 0.59%
  2476. {6913.67811882037, "B_OutdoorPack_blk"}, // 0.58%
  2477. {6967.32158290071, "Exile_Item_Matches"}, // 0.54%
  2478. {7020.96504698105, "Exile_Item_CanOpener"}, // 0.54%
  2479. {7073.32106792346, "H_Cap_headphones"}, // 0.52%
  2480. {7125.67708886586, "H_Cap_grn"}, // 0.52%
  2481. {7178.03310980827, "H_Cap_blu"}, // 0.52%
  2482. {7230.38913075068, "H_Cap_blk_Raven"}, // 0.52%
  2483. {7282.74515169309, "H_Cap_blk"}, // 0.52%
  2484. {7335.1011726355, "H_Beret_blk_POLICE"}, // 0.52%
  2485. {7387.45719357791, "H_Bandanna_surfer"}, // 0.52%
  2486. {7439.81321452032, "H_Cap_oli"}, // 0.52%
  2487. {7492.16923546272, "Exile_Item_ZipTie"}, // 0.52%
  2488. {7544.52525640513, "CUP_smg_MP5A5"}, // 0.52%
  2489. {7596.88127734754, "CUP_smg_EVO"}, // 0.52%
  2490. {7649.23729828995, "CUP_smg_bizon"}, // 0.52%
  2491. {7701.59331923236, "CUP_smg_MP5SD6"}, // 0.52%
  2492. {7753.42577996534, "B_OutdoorPack_tan"}, // 0.52%
  2493. {7805.25824069833, "B_OutdoorPack_blu"}, // 0.52%
  2494. {7851.33153912765, "B_HuntingBackpack"}, // 0.46%
  2495. {7894.89174855173, "hgun_Pistol_01_F"}, // 0.44%
  2496. {7938.45195797581, "hgun_Pistol_Signal_F"}, // 0.44%
  2497. {7982.0121673999, "hgun_Pistol_heavy_01_F"}, // 0.44%
  2498. {8025.57237682398, "hgun_Pistol_heavy_02_F"}, // 0.44%
  2499. {8067.45719357791, "optic_Aco_smg"}, // 0.42%
  2500. {8109.34201033183, "optic_ACO_grn_smg"}, // 0.42%
  2501. {8151.22682708576, "optic_Holosight_smg"}, // 0.42%
  2502. {8193.11164383969, "optic_ACO_grn"}, // 0.42%
  2503. {8234.99646059361, "optic_Aco"}, // 0.42%
  2504. {8275.68766857994, "ItemWatch"}, // 0.41%
  2505. {8316.37887656627, "ItemRadio"}, // 0.41%
  2506. {8356.69301269193, "B_AssaultPack_cbr"}, // 0.40%
  2507. {8397.00714881758, "B_AssaultPack_mcamo"}, // 0.40%
  2508. {8437.32128494324, "B_AssaultPack_khk"}, // 0.40%
  2509. {8477.63542106889, "B_AssaultPack_blk"}, // 0.40%
  2510. {8517.94955719455, "B_AssaultPack_sgg"}, // 0.40%
  2511. {8558.2636933202, "B_AssaultPack_rgr"}, // 0.40%
  2512. {8598.57782944586, "B_AssaultPack_dgtl"}, // 0.40%
  2513. {8638.78725352963, "hgun_P07_khk_F"}, // 0.40%
  2514. {8675.43646818931, "16Rnd_9x21_Mag"}, // 0.37%
  2515. {8712.085682849, "optic_Yorris"}, // 0.37%
  2516. {8748.73489750869, "optic_MRD"}, // 0.37%
  2517. {8780.92097595689, "Exile_Item_CookingPot"}, // 0.32%
  2518. {8813.10705440509, "Exile_Item_EMRE"}, // 0.32%
  2519. {8841.90286592341, "B_Kitbag_mcamo"}, // 0.29%
  2520. {8870.69867744174, "B_Kitbag_sgg"}, // 0.29%
  2521. {8899.49448896006, "B_Kitbag_cbr"}, // 0.29%
  2522. {8926.62196095095, "Exile_Item_Screwdriver"}, // 0.27%
  2523. {8953.74943294183, "ItemGPS"}, // 0.27%
  2524. {8980.87690493272, "Exile_Item_OilCanister"}, // 0.27%
  2525. {9008.0043769236, "Exile_Item_Foolbox"}, // 0.27%
  2526. {9035.13184891449, "Exile_Item_CordlessScrewdriver"}, // 0.27%
  2527. {9062.25932090537, "Exile_Item_FireExtinguisher"}, // 0.27%
  2528. {9089.38679289626, "Exile_Item_Hammer"}, // 0.27%
  2529. {9116.51426488714, "Binocular"}, // 0.27%
  2530. {9143.64173687803, "Laserdesignator_03"}, // 0.27%
  2531. {9170.76920886891, "Laserdesignator_02"}, // 0.27%
  2532. {9197.8966808598, "NVGoggles_INDEP"}, // 0.27%
  2533. {9225.02415285068, "NVGoggles_OPFOR"}, // 0.27%
  2534. {9252.15162484157, "Exile_Item_MobilePhone"}, // 0.27%
  2535. {9279.27909683246, "Exile_Item_SleepingMat"}, // 0.27%
  2536. {9306.40656882334, "Exile_Item_Wrench"}, // 0.27%
  2537. {9333.53404081423, "Exile_Item_Shovel"}, // 0.27%
  2538. {9359.18849107601, "6Rnd_GreenSignal_F"}, // 0.26%
  2539. {9384.84294133779, "6Rnd_RedSignal_F"}, // 0.26%
  2540. {9402.29494831859, "CUP_hgun_Makarov"}, // 0.17%
  2541. {9419.74695529939, "CUP_hgun_MicroUzi"}, // 0.17%
  2542. {9437.19896228019, "CUP_hgun_TaurusTracker455"}, // 0.17%
  2543. {9454.65096926099, "CUP_hgun_TaurusTracker455_gold"}, // 0.17%
  2544. {9472.1029762418, "CUP_hgun_PB6P9"}, // 0.17%
  2545. {9489.5549832226, "CUP_hgun_SA61"}, // 0.17%
  2546. {9507.0069902034, "CUP_hgun_Duty"}, // 0.17%
  2547. {9524.4589971842, "CUP_hgun_Phantom"}, // 0.17%
  2548. {9541.91100416501, "CUP_hgun_Glock17"}, // 0.17%
  2549. {9559.36301114581, "CUP_hgun_M9"}, // 0.17%
  2550. {9576.81501812661, "CUP_hgun_Colt1911"}, // 0.17%
  2551. {9594.26702510741, "CUP_hgun_Compact"}, // 0.17%
  2552. {9604.6345540069, "U_NikosAgedBody"}, // 0.10%
  2553. {9615.00208290639, "U_OrestesBody"}, // 0.10%
  2554. {9625.36961180587, "U_NikosBody"}, // 0.10%
  2555. {9630.12925007337, "CUP_acc_Glock17_Flashlight"}, // 0.05%
  2556. {9634.88888834086, "CUP_acc_ANPEQ_15"}, // 0.05%
  2557. {9639.64852660835, "CUP_acc_ANPEQ_2"}, // 0.05%
  2558. {9644.40816487584, "CUP_acc_Flashlight"}, // 0.05%
  2559. {9649.16780314333, "CUP_acc_Flashlight_wdl"}, // 0.05%
  2560. {9653.92744141082, "CUP_acc_Flashlight_desert"}, // 0.05%
  2561. {9658.68707967831, "CUP_acc_XM8_light_module"}, // 0.05%
  2562. {9663.4467179458, "CUP_acc_ANPEQ_2_camo"}, // 0.05%
  2563. {9668.20635621329, "CUP_acc_ANPEQ_2_desert"}, // 0.05%
  2564. {9672.96599448078, "CUP_acc_ANPEQ_2_grey"}, // 0.05%
  2565. {9677.72563274828, "CUP_acc_CZ_M3X"}, // 0.05%
  2566. {9680.63430057841, "CUP_muzzle_snds_SCAR_H"}, // 0.03%
  2567. {9683.54296840854, "CUP_muzzle_snds_AWM"}, // 0.03%
  2568. {9686.45163623868, "CUP_muzzle_mfsup_SCAR_H"}, // 0.03%
  2569. {9689.36030406881, "CUP_muzzle_PBS4"}, // 0.03%
  2570. {9692.26897189894, "CUP_muzzle_snds_L85"}, // 0.03%
  2571. {9695.17763972908, "CUP_muzzle_snds_XM8"}, // 0.03%
  2572. {9698.08630755921, "CUP_muzzle_snds_M16_camo"}, // 0.03%
  2573. {9700.99497538935, "CUP_muzzle_snds_M16"}, // 0.03%
  2574. {9703.90364321948, "CUP_muzzle_snds_SCAR_L"}, // 0.03%
  2575. {9706.81231104961, "CUP_muzzle_mfsup_SCAR_L"}, // 0.03%
  2576. {9709.72097887975, "CUP_muzzle_snds_G36_desert"}, // 0.03%
  2577. {9712.62964670988, "CUP_muzzle_snds_G36_black"}, // 0.03%
  2578. {9715.53831454001, "CUP_muzzle_Bizon"}, // 0.03%
  2579. {9718.44698237015, "CUP_muzzle_snds_M110"}, // 0.03%
  2580. {9721.35565020028, "CUP_muzzle_snds_M14"}, // 0.03%
  2581. {9724.26431803041, "CUP_muzzle_snds_M9"}, // 0.03%
  2582. {9727.17298586055, "CUP_muzzle_snds_MicroUzi"}, // 0.03%
  2583. {9730.08165369068, "CUP_muzzle_PB6P9"}, // 0.03%
  2584. {9732.91170887676, "CUP_arifle_CZ805_A1"}, // 0.03%
  2585. {9735.74176406283, "CUP_arifle_Mk17_CQC_SFG"}, // 0.03%
  2586. {9738.57181924891, "CUP_arifle_Sa58RIS2_camo"}, // 0.03%
  2587. {9741.40187443499, "CUP_arifle_Sa58RIS2"}, // 0.03%
  2588. {9744.23192962106, "CUP_arifle_M4A1_BUIS_GL"}, // 0.03%
  2589. {9747.06198480714, "CUP_arifle_M4A1_BUIS_camo_GL"}, // 0.03%
  2590. {9749.89203999321, "CUP_arifle_M4A1_BUIS_desert_GL"}, // 0.03%
  2591. {9752.72209517929, "CUP_arifle_M4A1_black"}, // 0.03%
  2592. {9755.55215036536, "CUP_arifle_M4A1_desert"}, // 0.03%
  2593. {9758.38220555144, "CUP_arifle_L85A2"}, // 0.03%
  2594. {9761.21226073752, "CUP_arifle_CZ805_GL"}, // 0.03%
  2595. {9764.04231592359, "CUP_arifle_L85A2_GL"}, // 0.03%
  2596. {9766.87237110967, "CUP_arifle_FNFAL_railed"}, // 0.03%
  2597. {9769.70242629574, "CUP_arifle_AK107_GL"}, // 0.03%
  2598. {9772.53248148182, "CUP_arifle_Sa58P_des"}, // 0.03%
  2599. {9775.36253666789, "CUP_arifle_Sa58V_camo"}, // 0.03%
  2600. {9778.19259185397, "CUP_arifle_Sa58RIS1"}, // 0.03%
  2601. {9781.02264704004, "CUP_arifle_Sa58RIS1_des"}, // 0.03%
  2602. {9783.85270222612, "CUP_arifle_L86A2"}, // 0.03%
  2603. {9786.6827574122, "CUP_arifle_CZ805_B_GL"}, // 0.03%
  2604. {9789.51281259827, "CUP_arifle_CZ805_B"}, // 0.03%
  2605. {9792.34286778435, "CUP_arifle_XM8_Carbine"}, // 0.03%
  2606. {9795.17292297042, "CUP_arifle_G36C_camo"}, // 0.03%
  2607. {9798.0029781565, "CUP_arifle_MG36"}, // 0.03%
  2608. {9800.83303334257, "CUP_arifle_MG36_camo"}, // 0.03%
  2609. {9803.66308852865, "CUP_arifle_AK74"}, // 0.03%
  2610. {9806.49314371473, "CUP_arifle_AK107"}, // 0.03%
  2611. {9809.3231989008, "CUP_arifle_AKS74"}, // 0.03%
  2612. {9812.15325408688, "CUP_arifle_G36C"}, // 0.03%
  2613. {9814.98330927295, "CUP_arifle_AKS74U"}, // 0.03%
  2614. {9817.81336445903, "CUP_arifle_AKM"}, // 0.03%
  2615. {9820.6434196451, "CUP_arifle_AKS"}, // 0.03%
  2616. {9823.47347483118, "CUP_arifle_AKS_Gold"}, // 0.03%
  2617. {9826.30353001726, "CUP_arifle_RPK74"}, // 0.03%
  2618. {9829.13358520333, "CUP_arifle_AK74_GL_kobra"}, // 0.03%
  2619. {9831.96364038941, "CUP_arifle_CZ805_A2"}, // 0.03%
  2620. {9834.79369557548, "CUP_arifle_AK74_GL"}, // 0.03%
  2621. {9837.62375076156, "CUP_arifle_G36K_camo"}, // 0.03%
  2622. {9840.45380594763, "CUP_arifle_G36K"}, // 0.03%
  2623. {9843.28386113371, "CUP_arifle_G36A_camo"}, // 0.03%
  2624. {9846.11391631979, "CUP_arifle_XM8_Carbine_FG"}, // 0.03%
  2625. {9848.94397150586, "CUP_arifle_XM8_Carbine_GL"}, // 0.03%
  2626. {9851.77402669194, "CUP_arifle_XM8_Compact"}, // 0.03%
  2627. {9854.60408187801, "CUP_arifle_xm8_SAW"}, // 0.03%
  2628. {9857.43413706409, "CUP_arifle_xm8_sharpshooter"}, // 0.03%
  2629. {9860.26419225016, "CUP_arifle_Mk16_CQC"}, // 0.03%
  2630. {9863.09424743624, "CUP_arifle_Sa58P"}, // 0.03%
  2631. {9865.92430262232, "CUP_arifle_Sa58V"}, // 0.03%
  2632. {9868.75435780839, "CUP_arifle_M16A2"}, // 0.03%
  2633. {9871.58441299447, "CUP_arifle_M16A2_GL"}, // 0.03%
  2634. {9874.41446818054, "CUP_arifle_M16A4_GL"}, // 0.03%
  2635. {9877.24452336662, "CUP_arifle_M4A1"}, // 0.03%
  2636. {9880.07457855269, "CUP_arifle_M4A1_camo"}, // 0.03%
  2637. {9882.90463373877, "CUP_arifle_FNFAL"}, // 0.03%
  2638. {9885.73468892485, "CUP_arifle_G36A"}, // 0.03%
  2639. {9888.56474411092, "CUP_arifle_M16A4_Base"}, // 0.03%
  2640. {9891.394799297, "CUP_arifle_XM8_Railed"}, // 0.03%
  2641. {9894.22485448307, "CUP_arifle_Mk16_CQC_EGLM"}, // 0.03%
  2642. {9897.05490966915, "CUP_arifle_Mk20"}, // 0.03%
  2643. {9899.88496485522, "CUP_arifle_XM8_Compact_Rail"}, // 0.03%
  2644. {9902.7150200413, "CUP_arifle_Mk16_CQC_FG"}, // 0.03%
  2645. {9905.54507522738, "CUP_arifle_Mk16_CQC_SFG"}, // 0.03%
  2646. {9908.37513041345, "CUP_arifle_Mk16_STD"}, // 0.03%
  2647. {9911.20518559953, "CUP_arifle_Mk16_STD_SFG"}, // 0.03%
  2648. {9914.0352407856, "CUP_arifle_Mk16_STD_EGLM"}, // 0.03%
  2649. {9916.86529597168, "CUP_arifle_Mk16_SV"}, // 0.03%
  2650. {9919.69535115775, "CUP_arifle_Mk16_STD_FG"}, // 0.03%
  2651. {9922.52540634383, "CUP_arifle_Mk17_CQC_FG"}, // 0.03%
  2652. {9925.35546152991, "CUP_arifle_Mk17_STD_EGLM"}, // 0.03%
  2653. {9928.18551671598, "CUP_arifle_Mk17_CQC_EGLM"}, // 0.03%
  2654. {9931.01557190206, "CUP_arifle_Mk17_CQC"}, // 0.03%
  2655. {9933.84562708813, "CUP_arifle_Mk17_STD"}, // 0.03%
  2656. {9936.67568227421, "CUP_arifle_Mk17_STD_FG"}, // 0.03%
  2657. {9939.50573746028, "CUP_arifle_Mk17_STD_SFG"}, // 0.03%
  2658. {9942.21848465937, "Exile_Headgear_GasMask"}, // 0.03%
  2659. {9944.93123185846, "Exile_Item_Knife"}, // 0.03%
  2660. {9947.64397905755, "Exile_Item_ThermalScannerPro"}, // 0.03%
  2661. {9948.95287958111, "CUP_optic_SUSAT"}, // 0.01%
  2662. {9950.26178010467, "CUP_optic_CompM2_Woodland"}, // 0.01%
  2663. {9951.57068062823, "CUP_optic_CompM2_Woodland2"}, // 0.01%
  2664. {9952.87958115179, "CUP_optic_RCO_desert"}, // 0.01%
  2665. {9954.18848167535, "CUP_optic_RCO"}, // 0.01%
  2666. {9955.49738219891, "CUP_optic_CWS"}, // 0.01%
  2667. {9956.80628272247, "CUP_optic_CompM4"}, // 0.01%
  2668. {9958.11518324603, "CUP_optic_Kobra"}, // 0.01%
  2669. {9959.42408376959, "CUP_optic_Eotech533"}, // 0.01%
  2670. {9960.73298429314, "CUP_optic_HoloDesert"}, // 0.01%
  2671. {9962.0418848167, "CUP_optic_HoloWdl"}, // 0.01%
  2672. {9963.35078534026, "CUP_optic_HoloBlack"}, // 0.01%
  2673. {9964.65968586382, "CUP_optic_PechenegScope"}, // 0.01%
  2674. {9965.96858638738, "CUP_optic_NSPU"}, // 0.01%
  2675. {9967.27748691094, "CUP_optic_GOSHAWK"}, // 0.01%
  2676. {9968.5863874345, "CUP_optic_CompM2_Black"}, // 0.01%
  2677. {9969.89528795806, "CUP_optic_Eotech533Grey"}, // 0.01%
  2678. {9971.20418848162, "CUP_optic_CompM2_Desert"}, // 0.01%
  2679. {9972.51308900518, "CUP_optic_LeupoldMk4_MRT_tan"}, // 0.01%
  2680. {9973.82198952874, "CUP_optic_SB_3_12x50_PMII"}, // 0.01%
  2681. {9975.1308900523, "CUP_optic_PSO_1"}, // 0.01%
  2682. {9976.43979057586, "CUP_optic_TrijiconRx01_desert"}, // 0.01%
  2683. {9977.74869109942, "CUP_optic_TrijiconRx01_black"}, // 0.01%
  2684. {9979.05759162298, "CUP_optic_MRad"}, // 0.01%
  2685. {9980.36649214654, "CUP_optic_ZDDot"}, // 0.01%
  2686. {9981.6753926701, "CUP_optic_SB_11_4x20_PM"}, // 0.01%
  2687. {9982.98429319366, "CUP_optic_AN_PAS_13c1"}, // 0.01%
  2688. {9984.29319371722, "CUP_optic_ELCAN_SpecterDR"}, // 0.01%
  2689. {9985.60209424078, "CUP_optic_ACOG"}, // 0.01%
  2690. {9986.91099476434, "CUP_optic_ElcanM145"}, // 0.01%
  2691. {9988.2198952879, "CUP_optic_LeupoldMk4_10x40_LRT_Woodland"}, // 0.01%
  2692. {9989.52879581146, "CUP_optic_LeupoldMk4_10x40_LRT_Desert"}, // 0.01%
  2693. {9990.83769633502, "CUP_optic_LeupoldMk4_CQ_T"}, // 0.01%
  2694. {9992.14659685858, "CUP_optic_LeupoldM3LR"}, // 0.01%
  2695. {9993.45549738214, "CUP_optic_LeupoldMk4"}, // 0.01%
  2696. {9994.7643979057, "CUP_optic_AN_PVS_10"}, // 0.01%
  2697. {9996.07329842926, "CUP_optic_AN_PVS_4"}, // 0.01%
  2698. {9997.38219895282, "CUP_optic_AN_PAS_13c2"}, // 0.01%
  2699. {9998.69109947638, "CUP_optic_Leupold_VX3"}, // 0.01%
  2700. {9999.99999999994, "CUP_optic_PSO_3"} // 0.01%
  2701. };
  2702. };
  2703. /**
  2704. Result of 100 rounds:
  2705. CUP_optic_CompM4
  2706. U_C_Poor_1
  2707. 6Rnd_GreenSignal_F
  2708. U_C_Poor_shorts_1
  2709. 30Rnd_45ACP_Mag_SMG_01
  2710. Exile_Item_PlasticBottleFreshWater
  2711. optic_Holosight_smg
  2712. H_Hat_grey
  2713. Exile_Item_BBQSandwich
  2714. FlareWhite_F
  2715. CUP_acc_ANPEQ_2
  2716. U_C_Poor_2
  2717. U_C_Journalist
  2718. U_C_Poloshirt_tricolour
  2719. Chemlight_blue
  2720. hgun_Rook40_F
  2721. CUP_arifle_XM8_Carbine_FG
  2722. Exile_Item_InstantCoffee
  2723. SMG_05_F
  2724. optic_Aco_smg
  2725. arifle_MXM_khk_F
  2726. 30Rnd_556x45_Stanag_Tracer_Red
  2727. U_C_Poloshirt_stripped
  2728. V_Rangemaster_belt
  2729. U_C_Poloshirt_salmon
  2730. SMG_05_F
  2731. SMG_05_F
  2732. arifle_MXC_Black_F
  2733. Exile_Item_Beer
  2734. H_Hat_grey
  2735. Exile_Weapon_TaurusGold
  2736. Chemlight_yellow
  2737. Exile_Item_MountainDupe
  2738. H_Hat_grey
  2739. CUP_arifle_MG36_camo
  2740. U_C_HunterBody_grn
  2741. Exile_Item_Raisins
  2742. CUP_optic_TrijiconRx01_black
  2743. arifle_MX_F
  2744. 30Rnd_45ACP_Mag_SMG_01_Tracer_Green
  2745. 30Rnd_556x45_Stanag
  2746. B_AssaultPack_rgr
  2747. CUP_hgun_Duty
  2748. Exile_Item_Foolbox
  2749. Exile_Item_PlasticBottleDirtyWater
  2750. hgun_ACPC2_F
  2751. Exile_Item_ChristmasTinner
  2752. H_Hat_grey
  2753. Exile_Item_PlasticBottleDirtyWater
  2754. V_Press_F
  2755. CUP_arifle_M16A2_GL
  2756. CUP_smg_EVO
  2757. Exile_Item_Raisins
  2758. Exile_Item_SausageGravy
  2759. Exile_Item_Raisins
  2760. Exile_Item_PlasticBottleFreshWater
  2761. 16Rnd_9x21_Mag
  2762. H_Cap_blk_Raven
  2763. B_Kitbag_mcamo
  2764. H_Cap_tan
  2765. CUP_smg_bizon
  2766. B_OutdoorPack_tan
  2767. U_C_Poloshirt_blue
  2768. Exile_Item_OilCanister
  2769. Chemlight_blue
  2770. B_OutdoorPack_blu
  2771. U_C_Scientist
  2772. H_Cap_blk_Raven
  2773. CUP_smg_MP5A5
  2774. Exile_Item_Shovel
  2775. V_Rangemaster_belt
  2776. CUP_optic_Kobra
  2777. U_C_Poor_1
  2778. SMG_02_F
  2779. optic_Holosight
  2780. Chemlight_blue
  2781. CUP_arifle_M16A4_Base
  2782. H_Cap_grn
  2783. 30Rnd_45ACP_Mag_SMG_01
  2784. Exile_Item_ZipTie
  2785. Exile_Item_ZipTie
  2786. arifle_Katiba_F
  2787. CUP_acc_ANPEQ_2_desert
  2788. V_Press_F
  2789. H_StrawHat
  2790. Exile_Item_SeedAstics
  2791. CUP_muzzle_snds_MicroUzi
  2792. V_Press_F
  2793. Exile_Item_PowerDrink
  2794. Exile_Item_Shovel
  2795. U_C_Poloshirt_blue
  2796. CUP_smg_EVO
  2797. Chemlight_blue
  2798. U_C_HunterBody_grn
  2799. CUP_smg_bizon
  2800. Exile_Item_PlasticBottleDirtyWater
  2801. Exile_Item_InstantCoffee
  2802. Exile_Item_EnergyDrink
  2803. 6Rnd_45ACP_Cylinder
  2804. muzzle_snds_L
  2805. */
  2806. class CivillianUpperClass
  2807. {
  2808. count
  2809. half
  2810. halfIndex
  2811. sum
  2812. items[]
  2813. {
  2814. {344.036697247706, "Exile_Item_PlasticBottleDirtyWater"}, // 3.44%
  2815. {573.394495412844, "Exile_Item_MountainDupe"}, // 2.29%
  2816. {768.348623853211, "Exile_Item_EnergyDrink"}, // 1.95%
  2817. {951.834862385321, "Exile_Item_ZipTie"}, // 1.83%
  2818. {1112.38532110092, "Exile_Item_Beer"}, // 1.61%
  2819. {1250, "Exile_Item_PlasticBottleFreshWater"}, // 1.38%
  2820. {1364.67889908257, "FlareWhite_F"}, // 1.15%
  2821. {1479.35779816514, "30Rnd_45ACP_Mag_SMG_01_Tracer_Green"}, // 1.15%
  2822. {1594.03669724771, "30Rnd_45ACP_Mag_SMG_01"}, // 1.15%
  2823. {1708.71559633027, "V_Rangemaster_belt"}, // 1.15%
  2824. {1823.39449541284, "Chemlight_blue"}, // 1.15%
  2825. {1938.07339449541, "Chemlight_green"}, // 1.15%
  2826. {2052.75229357798, "Chemlight_red"}, // 1.15%
  2827. {2167.43119266055, "Chemlight_yellow"}, // 1.15%
  2828. {2282.11009174312, "FlareGreen_F"}, // 1.15%
  2829. {2396.78899082569, "FlareRed_F"}, // 1.15%
  2830. {2511.46788990826, "FlareYellow_F"}, // 1.15%
  2831. {2614.86689727779, "Exile_Item_InstantCoffee"}, // 1.03%
  2832. {2699.46608512558, "Exile_Item_Raisins"}, // 0.85%
  2833. {2784.06527297338, "Exile_Item_Moobar"}, // 0.85%
  2834. {2866.63408031283, "muzzle_snds_acp"}, // 0.83%
  2835. {2949.20288765228, "muzzle_snds_L"}, // 0.83%
  2836. {3030.95418204777, "U_Rangemaster"}, // 0.82%
  2837. {3112.70547644327, "U_C_Scientist"}, // 0.82%
  2838. {3194.45677083876, "U_C_Journalist"}, // 0.82%
  2839. {3276.20806523426, "U_C_HunterBody_grn"}, // 0.82%
  2840. {3357.95935962975, "U_C_Poor_1"}, // 0.82%
  2841. {3439.71065402525, "U_C_Poor_shorts_1"}, // 0.82%
  2842. {3521.46194842074, "U_C_Poor_2"}, // 0.82%
  2843. {3601.73717777854, "Exile_Item_PowerDrink"}, // 0.80%
  2844. {3678.18977716692, "CUP_sgun_M1014"}, // 0.76%
  2845. {3754.6423765553, "CUP_sgun_Saiga12K"}, // 0.76%
  2846. {3831.09497594368, "CUP_sgun_AA12"}, // 0.76%
  2847. {3906.29425403061, "Exile_Item_SeedAstics"}, // 0.75%
  2848. {3978.27731683936, "SMG_01_F"}, // 0.72%
  2849. {4048.14323074197, "SMG_02_F"}, // 0.70%
  2850. {4118.00914464458, "hgun_PDW2000_F"}, // 0.70%
  2851. {4187.36694280972, "hgun_P07_F"}, // 0.69%
  2852. {4253.42198868128, "hgun_ACPC2_F"}, // 0.66%
  2853. {4319.47703455284, "hgun_Rook40_F"}, // 0.66%
  2854. {4385.2764028789, "Exile_Item_Dogfood"}, // 0.66%
  2855. {4451.07577120497, "Exile_Item_Noodles"}, // 0.66%
  2856. {4516.87513953103, "Exile_Item_Cheathas"}, // 0.66%
  2857. {4582.67450785709, "Exile_Item_BBQSandwich"}, // 0.66%
  2858. {4648.47387618316, "Exile_Item_BeefParts"}, // 0.66%
  2859. {4714.27324450922, "Exile_Item_ChristmasTinner"}, // 0.66%
  2860. {4780.07261283528, "Exile_Item_CatFood"}, // 0.66%
  2861. {4845.87198116135, "Exile_Item_Surstromming"}, // 0.66%
  2862. {4911.67134948741, "Exile_Item_SausageGravy"}, // 0.66%
  2863. {4975.89153297365, "30Rnd_9x21_Mag"}, // 0.64%
  2864. {5040.11171645989, "9Rnd_45ACP_Mag"}, // 0.64%
  2865. {5104.33189994613, "11Rnd_45ACP_Mag"}, // 0.64%
  2866. {5167.91624003151, "U_C_Poloshirt_salmon"}, // 0.64%
  2867. {5231.5005801169, "U_C_Poloshirt_blue"}, // 0.64%
  2868. {5295.08492020228, "U_C_Poloshirt_burgundy"}, // 0.64%
  2869. {5358.66926028767, "U_C_Poloshirt_stripped"}, // 0.64%
  2870. {5422.25360037305, "U_C_Poloshirt_tricolour"}, // 0.64%
  2871. {5485.76806755724, "SMG_05_F"}, // 0.64%
  2872. {5543.10751709853, "V_Press_F"}, // 0.57%
  2873. {5600.44696663981, "CUP_smg_MP5A5"}, // 0.57%
  2874. {5657.7864161811, "V_TacVest_blk_POLICE"}, // 0.57%
  2875. {5715.12586572238, "CUP_smg_EVO"}, // 0.57%
  2876. {5772.46531526366, "CUP_smg_bizon"}, // 0.57%
  2877. {5829.80476480495, "CUP_smg_MP5SD6"}, // 0.57%
  2878. {5886.20422337015, "Exile_Item_GloriousKnakworst"}, // 0.56%
  2879. {5941.25009492978, "H_Cap_press"}, // 0.55%
  2880. {5996.29596648941, "H_Hat_brown"}, // 0.55%
  2881. {6051.34183804905, "H_Cap_red"}, // 0.55%
  2882. {6106.38770960868, "H_Cap_tan"}, // 0.55%
  2883. {6161.43358116831, "H_Hat_blue"}, // 0.55%
  2884. {6216.47945272795, "H_Hat_grey"}, // 0.55%
  2885. {6271.52532428758, "H_Hat_checker"}, // 0.55%
  2886. {6326.57119584721, "H_StrawHat"}, // 0.55%
  2887. {6381.61706740685, "H_StrawHat_dark"}, // 0.55%
  2888. {6436.66293896648, "H_Hat_tan"}, // 0.55%
  2889. {6488.03908575547, "6Rnd_45ACP_Cylinder"}, // 0.51%
  2890. {6538.4978013518, "B_OutdoorPack_blk"}, // 0.50%
  2891. {6585.49735015613, "Exile_Item_CanOpener"}, // 0.47%
  2892. {6632.49689896046, "Exile_Item_Matches"}, // 0.47%
  2893. {6678.36845859349, "optic_ACO_grn"}, // 0.46%
  2894. {6724.24001822652, "optic_ACO_grn_smg"}, // 0.46%
  2895. {6770.11157785954, "optic_Aco_smg"}, // 0.46%
  2896. {6815.98313749257, "H_Bandanna_surfer"}, // 0.46%
  2897. {6861.8546971256, "H_Beret_blk_POLICE"}, // 0.46%
  2898. {6907.72625675863, "optic_Holosight_smg"}, // 0.46%
  2899. {6953.59781639166, "H_Cap_blk_Raven"}, // 0.46%
  2900. {6999.46937602468, "H_Cap_blu"}, // 0.46%
  2901. {7045.34093565771, "H_Cap_grn"}, // 0.46%
  2902. {7091.21249529074, "H_Cap_headphones"}, // 0.46%
  2903. {7137.08405492377, "H_Cap_oli"}, // 0.46%
  2904. {7182.95561455679, "optic_Aco"}, // 0.46%
  2905. {7228.82717418982, "H_Cap_blk"}, // 0.46%
  2906. {7274.24001822652, "B_OutdoorPack_blu"}, // 0.45%
  2907. {7319.65286226322, "B_OutdoorPack_tan"}, // 0.45%
  2908. {7362.58864207973, "hgun_Pistol_Signal_F"}, // 0.43%
  2909. {7405.52442189624, "hgun_Pistol_heavy_02_F"}, // 0.43%
  2910. {7448.46020171276, "hgun_Pistol_heavy_01_F"}, // 0.43%
  2911. {7491.39598152927, "hgun_Pistol_01_F"}, // 0.43%
  2912. {7531.76295400634, "B_HuntingBackpack"}, // 0.40%
  2913. {7571.39598152927, "hgun_P07_khk_F"}, // 0.40%
  2914. {7607.61037071324, "30Rnd_556x45_Stanag"}, // 0.36%
  2915. {7643.82475989721, "30Rnd_65x39_caseless_green"}, // 0.36%
  2916. {7679.47623111459, "ItemRadio"}, // 0.36%
  2917. {7715.12770233197, "ItemWatch"}, // 0.36%
  2918. {7750.4488032494, "B_AssaultPack_dgtl"}, // 0.35%
  2919. {7785.76990416683, "B_AssaultPack_rgr"}, // 0.35%
  2920. {7821.09100508426, "B_AssaultPack_blk"}, // 0.35%
  2921. {7856.41210600169, "B_AssaultPack_cbr"}, // 0.35%
  2922. {7891.73320691912, "B_AssaultPack_mcamo"}, // 0.35%
  2923. {7927.05430783655, "B_AssaultPack_khk"}, // 0.35%
  2924. {7962.37540875398, "B_AssaultPack_sgg"}, // 0.35%
  2925. {7994.4855004971, "optic_MRD"}, // 0.32%
  2926. {8026.59559224022, "optic_Yorris"}, // 0.32%
  2927. {8058.70568398334, "16Rnd_9x21_Mag"}, // 0.32%
  2928. {8086.90541326594, "Exile_Item_CookingPot"}, // 0.28%
  2929. {8115.10514254854, "Exile_Item_EMRE"}, // 0.28%
  2930. {8141.66236128345, "20Rnd_556x45_UW_mag"}, // 0.27%
  2931. {8166.89171908162, "B_Kitbag_sgg"}, // 0.25%
  2932. {8192.12107687978, "B_Kitbag_cbr"}, // 0.25%
  2933. {8217.35043467795, "B_Kitbag_mcamo"}, // 0.25%
  2934. {8241.1180821562, "Binocular"}, // 0.24%
  2935. {8264.88572963445, "Exile_Item_Foolbox"}, // 0.24%
  2936. {8288.65337711271, "Exile_Item_CordlessScrewdriver"}, // 0.24%
  2937. {8312.42102459096, "Exile_Item_FireExtinguisher"}, // 0.24%
  2938. {8336.18867206921, "Exile_Item_Hammer"}, // 0.24%
  2939. {8359.95631954746, "Exile_Item_OilCanister"}, // 0.24%
  2940. {8383.72396702572, "Exile_Item_Screwdriver"}, // 0.24%
  2941. {8407.49161450397, "Exile_Item_Wrench"}, // 0.24%
  2942. {8431.25926198222, "Exile_Item_SleepingMat"}, // 0.24%
  2943. {8455.02690946048, "Exile_Item_MobilePhone"}, // 0.24%
  2944. {8478.79455693873, "NVGoggles_OPFOR"}, // 0.24%
  2945. {8502.56220441698, "NVGoggles_INDEP"}, // 0.24%
  2946. {8526.32985189523, "Laserdesignator_02"}, // 0.24%
  2947. {8550.09749937349, "Laserdesignator_03"}, // 0.24%
  2948. {8573.86514685174, "Exile_Item_Shovel"}, // 0.24%
  2949. {8597.63279432999, "ItemGPS"}, // 0.24%
  2950. {8620.10985855018, "6Rnd_RedSignal_F"}, // 0.22%
  2951. {8642.58692277036, "6Rnd_GreenSignal_F"}, // 0.22%
  2952. {8664.31555628074, "30Rnd_65x39_caseless_green_mag_Tracer"}, // 0.22%
  2953. {8686.04418979112, "30Rnd_65x39_caseless_mag"}, // 0.22%
  2954. {8707.77282330151, "30Rnd_556x45_Stanag_Tracer_Red"}, // 0.22%
  2955. {8729.50145681189, "30Rnd_556x45_Stanag_Tracer_Green"}, // 0.22%
  2956. {8751.23009032227, "30Rnd_556x45_Stanag_Tracer_Yellow"}, // 0.22%
  2957. {8772.95872383265, "30Rnd_65x39_caseless_mag_Tracer"}, // 0.22%
  2958. {8792.07187367975, "CUP_hgun_Compact"}, // 0.19%
  2959. {8811.18502352684, "CUP_hgun_Colt1911"}, // 0.19%
  2960. {8830.29817337394, "CUP_hgun_Makarov"}, // 0.19%
  2961. {8849.41132322103, "CUP_hgun_MicroUzi"}, // 0.19%
  2962. {8868.52447306813, "CUP_hgun_TaurusTracker455"}, // 0.19%
  2963. {8887.63762291522, "CUP_hgun_TaurusTracker455_gold"}, // 0.19%
  2964. {8906.75077276232, "CUP_hgun_M9"}, // 0.19%
  2965. {8925.86392260941, "CUP_hgun_SA61"}, // 0.19%
  2966. {8944.97707245651, "CUP_hgun_Phantom"}, // 0.19%
  2967. {8964.0902223036, "CUP_hgun_PB6P9"}, // 0.19%
  2968. {8983.2033721507, "CUP_hgun_Glock17"}, // 0.19%
  2969. {9002.31652199779, "CUP_hgun_Duty"}, // 0.19%
  2970. {9020.15546185508, "acc_flashlight"}, // 0.18%
  2971. {9032.89756175314, "muzzle_snds_65_TI_ghex_F"}, // 0.13%
  2972. {9045.63966165121, "muzzle_snds_65_TI_blk_F"}, // 0.13%
  2973. {9058.38176154927, "optic_DMS"}, // 0.13%
  2974. {9071.12386144733, "muzzle_snds_B_snd_F"}, // 0.13%
  2975. {9083.8659613454, "optic_MRCO"}, // 0.13%
  2976. {9096.60806124346, "acc_pointer_IR"}, // 0.13%
  2977. {9109.35016114152, "muzzle_snds_H_MG_blk_F"}, // 0.13%
  2978. {9122.09226103959, "muzzle_snds_H_MG_khk_F"}, // 0.13%
  2979. {9134.83436093765, "muzzle_snds_58_wdm_F"}, // 0.13%
  2980. {9147.57646083571, "optic_Arco"}, // 0.13%
  2981. {9160.31856073378, "optic_Holosight"}, // 0.13%
  2982. {9173.06066063184, "muzzle_snds_B_khk_F"}, // 0.13%
  2983. {9185.8027605299, "muzzle_snds_H"}, // 0.13%
  2984. {9198.54486042797, "muzzle_snds_M"}, // 0.13%
  2985. {9211.28696032603, "muzzle_snds_65_TI_hex_F"}, // 0.13%
  2986. {9224.02906022409, "optic_Hamr"}, // 0.13%
  2987. {9234.89909805182, "arifle_Katiba_F"}, // 0.11%
  2988. {9243.98257520688, "U_NikosAgedBody"}, // 0.09%
  2989. {9253.06605236193, "U_NikosBody"}, // 0.09%
  2990. {9262.14952951699, "U_OrestesBody"}, // 0.09%
  2991. {9270.84555977917, "arifle_MX_F"}, // 0.09%
  2992. {9279.54159004136, "arifle_TRG21_F"}, // 0.09%
  2993. {9288.23762030354, "arifle_Katiba_GL_F"}, // 0.09%
  2994. {9296.93365056573, "arifle_TRG20_F"}, // 0.09%
  2995. {9305.62968082791, "arifle_MXC_F"}, // 0.09%
  2996. {9313.96996439755, "CUP_acc_Glock17_Flashlight"}, // 0.08%
  2997. {9322.31024796719, "CUP_acc_Flashlight"}, // 0.08%
  2998. {9330.65053153684, "CUP_acc_XM8_light_module"}, // 0.08%
  2999. {9338.99081510648, "CUP_acc_Flashlight_desert"}, // 0.08%
  3000. {9347.33109867612, "CUP_acc_ANPEQ_2_desert"}, // 0.08%
  3001. {9355.67138224576, "CUP_acc_ANPEQ_2_grey"}, // 0.08%
  3002. {9364.0116658154, "CUP_acc_CZ_M3X"}, // 0.08%
  3003. {9372.35194938504, "CUP_acc_Flashlight_wdl"}, // 0.08%
  3004. {9380.69223295469, "CUP_acc_ANPEQ_15"}, // 0.08%
  3005. {9389.03251652433, "CUP_acc_ANPEQ_2_camo"}, // 0.08%
  3006. {9397.37280009397, "CUP_acc_ANPEQ_2"}, // 0.08%
  3007. {9404.98182657338, "arifle_Mk20C_F"}, // 0.08%
  3008. {9412.59085305279, "arifle_Mk20_F"}, // 0.08%
  3009. {9419.11287574943, "arifle_MXM_F"}, // 0.07%
  3010. {9425.63489844607, "arifle_SDAR_F"}, // 0.07%
  3011. {9432.0059483951, "optic_NVS"}, // 0.06%
  3012. {9437.10278835433, "CUP_muzzle_mfsup_SCAR_H"}, // 0.05%
  3013. {9442.19962831356, "CUP_muzzle_snds_AWM"}, // 0.05%
  3014. {9447.29646827278, "CUP_muzzle_snds_MicroUzi"}, // 0.05%
  3015. {9452.39330823201, "CUP_muzzle_snds_M9"}, // 0.05%
  3016. {9457.49014819123, "CUP_muzzle_snds_M14"}, // 0.05%
  3017. {9462.58698815046, "CUP_muzzle_snds_M110"}, // 0.05%
  3018. {9467.68382810968, "CUP_muzzle_Bizon"}, // 0.05%
  3019. {9472.78066806891, "CUP_muzzle_PB6P9"}, // 0.05%
  3020. {9477.87750802814, "CUP_muzzle_mfsup_SCAR_L"}, // 0.05%
  3021. {9482.97434798736, "CUP_muzzle_snds_SCAR_L"}, // 0.05%
  3022. {9488.07118794659, "CUP_muzzle_snds_M16"}, // 0.05%
  3023. {9493.16802790581, "CUP_muzzle_snds_M16_camo"}, // 0.05%
  3024. {9498.26486786504, "CUP_muzzle_snds_L85"}, // 0.05%
  3025. {9503.36170782426, "CUP_muzzle_snds_G36_desert"}, // 0.05%
  3026. {9508.45854778349, "CUP_muzzle_snds_G36_black"}, // 0.05%
  3027. {9513.55538774272, "CUP_muzzle_snds_XM8"}, // 0.05%
  3028. {9518.65222770194, "CUP_muzzle_snds_SCAR_H"}, // 0.05%
  3029. {9523.74906766117, "CUP_muzzle_PBS4"}, // 0.05%
  3030. {9528.09708279226, "arifle_Mk20_GL_F"}, // 0.04%
  3031. {9532.44509792335, "arifle_MX_GL_F"}, // 0.04%
  3032. {9536.79311305444, "arifle_TRG21_GL_F"}, // 0.04%
  3033. {9540.05412440276, "Exile_Weapon_TaurusGold"}, // 0.03%
  3034. {9543.31513575108, "Exile_Weapon_AK107_GL"}, // 0.03%
  3035. {9546.5761470994, "arifle_MXM_khk_F"}, // 0.03%
  3036. {9549.83715844772, "arifle_SPAR_01_blk_F"}, // 0.03%
  3037. {9553.09816979604, "arifle_SPAR_02_snd_F"}, // 0.03%
  3038. {9556.35918114436, "arifle_SPAR_01_snd_F"}, // 0.03%
  3039. {9559.62019249268, "arifle_SPAR_02_khk_F"}, // 0.03%
  3040. {9562.88120384099, "arifle_SPAR_02_blk_F"}, // 0.03%
  3041. {9566.14221518931, "arifle_SPAR_01_GL_snd_F"}, // 0.03%
  3042. {9569.40322653763, "arifle_SPAR_01_GL_khk_F"}, // 0.03%
  3043. {9572.66423788595, "Exile_Weapon_M1014"}, // 0.03%
  3044. {9575.92524923427, "Exile_Weapon_CZ550"}, // 0.03%
  3045. {9579.18626058259, "Exile_Weapon_SVD"}, // 0.03%
  3046. {9582.44727193091, "Exile_Weapon_SVDCamo"}, // 0.03%
  3047. {9585.70828327923, "Exile_Weapon_VSSVintorez"}, // 0.03%
  3048. {9588.96929462754, "Exile_Weapon_Taurus"}, // 0.03%
  3049. {9592.23030597586, "Exile_Weapon_AK74"}, // 0.03%
  3050. {9595.49131732418, "arifle_SPAR_01_GL_blk_F"}, // 0.03%
  3051. {9598.7523286725, "arifle_MXM_Black_F"}, // 0.03%
  3052. {9602.01334002082, "arifle_MXC_khk_F"}, // 0.03%
  3053. {9605.27435136914, "arifle_MX_SW_khk_F"}, // 0.03%
  3054. {9608.53536271746, "arifle_SPAR_01_khk_F"}, // 0.03%
  3055. {9611.79637406578, "arifle_SPAR_03_blk_F"}, // 0.03%
  3056. {9615.05738541409, "arifle_SPAR_03_snd_F"}, // 0.03%
  3057. {9618.31839676241, "arifle_SPAR_03_khk_F"}, // 0.03%
  3058. {9621.57940811073, "arifle_MXC_Black_F"}, // 0.03%
  3059. {9624.84041945905, "arifle_MX_Black_F"}, // 0.03%
  3060. {9628.10143080737, "arifle_MX_GL_Black_F"}, // 0.03%
  3061. {9631.36244215569, "arifle_MX_khk_F"}, // 0.03%
  3062. {9634.62345350401, "arifle_AK12_GL_F"}, // 0.03%
  3063. {9637.88446485233, "arifle_AKM_F"}, // 0.03%
  3064. {9641.14547620065, "arifle_AKM_FL_F"}, // 0.03%
  3065. {9644.40648754896, "arifle_AK12_F"}, // 0.03%
  3066. {9647.66749889728, "arifle_ARX_blk_F"}, // 0.03%
  3067. {9650.9285102456, "arifle_ARX_ghex_F"}, // 0.03%
  3068. {9654.18952159392, "arifle_ARX_hex_F"}, // 0.03%
  3069. {9657.45053294224, "arifle_CTAR_blk_F"}, // 0.03%
  3070. {9660.71154429056, "arifle_CTAR_GL_blk_F"}, // 0.03%
  3071. {9663.97255563888, "arifle_CTARS_blk_F"}, // 0.03%
  3072. {9667.2335669872, "arifle_MX_GL_khk_F"}, // 0.03%
  3073. {9670.49457833551, "arifle_AKS_F"}, // 0.03%
  3074. {9673.59400804045, "CUP_arifle_Mk16_STD_EGLM"}, // 0.03%
  3075. {9676.69343774538, "CUP_arifle_Mk16_STD_SFG"}, // 0.03%
  3076. {9679.79286745032, "CUP_arifle_Mk16_STD_FG"}, // 0.03%
  3077. {9682.89229715525, "CUP_arifle_Mk16_CQC_FG"}, // 0.03%
  3078. {9685.99172686019, "CUP_arifle_Mk16_CQC_EGLM"}, // 0.03%
  3079. {9689.09115656512, "CUP_arifle_Mk16_CQC_SFG"}, // 0.03%
  3080. {9692.19058627006, "CUP_arifle_Mk16_SV"}, // 0.03%
  3081. {9695.29001597499, "CUP_arifle_Mk16_STD"}, // 0.03%
  3082. {9698.38944567993, "CUP_arifle_Mk17_CQC"}, // 0.03%
  3083. {9701.48887538486, "CUP_arifle_M16A4_Base"}, // 0.03%
  3084. {9704.5883050898, "CUP_arifle_Mk17_CQC_SFG"}, // 0.03%
  3085. {9707.68773479473, "CUP_arifle_Sa58RIS1_des"}, // 0.03%
  3086. {9710.78716449966, "CUP_arifle_Sa58RIS1"}, // 0.03%
  3087. {9713.8865942046, "CUP_arifle_Sa58V_camo"}, // 0.03%
  3088. {9716.98602390953, "CUP_arifle_Sa58P_des"}, // 0.03%
  3089. {9720.08545361447, "CUP_arifle_AK107_GL"}, // 0.03%
  3090. {9723.1848833194, "CUP_arifle_FNFAL_railed"}, // 0.03%
  3091. {9726.28431302434, "CUP_arifle_L86A2"}, // 0.03%
  3092. {9729.38374272927, "CUP_arifle_L85A2_GL"}, // 0.03%
  3093. {9732.48317243421, "CUP_arifle_L85A2"}, // 0.03%
  3094. {9735.58260213914, "CUP_arifle_M4A1_desert"}, // 0.03%
  3095. {9738.68203184408, "CUP_arifle_Mk17_CQC_FG"}, // 0.03%
  3096. {9741.78146154901, "CUP_arifle_M4A1_black"}, // 0.03%
  3097. {9744.88089125395, "CUP_arifle_M4A1_BUIS_camo_GL"}, // 0.03%
  3098. {9747.98032095888, "CUP_arifle_M4A1_BUIS_GL"}, // 0.03%
  3099. {9751.07975066382, "CUP_arifle_XM8_Railed"}, // 0.03%
  3100. {9754.17918036875, "CUP_arifle_XM8_Compact_Rail"}, // 0.03%
  3101. {9757.27861007368, "CUP_arifle_Mk20"}, // 0.03%
  3102. {9760.37803977862, "CUP_arifle_Mk17_STD_EGLM"}, // 0.03%
  3103. {9763.47746948355, "CUP_arifle_Mk17_STD_SFG"}, // 0.03%
  3104. {9766.57689918849, "CUP_arifle_Mk17_STD_FG"}, // 0.03%
  3105. {9769.67632889342, "CUP_arifle_Mk17_STD"}, // 0.03%
  3106. {9772.77575859836, "CUP_arifle_Mk17_CQC_EGLM"}, // 0.03%
  3107. {9775.87518830329, "CUP_arifle_M4A1_BUIS_desert_GL"}, // 0.03%
  3108. {9778.97461800823, "CUP_arifle_XM8_Carbine_GL"}, // 0.03%
  3109. {9782.07404771316, "CUP_arifle_Sa58RIS2_camo"}, // 0.03%
  3110. {9785.1734774181, "CUP_arifle_CZ805_GL"}, // 0.03%
  3111. {9788.27290712303, "CUP_arifle_G36C"}, // 0.03%
  3112. {9791.37233682797, "CUP_arifle_G36C_camo"}, // 0.03%
  3113. {9794.4717665329, "CUP_arifle_MG36"}, // 0.03%
  3114. {9797.57119623784, "CUP_arifle_MG36_camo"}, // 0.03%
  3115. {9800.67062594277, "CUP_arifle_AK74"}, // 0.03%
  3116. {9803.7700556477, "CUP_arifle_AK107"}, // 0.03%
  3117. {9806.86948535264, "CUP_arifle_AKS74"}, // 0.03%
  3118. {9809.96891505757, "CUP_arifle_CZ805_A1"}, // 0.03%
  3119. {9813.06834476251, "CUP_arifle_AKS74U"}, // 0.03%
  3120. {9816.16777446744, "CUP_arifle_AKM"}, // 0.03%
  3121. {9819.26720417238, "CUP_arifle_AKS"}, // 0.03%
  3122. {9822.36663387731, "CUP_arifle_AKS_Gold"}, // 0.03%
  3123. {9825.46606358225, "CUP_arifle_RPK74"}, // 0.03%
  3124. {9828.56549328718, "CUP_arifle_AK74_GL_kobra"}, // 0.03%
  3125. {9831.66492299212, "CUP_arifle_CZ805_A2"}, // 0.03%
  3126. {9834.76435269705, "CUP_arifle_Sa58RIS2"}, // 0.03%
  3127. {9837.86378240199, "CUP_arifle_AK74_GL"}, // 0.03%
  3128. {9840.96321210692, "CUP_arifle_G36K"}, // 0.03%
  3129. {9844.06264181186, "CUP_arifle_G36K_camo"}, // 0.03%
  3130. {9847.16207151679, "CUP_arifle_G36A"}, // 0.03%
  3131. {9850.26150122172, "CUP_arifle_CZ805_B_GL"}, // 0.03%
  3132. {9853.36093092666, "CUP_arifle_CZ805_B"}, // 0.03%
  3133. {9856.46036063159, "CUP_arifle_XM8_Carbine"}, // 0.03%
  3134. {9859.55979033653, "CUP_arifle_XM8_Carbine_FG"}, // 0.03%
  3135. {9862.65922004146, "CUP_arifle_XM8_Compact"}, // 0.03%
  3136. {9865.7586497464, "CUP_arifle_xm8_SAW"}, // 0.03%
  3137. {9868.85807945133, "CUP_arifle_G36A_camo"}, // 0.03%
  3138. {9871.95750915627, "CUP_arifle_Mk16_CQC"}, // 0.03%
  3139. {9875.0569388612, "CUP_arifle_xm8_sharpshooter"}, // 0.03%
  3140. {9878.15636856614, "CUP_arifle_Sa58V"}, // 0.03%
  3141. {9881.25579827107, "CUP_arifle_M16A2"}, // 0.03%
  3142. {9884.35522797601, "CUP_arifle_M16A2_GL"}, // 0.03%
  3143. {9887.45465768094, "CUP_arifle_M16A4_GL"}, // 0.03%
  3144. {9890.55408738588, "CUP_arifle_M4A1"}, // 0.03%
  3145. {9893.65351709081, "CUP_arifle_M4A1_camo"}, // 0.03%
  3146. {9896.75294679574, "CUP_arifle_FNFAL"}, // 0.03%
  3147. {9899.85237650068, "CUP_arifle_Sa58P"}, // 0.03%
  3148. {9902.2291412485, "Exile_Item_Knife"}, // 0.02%
  3149. {9904.60590599633, "Exile_Item_ThermalScannerPro"}, // 0.02%
  3150. {9906.98267074416, "Exile_Headgear_GasMask"}, // 0.02%
  3151. {9909.27624872581, "CUP_optic_CWS"}, // 0.02%
  3152. {9911.56982670746, "CUP_optic_TrijiconRx01_black"}, // 0.02%
  3153. {9913.86340468911, "CUP_optic_CompM2_Woodland"}, // 0.02%
  3154. {9916.15698267076, "CUP_optic_CompM2_Woodland2"}, // 0.02%
  3155. {9918.45056065241, "CUP_optic_RCO_desert"}, // 0.02%
  3156. {9920.74413863406, "CUP_optic_RCO"}, // 0.02%
  3157. {9923.03771661571, "CUP_optic_SUSAT"}, // 0.02%
  3158. {9925.33129459736, "CUP_optic_CompM4"}, // 0.02%
  3159. {9927.62487257901, "CUP_optic_Eotech533Grey"}, // 0.02%
  3160. {9929.91845056066, "CUP_optic_CompM2_Black"}, // 0.02%
  3161. {9932.21202854231, "CUP_optic_Eotech533"}, // 0.02%
  3162. {9934.50560652396, "CUP_optic_HoloWdl"}, // 0.02%
  3163. {9936.79918450561, "CUP_optic_HoloBlack"}, // 0.02%
  3164. {9939.09276248727, "CUP_optic_PechenegScope"}, // 0.02%
  3165. {9941.38634046892, "CUP_optic_NSPU"}, // 0.02%
  3166. {9943.67991845057, "CUP_optic_GOSHAWK"}, // 0.02%
  3167. {9945.97349643222, "CUP_optic_Kobra"}, // 0.02%
  3168. {9948.26707441387, "CUP_optic_PSO_1"}, // 0.02%
  3169. {9950.56065239552, "CUP_optic_HoloDesert"}, // 0.02%
  3170. {9952.85423037717, "CUP_optic_TrijiconRx01_desert"}, // 0.02%
  3171. {9955.14780835882, "CUP_optic_CompM2_Desert"}, // 0.02%
  3172. {9957.44138634047, "CUP_optic_SB_3_12x50_PMII"}, // 0.02%
  3173. {9959.73496432212, "CUP_optic_MRad"}, // 0.02%
  3174. {9962.02854230377, "CUP_optic_ZDDot"}, // 0.02%
  3175. {9964.32212028542, "CUP_optic_SB_11_4x20_PM"}, // 0.02%
  3176. {9966.61569826707, "CUP_optic_AN_PAS_13c1"}, // 0.02%
  3177. {9968.90927624873, "CUP_optic_ELCAN_SpecterDR"}, // 0.02%
  3178. {9971.20285423038, "CUP_optic_ElcanM145"}, // 0.02%
  3179. {9973.49643221203, "CUP_optic_Leupold_VX3"}, // 0.02%
  3180. {9975.79001019368, "CUP_optic_ACOG"}, // 0.02%
  3181. {9978.08358817533, "CUP_optic_LeupoldMk4_10x40_LRT_Woodland"}, // 0.02%
  3182. {9980.37716615698, "CUP_optic_LeupoldMk4_MRT_tan"}, // 0.02%
  3183. {9982.67074413863, "CUP_optic_LeupoldMk4_CQ_T"}, // 0.02%
  3184. {9984.96432212028, "CUP_optic_LeupoldM3LR"}, // 0.02%
  3185. {9987.25790010193, "CUP_optic_LeupoldMk4"}, // 0.02%
  3186. {9989.55147808358, "CUP_optic_AN_PVS_10"}, // 0.02%
  3187. {9991.84505606523, "CUP_optic_AN_PVS_4"}, // 0.02%
  3188. {9994.13863404688, "CUP_optic_AN_PAS_13c2"}, // 0.02%
  3189. {9996.43221202853, "CUP_optic_LeupoldMk4_10x40_LRT_Desert"}, // 0.02%
  3190. {9998.72579001018, "CUP_optic_PSO_3"}, // 0.02%
  3191. {9999.99999999999, "optic_tws"} // 0.01%
  3192. };
  3193. };
  3194. /**
  3195. Result of 100 rounds:
  3196. U_C_Scientist
  3197. SMG_01_F
  3198. B_OutdoorPack_blu
  3199. SMG_01_F
  3200. Exile_Item_Beer
  3201. Exile_Item_EnergyDrink
  3202. Exile_Item_Matches
  3203. FlareWhite_F
  3204. Exile_Item_BeefParts
  3205. Exile_Item_Beer
  3206. B_Kitbag_sgg
  3207. SMG_02_F
  3208. Exile_Item_Moobar
  3209. 30Rnd_9x21_Mag
  3210. Exile_Item_PlasticBottleFreshWater
  3211. Exile_Item_Noodles
  3212. H_Cap_blu
  3213. Exile_Item_InstantCoffee
  3214. 11Rnd_45ACP_Mag
  3215. 6Rnd_45ACP_Cylinder
  3216. Exile_Item_JunkMetal
  3217. Exile_Melee_Axe
  3218. 9Rnd_45ACP_Mag
  3219. Exile_Item_ZipTie
  3220. Exile_Item_Surstromming
  3221. 11Rnd_45ACP_Mag
  3222. 11Rnd_45ACP_Mag
  3223. Exile_Item_CarWheel
  3224. Exile_Item_EnergyDrink
  3225. FlareWhite_F
  3226. Exile_Item_JunkMetal
  3227. 30Rnd_45ACP_Mag_SMG_01_Tracer_Green
  3228. Exile_Item_PlasticBottleDirtyWater
  3229. FlareWhite_F
  3230. Exile_Item_LightBulb
  3231. SMG_01_F
  3232. muzzle_snds_L
  3233. U_C_Poor_1
  3234. B_AssaultPack_blk
  3235. Exile_Item_Beer
  3236. hgun_Pistol_01_F
  3237. hgun_Pistol_heavy_01_F
  3238. Exile_Item_SleepingMat
  3239. SmokeShellRed
  3240. Exile_Item_PlasticBottleDirtyWater
  3241. Exile_Item_Noodles
  3242. Exile_Item_CatFood
  3243. FlareWhite_F
  3244. Exile_Item_PlasticBottleDirtyWater
  3245. 11Rnd_45ACP_Mag
  3246. H_Cap_oli
  3247. hgun_Rook40_F
  3248. muzzle_snds_L
  3249. Exile_Item_BBQSandwich
  3250. muzzle_snds_L
  3251. Exile_Item_EnergyDrink
  3252. SmokeShellOrange
  3253. Exile_Item_Matches
  3254. SmokeShellYellow
  3255. FlareYellow_F
  3256. hgun_Rook40_F
  3257. optic_Aco_smg
  3258. Exile_Item_Surstromming
  3259. ItemRadio
  3260. Exile_Item_ZipTie
  3261. optic_ACO_grn_smg
  3262. Exile_Item_Moobar
  3263. Exile_Item_Matches
  3264. hgun_P07_F
  3265. 6Rnd_GreenSignal_F
  3266. Exile_Item_ZipTie
  3267. Exile_Item_MetalBoard
  3268. SMG_01_F
  3269. Exile_Item_SeedAstics
  3270. Exile_Item_Wrench
  3271. Exile_Item_ZipTie
  3272. H_Hat_grey
  3273. optic_ACO_grn
  3274. Exile_Item_Beer
  3275. Exile_Item_MountainDupe
  3276. Exile_Item_MountainDupe
  3277. B_AssaultPack_khk
  3278. B_AssaultPack_rgr
  3279. 11Rnd_45ACP_Mag
  3280. Chemlight_yellow
  3281. Exile_Item_PowerDrink
  3282. V_TacVest_blk_POLICE
  3283. 11Rnd_45ACP_Mag
  3284. hgun_PDW2000_F
  3285. 6Rnd_GreenSignal_F
  3286. 9Rnd_45ACP_Mag
  3287. hgun_Rook40_F
  3288. Exile_Item_ZipTie
  3289. Exile_Item_Moobar
  3290. hgun_ACPC2_F
  3291. Exile_Item_PlasticBottleDirtyWater
  3292. Exile_Item_InstantCoffee
  3293. Exile_Item_MountainDupe
  3294. Chemlight_green
  3295. muzzle_snds_acp
  3296. */
  3297. class Shop
  3298. {
  3299. count
  3300. half
  3301. halfIndex
  3302. sum
  3303. items[]
  3304. {
  3305. {585.9375, "Exile_Item_PlasticBottleDirtyWater"}, // 5.86%
  3306. {976.5625, "Exile_Item_MountainDupe"}, // 3.91%
  3307. {1308.59375, "Exile_Item_EnergyDrink"}, // 3.32%
  3308. {1582.03125, "Exile_Item_Beer"}, // 2.73%
  3309. {1816.40625, "Exile_Item_ZipTie"}, // 2.34%
  3310. {2050.78125, "Exile_Item_PlasticBottleFreshWater"}, // 2.34%
  3311. {2246.09375, "30Rnd_45ACP_Mag_SMG_01_Tracer_Green"}, // 1.95%
  3312. {2441.40625, "30Rnd_45ACP_Mag_SMG_01"}, // 1.95%
  3313. {2617.50768442623, "Exile_Item_InstantCoffee"}, // 1.76%
  3314. {2786.25768442623, "muzzle_snds_L"}, // 1.69%
  3315. {2955.00768442623, "muzzle_snds_acp"}, // 1.69%
  3316. {3099.09067622951, "Exile_Item_Raisins"}, // 1.44%
  3317. {3243.17366803279, "Exile_Item_Moobar"}, // 1.44%
  3318. {3386.20251418663, "SMG_01_F"}, // 1.43%
  3319. {3525.02462957125, "SMG_02_F"}, // 1.39%
  3320. {3663.84674495586, "hgun_PDW2000_F"}, // 1.39%
  3321. {3801.71439201469, "Exile_Item_Vishpirin"}, // 1.38%
  3322. {3938.43314201469, "Exile_Item_PowerDrink"}, // 1.37%
  3323. {4066.50691250649, "Exile_Item_SeedAstics"}, // 1.28%
  3324. {4192.70883558341, "SMG_05_F"}, // 1.26%
  3325. {4304.77338476374, "Exile_Item_Noodles"}, // 1.12%
  3326. {4416.83793394407, "Exile_Item_Cheathas"}, // 1.12%
  3327. {4528.9024831244, "Exile_Item_BeefParts"}, // 1.12%
  3328. {4640.96703230472, "Exile_Item_Dogfood"}, // 1.12%
  3329. {4753.03158148505, "Exile_Item_CatFood"}, // 1.12%
  3330. {4865.09613066538, "Exile_Item_BBQSandwich"}, // 1.12%
  3331. {4977.16067984571, "Exile_Item_ChristmasTinner"}, // 1.12%
  3332. {5089.22522902604, "Exile_Item_SausageGravy"}, // 1.12%
  3333. {5201.28977820636, "Exile_Item_Surstromming"}, // 1.12%
  3334. {5310.66477820636, "9Rnd_45ACP_Mag"}, // 1.09%
  3335. {5420.03977820636, "30Rnd_9x21_Mag"}, // 1.09%
  3336. {5529.41477820636, "11Rnd_45ACP_Mag"}, // 1.09%
  3337. {5634.41477820636, "hgun_P07_F"}, // 1.05%
  3338. {5734.41477820636, "hgun_Rook40_F"}, // 1.00%
  3339. {5834.41477820636, "hgun_ACPC2_F"}, // 1.00%
  3340. {5932.07102820636, "FlareRed_F"}, // 0.98%
  3341. {6029.72727820636, "Chemlight_blue"}, // 0.98%
  3342. {6127.38352820636, "FlareYellow_F"}, // 0.98%
  3343. {6225.03977820636, "FlareWhite_F"}, // 0.98%
  3344. {6322.69602820636, "Chemlight_yellow"}, // 0.98%
  3345. {6420.35227820636, "Chemlight_red"}, // 0.98%
  3346. {6518.00852820636, "Chemlight_green"}, // 0.98%
  3347. {6615.66477820636, "FlareGreen_F"}, // 0.98%
  3348. {6711.72010607522, "Exile_Item_GloriousKnakworst"}, // 0.96%
  3349. {6799.22010607522, "6Rnd_45ACP_Cylinder"}, // 0.88%
  3350. {6879.26621263259, "Exile_Item_CanOpener"}, // 0.80%
  3351. {6959.31231918997, "Exile_Item_Matches"}, // 0.80%
  3352. {7037.43731918997, "optic_Holosight_smg"}, // 0.78%
  3353. {7115.56231918997, "optic_ACO_grn"}, // 0.78%
  3354. {7193.68731918997, "optic_Aco"}, // 0.78%
  3355. {7271.81231918997, "optic_ACO_grn_smg"}, // 0.78%
  3356. {7349.93731918997, "optic_Aco_smg"}, // 0.78%
  3357. {7418.87114271938, "Exile_Item_Bandage"}, // 0.69%
  3358. {7484.49614271938, "optic_Yorris"}, // 0.66%
  3359. {7550.12114271938, "optic_MRD"}, // 0.66%
  3360. {7615.12114271938, "hgun_Pistol_01_F"}, // 0.65%
  3361. {7680.12114271938, "hgun_Pistol_Signal_F"}, // 0.65%
  3362. {7745.12114271938, "hgun_Pistol_heavy_02_F"}, // 0.65%
  3363. {7810.12114271938, "hgun_Pistol_heavy_01_F"}, // 0.65%
  3364. {7870.12114271938, "hgun_P07_khk_F"}, // 0.60%
  3365. {7924.80864271938, "16Rnd_9x21_Mag"}, // 0.55%
  3366. {7972.83630665381, "Exile_Item_CookingPot"}, // 0.48%
  3367. {8020.86397058824, "Exile_Item_EMRE"}, // 0.48%
  3368. {8067.73897058824, "SmokeShellOrange"}, // 0.47%
  3369. {8114.61397058824, "SmokeShellBlue"}, // 0.47%
  3370. {8158.36397058824, "SmokeShellPurple"}, // 0.44%
  3371. {8202.11397058824, "SmokeShellYellow"}, // 0.44%
  3372. {8245.86397058824, "SmokeShellGreen"}, // 0.44%
  3373. {8289.61397058824, "SmokeShellRed"}, // 0.44%
  3374. {8333.36397058824, "SmokeShell"}, // 0.44%
  3375. {8375.86720893021, "ItemRadio"}, // 0.43%
  3376. {8418.37044727217, "ItemWatch"}, // 0.43%
  3377. {8457.43294727217, "V_Rangemaster_belt"}, // 0.39%
  3378. {8496.49544727217, "B_OutdoorPack_blk"}, // 0.39%
  3379. {8534.77669727217, "6Rnd_RedSignal_F"}, // 0.38%
  3380. {8573.05794727217, "6Rnd_GreenSignal_F"}, // 0.38%
  3381. {8608.21419727217, "B_OutdoorPack_tan"}, // 0.35%
  3382. {8643.37044727217, "B_OutdoorPack_blu"}, // 0.35%
  3383. {8674.62044727217, "B_HuntingBackpack"}, // 0.31%
  3384. {8705.68219426013, "Exile_Melee_Axe"}, // 0.31%
  3385. {8734.01768648811, "ItemGPS"}, // 0.28%
  3386. {8762.35317871609, "Binocular"}, // 0.28%
  3387. {8790.68867094407, "Exile_Item_Foolbox"}, // 0.28%
  3388. {8819.02416317205, "Exile_Item_CordlessScrewdriver"}, // 0.28%
  3389. {8847.35965540003, "Exile_Item_FireExtinguisher"}, // 0.28%
  3390. {8875.695147628, "Exile_Item_OilCanister"}, // 0.28%
  3391. {8904.03063985598, "Exile_Item_Screwdriver"}, // 0.28%
  3392. {8932.36613208396, "Exile_Item_Shovel"}, // 0.28%
  3393. {8960.70162431194, "Exile_Item_Hammer"}, // 0.28%
  3394. {8989.03711653992, "Exile_Item_SleepingMat"}, // 0.28%
  3395. {9017.3726087679, "Exile_Item_MobilePhone"}, // 0.28%
  3396. {9045.70810099588, "NVGoggles_OPFOR"}, // 0.28%
  3397. {9074.04359322386, "NVGoggles_INDEP"}, // 0.28%
  3398. {9102.37908545184, "Laserdesignator_02"}, // 0.28%
  3399. {9130.71457767982, "Laserdesignator_03"}, // 0.28%
  3400. {9159.0500699078, "Exile_Item_Wrench"}, // 0.28%
  3401. {9186.62359931956, "Exile_Item_InstaDoc"}, // 0.28%
  3402. {9213.96734931956, "B_AssaultPack_sgg"}, // 0.27%
  3403. {9241.31109931956, "B_AssaultPack_khk"}, // 0.27%
  3404. {9268.65484931956, "B_AssaultPack_dgtl"}, // 0.27%
  3405. {9295.99859931956, "B_AssaultPack_blk"}, // 0.27%
  3406. {9323.34234931956, "B_AssaultPack_cbr"}, // 0.27%
  3407. {9350.68609931956, "B_AssaultPack_rgr"}, // 0.27%
  3408. {9378.02984931956, "B_AssaultPack_mcamo"}, // 0.27%
  3409. {9397.56109931956, "B_Kitbag_sgg"}, // 0.20%
  3410. {9417.09234931956, "B_Kitbag_mcamo"}, // 0.20%
  3411. {9436.62359931956, "B_Kitbag_cbr"}, // 0.20%
  3412. {9456.15484931956, "V_TacVest_blk_POLICE"}, // 0.20%
  3413. {9475.68609931956, "V_Press_F"}, // 0.20%
  3414. {9494.04076799426, "Exile_Item_Pliers"}, // 0.18%
  3415. {9512.39543666896, "Exile_Item_ExtensionCord"}, // 0.18%
  3416. {9530.75010534366, "Exile_Item_Handsaw"}, // 0.18%
  3417. {9546.28097883764, "Exile_Item_JunkMetal"}, // 0.16%
  3418. {9560.39995474125, "Exile_Item_CamoTentKit"}, // 0.14%
  3419. {9574.51893064487, "Exile_Item_MetalPole"}, // 0.14%
  3420. {9588.63790654848, "Exile_Item_MetalScrews"}, // 0.14%
  3421. {9602.7568824521, "Exile_Item_MetalWire"}, // 0.14%
  3422. {9616.87585835571, "Exile_Item_Sand"}, // 0.14%
  3423. {9630.99483425933, "Exile_Item_CarWheel"}, // 0.14%
  3424. {9645.11381016294, "Exile_Item_Cement"}, // 0.14%
  3425. {9659.17631016294, "H_StrawHat_dark"}, // 0.14%
  3426. {9673.23881016294, "H_StrawHat"}, // 0.14%
  3427. {9687.30131016294, "H_Hat_tan"}, // 0.14%
  3428. {9701.36381016294, "H_Hat_grey"}, // 0.14%
  3429. {9715.42631016294, "H_Hat_checker"}, // 0.14%
  3430. {9729.48881016294, "H_Hat_brown"}, // 0.14%
  3431. {9743.55131016294, "H_Hat_blue"}, // 0.14%
  3432. {9757.61381016294, "H_Cap_tan"}, // 0.14%
  3433. {9771.67631016294, "H_Cap_red"}, // 0.14%
  3434. {9785.73881016294, "H_Cap_press"}, // 0.14%
  3435. {9798.4458884762, "Exile_Item_LightBulb"}, // 0.13%
  3436. {9810.1646384762, "H_Bandanna_surfer"}, // 0.12%
  3437. {9821.8833884762, "H_Beret_blk_POLICE"}, // 0.12%
  3438. {9833.6021384762, "H_Cap_headphones"}, // 0.12%
  3439. {9845.3208884762, "H_Cap_grn"}, // 0.12%
  3440. {9857.0396384762, "H_Cap_blu"}, // 0.12%
  3441. {9868.7583884762, "H_Cap_blk_Raven"}, // 0.12%
  3442. {9880.4771384762, "H_Cap_blk"}, // 0.12%
  3443. {9892.1958884762, "H_Cap_oli"}, // 0.12%
  3444. {9899.15752213956, "U_C_Poor_shorts_1"}, // 0.07%
  3445. {9906.11915580293, "U_C_Poor_2"}, // 0.07%
  3446. {9913.0807894663, "U_C_Poor_1"}, // 0.07%
  3447. {9920.04242312966, "U_C_Journalist"}, // 0.07%
  3448. {9927.00405679303, "U_C_Scientist"}, // 0.07%
  3449. {9933.96569045639, "U_Rangemaster"}, // 0.07%
  3450. {9940.92732411976, "U_C_HunterBody_grn"}, // 0.07%
  3451. {9946.57491448121, "Exile_Item_MetalBoard"}, // 0.06%
  3452. {9952.22250484265, "Exile_Item_Rope"}, // 0.06%
  3453. {9957.63710880305, "U_C_Poloshirt_stripped"}, // 0.05%
  3454. {9963.05171276345, "U_C_Poloshirt_salmon"}, // 0.05%
  3455. {9968.46631672384, "U_C_Poloshirt_tricolour"}, // 0.05%
  3456. {9973.88092068424, "U_C_Poloshirt_burgundy"}, // 0.05%
  3457. {9979.29552464464, "U_C_Poloshirt_blue"}, // 0.05%
  3458. {9983.53121741572, "Exile_Item_FloodLightKit"}, // 0.04%
  3459. {9987.76691018681, "Exile_Item_PortableGeneratorKit"}, // 0.04%
  3460. {9990.6004594096, "Exile_Headgear_GasMask"}, // 0.03%
  3461. {9993.4340086324, "Exile_Item_ThermalScannerPro"}, // 0.03%
  3462. {9996.2675578552, "Exile_Item_Knife"}, // 0.03%
  3463. {9997.67945544556, "Exile_Item_ThermalScannerPro"}, // 0.01%
  3464. {9998.45297029705, "U_NikosBody"}, // 0.01%
  3465. {9999.22648514853, "U_NikosAgedBody"}, // 0.01%
  3466. {10000, "U_OrestesBody"} // 0.01%
  3467. };
  3468. };
  3469. /**
  3470. Result of 100 rounds:
  3471. CUP_optic_CompM4
  3472. FlareRed_F
  3473. Exile_Item_Rope
  3474. FlareRed_F
  3475. Exile_Item_FuelCanisterFull
  3476. Exile_Item_FuelCanisterEmpty
  3477. Exile_Item_Sand
  3478. Exile_Item_MetalScrews
  3479. FlareGreen_F
  3480. Exile_Item_FuelCanisterFull
  3481. Exile_Item_ThermalScannerPro
  3482. FlareRed_F
  3483. Exile_Item_ZipTie
  3484. Exile_Item_Pliers
  3485. Exile_Item_FuelCanisterFull
  3486. FlareYellow_F
  3487. CUP_optic_LeupoldMk4_MRT_tan
  3488. Exile_Melee_Axe
  3489. Exile_Item_Pliers
  3490. Exile_Item_Cement
  3491. CUP_acc_Flashlight
  3492. Exile_Item_MetalBoard
  3493. Exile_Item_Handsaw
  3494. Exile_Item_FuelCanisterFull
  3495. Exile_Item_Handsaw
  3496. Exile_Item_Pliers
  3497. Exile_Item_Pliers
  3498. CUP_muzzle_mfsup_SCAR_H
  3499. Exile_Item_FuelCanisterEmpty
  3500. Exile_Item_MetalScrews
  3501. CUP_acc_Flashlight
  3502. Exile_Item_FuelCanisterFull
  3503. Exile_Item_FuelCanisterEmpty
  3504. Exile_Item_MetalScrews
  3505. CUP_muzzle_snds_L85
  3506. FlareRed_F
  3507. Exile_Melee_Axe
  3508. CUP_optic_Eotech533
  3509. CUP_hgun_Makarov
  3510. Exile_Item_FuelCanisterFull
  3511. Exile_Item_MetalPole
  3512. Exile_Item_CamoTentKit
  3513. CUP_hgun_Phantom
  3514. CUP_smg_MP5SD6
  3515. Exile_Item_FuelCanisterEmpty
  3516. FlareYellow_F
  3517. FlareGreen_F
  3518. Exile_Item_MetalScrews
  3519. Exile_Item_FuelCanisterEmpty
  3520. Exile_Item_Pliers
  3521. CUP_optic_GOSHAWK
  3522. Exile_Item_JunkMetal
  3523. Exile_Melee_Axe
  3524. Exile_Item_ExtensionCord
  3525. Exile_Melee_Axe
  3526. Exile_Item_FuelCanisterEmpty
  3527. Exile_Item_LightBulb
  3528. Exile_Item_Sand
  3529. CUP_smg_MP5SD6
  3530. Exile_Item_DuctTape
  3531. Exile_Item_JunkMetal
  3532. Exile_Item_CarWheel
  3533. Exile_Item_Handsaw
  3534. CUP_smg_bizon
  3535. Exile_Item_FuelCanisterFull
  3536. Exile_Item_CarWheel
  3537. Exile_Item_ZipTie
  3538. Exile_Item_Sand
  3539. Exile_Item_Pliers
  3540. Exile_Item_Rope
  3541. Exile_Item_FuelCanisterFull
  3542. CUP_optic_RCO_desert
  3543. FlareRed_F
  3544. FlareWhite_F
  3545. CUP_hgun_TaurusTracker455_gold
  3546. Exile_Item_FuelCanisterFull
  3547. CUP_muzzle_snds_M16
  3548. Exile_Item_Sand
  3549. Exile_Item_FuelCanisterFull
  3550. Exile_Item_FuelCanisterEmpty
  3551. Exile_Item_FuelCanisterEmpty
  3552. CUP_hgun_MicroUzi
  3553. CUP_hgun_SA61
  3554. Exile_Item_Pliers
  3555. Exile_Item_MetalScrews
  3556. FlareWhite_F
  3557. CUP_acc_ANPEQ_2_grey
  3558. Exile_Item_Pliers
  3559. FlareRed_F
  3560. Exile_Item_Rope
  3561. Exile_Item_Handsaw
  3562. Exile_Item_JunkMetal
  3563. Exile_Item_FuelCanisterFull
  3564. Exile_Item_ZipTie
  3565. Exile_Item_JunkMetal
  3566. Exile_Item_FuelCanisterEmpty
  3567. Exile_Melee_Axe
  3568. Exile_Item_FuelCanisterEmpty
  3569. Exile_Item_MetalWire
  3570. Exile_Item_ZipTie
  3571. */
  3572. class Industrial
  3573. {
  3574. count
  3575. half
  3576. halfIndex
  3577. sum
  3578. items[]
  3579. {
  3580. {1237.62376237624, "Exile_Item_FuelCanisterEmpty"}, // 12.38%
  3581. {2227.72277227723, "Exile_Item_FuelCanisterFull"}, // 9.90%
  3582. {2752.59453656209, "Exile_Melee_Axe"}, // 5.25%
  3583. {3247.64404151259, "Exile_Item_ZipTie"}, // 4.95%
  3584. {3618.93117022546, "FlareRed_F"}, // 3.71%
  3585. {3990.21829893833, "FlareWhite_F"}, // 3.71%
  3586. {4361.5054276512, "FlareYellow_F"}, // 3.71%
  3587. {4732.79255636407, "FlareGreen_F"}, // 3.71%
  3588. {5042.94405344149, "Exile_Item_ExtensionCord"}, // 3.10%
  3589. {5353.09555051891, "Exile_Item_Handsaw"}, // 3.10%
  3590. {5663.24704759633, "Exile_Item_Pliers"}, // 3.10%
  3591. {5925.68292973876, "Exile_Item_JunkMetal"}, // 2.62%
  3592. {6173.20768221401, "Exile_Item_DuctTape"}, // 2.48%
  3593. {6411.78575688894, "Exile_Item_MetalScrews"}, // 2.39%
  3594. {6650.36383156388, "Exile_Item_MetalWire"}, // 2.39%
  3595. {6888.94190623882, "Exile_Item_Cement"}, // 2.39%
  3596. {7127.51998091375, "Exile_Item_Sand"}, // 2.39%
  3597. {7366.09805558869, "Exile_Item_CarWheel"}, // 2.39%
  3598. {7604.67613026363, "Exile_Item_MetalPole"}, // 2.39%
  3599. {7843.25420493856, "Exile_Item_CamoTentKit"}, // 2.39%
  3600. {8057.97447214601, "Exile_Item_LightBulb"}, // 2.15%
  3601. {8181.73684838363, "CUP_smg_MP5A5"}, // 1.24%
  3602. {8305.49922462126, "CUP_smg_MP5SD6"}, // 1.24%
  3603. {8429.26160085888, "CUP_smg_bizon"}, // 1.24%
  3604. {8553.0239770965, "CUP_smg_EVO"}, // 1.24%
  3605. {8648.45520696648, "Exile_Item_Rope"}, // 0.95%
  3606. {8743.88643683645, "Exile_Item_MetalBoard"}, // 0.95%
  3607. {8815.45985923894, "Exile_Item_PortableGeneratorKit"}, // 0.72%
  3608. {8887.03328164142, "Exile_Item_FloodLightKit"}, // 0.72%
  3609. {8928.28740705396, "CUP_hgun_Glock17"}, // 0.41%
  3610. {8969.5415324665, "CUP_hgun_PB6P9"}, // 0.41%
  3611. {9010.79565787904, "CUP_hgun_Phantom"}, // 0.41%
  3612. {9052.04978329158, "CUP_hgun_Duty"}, // 0.41%
  3613. {9093.30390870412, "CUP_hgun_Colt1911"}, // 0.41%
  3614. {9134.55803411666, "CUP_hgun_M9"}, // 0.41%
  3615. {9175.8121595292, "CUP_hgun_TaurusTracker455_gold"}, // 0.41%
  3616. {9217.06628494174, "CUP_hgun_TaurusTracker455"}, // 0.41%
  3617. {9258.32041035428, "CUP_hgun_MicroUzi"}, // 0.41%
  3618. {9299.57453576683, "CUP_hgun_Makarov"}, // 0.41%
  3619. {9340.82866117937, "CUP_hgun_Compact"}, // 0.41%
  3620. {9382.08278659191, "CUP_hgun_SA61"}, // 0.41%
  3621. {9405.9405940594, "Exile_Item_ThermalScannerPro"}, // 0.24%
  3622. {9423.94239423942, "CUP_acc_XM8_light_module"}, // 0.18%
  3623. {9441.94419441944, "CUP_acc_CZ_M3X"}, // 0.18%
  3624. {9459.94599459945, "CUP_acc_ANPEQ_2_grey"}, // 0.18%
  3625. {9477.94779477947, "CUP_acc_ANPEQ_2_desert"}, // 0.18%
  3626. {9495.94959495949, "CUP_acc_ANPEQ_2_camo"}, // 0.18%
  3627. {9513.95139513951, "CUP_acc_Flashlight_desert"}, // 0.18%
  3628. {9531.95319531953, "CUP_acc_Flashlight_wdl"}, // 0.18%
  3629. {9549.95499549955, "CUP_acc_Flashlight"}, // 0.18%
  3630. {9567.95679567956, "CUP_acc_ANPEQ_2"}, // 0.18%
  3631. {9585.95859585958, "CUP_acc_ANPEQ_15"}, // 0.18%
  3632. {9603.9603960396, "CUP_acc_Glock17_Flashlight"}, // 0.18%
  3633. {9614.96149614961, "CUP_muzzle_snds_G36_black"}, // 0.11%
  3634. {9625.96259625962, "CUP_muzzle_mfsup_SCAR_H"}, // 0.11%
  3635. {9636.96369636963, "CUP_muzzle_snds_SCAR_H"}, // 0.11%
  3636. {9647.96479647964, "CUP_muzzle_snds_AWM"}, // 0.11%
  3637. {9658.96589658965, "CUP_muzzle_snds_G36_desert"}, // 0.11%
  3638. {9669.96699669966, "CUP_muzzle_snds_MicroUzi"}, // 0.11%
  3639. {9680.96809680967, "CUP_muzzle_snds_XM8"}, // 0.11%
  3640. {9691.96919691968, "CUP_muzzle_snds_M16_camo"}, // 0.11%
  3641. {9702.97029702969, "CUP_muzzle_snds_M16"}, // 0.11%
  3642. {9713.9713971397, "CUP_muzzle_snds_SCAR_L"}, // 0.11%
  3643. {9724.97249724971, "CUP_muzzle_PBS4"}, // 0.11%
  3644. {9735.97359735972, "CUP_muzzle_mfsup_SCAR_L"}, // 0.11%
  3645. {9746.97469746973, "CUP_muzzle_Bizon"}, // 0.11%
  3646. {9757.97579757974, "CUP_muzzle_snds_M110"}, // 0.11%
  3647. {9768.97689768975, "CUP_muzzle_snds_M14"}, // 0.11%
  3648. {9779.97799779976, "CUP_muzzle_snds_M9"}, // 0.11%
  3649. {9790.97909790977, "CUP_muzzle_PB6P9"}, // 0.11%
  3650. {9801.98019801978, "CUP_muzzle_snds_L85"}, // 0.11%
  3651. {9806.93069306929, "CUP_optic_ELCAN_SpecterDR"}, // 0.05%
  3652. {9811.88118811879, "CUP_optic_LeupoldMk4_10x40_LRT_Woodland"}, // 0.05%
  3653. {9816.8316831683, "CUP_optic_Leupold_VX3"}, // 0.05%
  3654. {9821.7821782178, "CUP_optic_ElcanM145"}, // 0.05%
  3655. {9826.73267326731, "CUP_optic_TrijiconRx01_desert"}, // 0.05%
  3656. {9831.68316831681, "CUP_optic_SB_11_4x20_PM"}, // 0.05%
  3657. {9836.63366336632, "CUP_optic_ZDDot"}, // 0.05%
  3658. {9841.58415841582, "CUP_optic_MRad"}, // 0.05%
  3659. {9846.53465346533, "CUP_optic_TrijiconRx01_black"}, // 0.05%
  3660. {9851.48514851483, "CUP_optic_LeupoldMk4_10x40_LRT_Desert"}, // 0.05%
  3661. {9856.43564356433, "CUP_optic_AN_PAS_13c1"}, // 0.05%
  3662. {9861.38613861384, "CUP_optic_LeupoldMk4_MRT_tan"}, // 0.05%
  3663. {9866.33663366334, "CUP_optic_SB_3_12x50_PMII"}, // 0.05%
  3664. {9871.28712871285, "CUP_optic_LeupoldM3LR"}, // 0.05%
  3665. {9876.23762376235, "CUP_optic_PSO_3"}, // 0.05%
  3666. {9881.18811881186, "CUP_optic_Kobra"}, // 0.05%
  3667. {9886.13861386136, "CUP_optic_GOSHAWK"}, // 0.05%
  3668. {9891.08910891087, "CUP_optic_NSPU"}, // 0.05%
  3669. {9896.03960396037, "CUP_optic_PechenegScope"}, // 0.05%
  3670. {9900.99009900988, "CUP_optic_HoloBlack"}, // 0.05%
  3671. {9905.94059405938, "CUP_optic_HoloWdl"}, // 0.05%
  3672. {9910.89108910889, "CUP_optic_HoloDesert"}, // 0.05%
  3673. {9915.84158415839, "CUP_optic_Eotech533"}, // 0.05%
  3674. {9920.7920792079, "CUP_optic_Eotech533Grey"}, // 0.05%
  3675. {9925.7425742574, "CUP_optic_CompM4"}, // 0.05%
  3676. {9930.69306930691, "CUP_optic_LeupoldMk4_CQ_T"}, // 0.05%
  3677. {9935.64356435641, "CUP_optic_SUSAT"}, // 0.05%
  3678. {9940.59405940592, "CUP_optic_RCO"}, // 0.05%
  3679. {9945.54455445542, "CUP_optic_RCO_desert"}, // 0.05%
  3680. {9950.49504950493, "CUP_optic_CompM2_Woodland2"}, // 0.05%
  3681. {9955.44554455443, "CUP_optic_CompM2_Woodland"}, // 0.05%
  3682. {9960.39603960393, "CUP_optic_CompM2_Black"}, // 0.05%
  3683. {9965.34653465344, "CUP_optic_CompM2_Desert"}, // 0.05%
  3684. {9970.29702970294, "CUP_optic_ACOG"}, // 0.05%
  3685. {9975.24752475245, "CUP_optic_AN_PAS_13c2"}, // 0.05%
  3686. {9980.19801980195, "CUP_optic_AN_PVS_4"}, // 0.05%
  3687. {9985.14851485146, "CUP_optic_AN_PVS_10"}, // 0.05%
  3688. {9990.09900990096, "CUP_optic_LeupoldMk4"}, // 0.05%
  3689. {9995.04950495047, "CUP_optic_CWS"}, // 0.05%
  3690. {9999.99999999997, "CUP_optic_PSO_1"} // 0.05%
  3691. };
  3692. };
  3693. /**
  3694. Result of 100 rounds:
  3695. CUP_optic_CompM2_Woodland2
  3696. Exile_Item_Handsaw
  3697. CUP_hgun_Phantom
  3698. Exile_Item_Handsaw
  3699. Exile_Melee_Axe
  3700. Exile_Melee_Axe
  3701. Exile_Item_LightBulb
  3702. Exile_Item_MetalWire
  3703. Exile_Item_MetalScrews
  3704. Exile_Melee_Axe
  3705. CUP_acc_Flashlight
  3706. Exile_Item_JunkMetal
  3707. Exile_Item_Handsaw
  3708. Exile_Item_CamoTentKit
  3709. Exile_Melee_Axe
  3710. Exile_Item_Sand
  3711. CUP_optic_PechenegScope
  3712. Exile_Item_Pliers
  3713. Exile_Item_CamoTentKit
  3714. Exile_Item_LightBulb
  3715. CUP_muzzle_snds_SCAR_H
  3716. CUP_hgun_Duty
  3717. Exile_Item_CamoTentKit
  3718. Exile_Melee_Axe
  3719. Exile_Item_CamoTentKit
  3720. Exile_Item_CamoTentKit
  3721. Exile_Item_CamoTentKit
  3722. CUP_muzzle_snds_M16_camo
  3723. Exile_Item_BaseCameraKit
  3724. Exile_Item_MetalWire
  3725. CUP_muzzle_snds_SCAR_H
  3726. Exile_Item_ExtensionCord
  3727. Exile_Item_BaseCameraKit
  3728. Exile_Item_MetalWire
  3729. CUP_optic_TrijiconRx01_desert
  3730. Exile_Item_Handsaw
  3731. Exile_Item_Pliers
  3732. CUP_optic_CWS
  3733. CUP_acc_ANPEQ_2_desert
  3734. Exile_Melee_Axe
  3735. CUP_smg_MP5SD6
  3736. CUP_smg_MP5A5
  3737. CUP_hgun_MicroUzi
  3738. Exile_Item_Rope
  3739. Exile_Item_BaseCameraKit
  3740. Exile_Item_Sand
  3741. Exile_Item_MetalScrews
  3742. Exile_Item_MetalWire
  3743. Exile_Item_BaseCameraKit
  3744. Exile_Item_Cement
  3745. CUP_optic_Eotech533
  3746. Exile_Item_Cement
  3747. Exile_Item_Pliers
  3748. Exile_Item_MetalPole
  3749. Exile_Item_Pliers
  3750. Exile_Melee_Axe
  3751. Exile_Item_MetalBoard
  3752. Exile_Item_LightBulb
  3753. Exile_Item_Rope
  3754. Exile_Item_MetalWire
  3755. Exile_Item_Cement
  3756. Exile_Item_Laptop
  3757. Exile_Item_CamoTentKit
  3758. Exile_Item_FloodLightKit
  3759. Exile_Melee_Axe
  3760. Exile_Item_Laptop
  3761. Exile_Item_Handsaw
  3762. Exile_Item_LightBulb
  3763. Exile_Item_Cement
  3764. CUP_hgun_Glock17
  3765. Exile_Melee_Axe
  3766. CUP_optic_CompM2_Desert
  3767. Exile_Item_Handsaw
  3768. Exile_Item_Sand
  3769. CUP_hgun_Compact
  3770. Exile_Melee_Axe
  3771. CUP_muzzle_Bizon
  3772. Exile_Item_Laptop
  3773. Exile_Melee_Axe
  3774. Exile_Item_BaseCameraKit
  3775. Exile_Item_BaseCameraKit
  3776. CUP_acc_CZ_M3X
  3777. CUP_acc_Flashlight_desert
  3778. Exile_Item_Cement
  3779. Exile_Item_CarWheel
  3780. Exile_Item_JunkMetal
  3781. CUP_acc_ANPEQ_15
  3782. Exile_Item_Cement
  3783. Exile_Item_JunkMetal
  3784. CUP_hgun_Glock17
  3785. Exile_Item_CamoTentKit
  3786. Exile_Item_Cement
  3787. Exile_Melee_Axe
  3788. Exile_Item_Handsaw
  3789. Exile_Item_Cement
  3790. Exile_Item_BaseCameraKit
  3791. Exile_Item_Pliers
  3792. Exile_Item_BaseCameraKit
  3793. Exile_Item_CarWheel
  3794. Exile_Item_Pliers
  3795. */
  3796. class Factories
  3797. {
  3798. count
  3799. half
  3800. halfIndex
  3801. sum
  3802. items[]
  3803. {
  3804. {1052.63157894737, "Exile_Item_BaseCameraKit"}, // 10.53%
  3805. {1924.54026632847, "Exile_Melee_Axe"}, // 8.72%
  3806. {2439.75903614458, "Exile_Item_ExtensionCord"}, // 5.15%
  3807. {2954.97780596068, "Exile_Item_Pliers"}, // 5.15%
  3808. {3470.19657577679, "Exile_Item_Handsaw"}, // 5.15%
  3809. {3906.15091946734, "Exile_Item_JunkMetal"}, // 4.36%
  3810. {4302.47305009512, "Exile_Item_Sand"}, // 3.96%
  3811. {4698.79518072289, "Exile_Item_MetalScrews"}, // 3.96%
  3812. {5095.11731135067, "Exile_Item_MetalPole"}, // 3.96%
  3813. {5491.43944197844, "Exile_Item_CamoTentKit"}, // 3.96%
  3814. {5887.76157260622, "Exile_Item_Cement"}, // 3.96%
  3815. {6284.08370323399, "Exile_Item_MetalWire"}, // 3.96%
  3816. {6680.40583386177, "Exile_Item_CarWheel"}, // 3.96%
  3817. {7037.09575142676, "Exile_Item_LightBulb"}, // 3.57%
  3818. {7300.2536461636, "Exile_Item_Laptop"}, // 2.63%
  3819. {7464.72733037413, "CUP_smg_EVO"}, // 1.64%
  3820. {7629.20101458466, "CUP_smg_MP5SD6"}, // 1.64%
  3821. {7793.67469879518, "CUP_smg_MP5A5"}, // 1.64%
  3822. {7958.14838300571, "CUP_smg_bizon"}, // 1.64%
  3823. {8116.67723525682, "Exile_Item_MetalBoard"}, // 1.59%
  3824. {8275.20608750793, "Exile_Item_Rope"}, // 1.59%
  3825. {8394.10272669626, "Exile_Item_FloodLightKit"}, // 1.19%
  3826. {8512.99936588459, "Exile_Item_PortableGeneratorKit"}, // 1.19%
  3827. {8567.8239272881, "CUP_hgun_Glock17"}, // 0.55%
  3828. {8622.64848869161, "CUP_hgun_PB6P9"}, // 0.55%
  3829. {8677.47305009512, "CUP_hgun_Phantom"}, // 0.55%
  3830. {8732.29761149863, "CUP_hgun_Duty"}, // 0.55%
  3831. {8787.12217290214, "CUP_hgun_SA61"}, // 0.55%
  3832. {8841.94673430565, "CUP_hgun_M9"}, // 0.55%
  3833. {8896.77129570916, "CUP_hgun_TaurusTracker455_gold"}, // 0.55%
  3834. {8951.59585711267, "CUP_hgun_TaurusTracker455"}, // 0.55%
  3835. {9006.42041851618, "CUP_hgun_MicroUzi"}, // 0.55%
  3836. {9061.24497991969, "CUP_hgun_Makarov"}, // 0.55%
  3837. {9116.0695413232, "CUP_hgun_Colt1911"}, // 0.55%
  3838. {9170.89410272671, "CUP_hgun_Compact"}, // 0.55%
  3839. {9210.52631578949, "Exile_Item_ThermalScannerPro"}, // 0.40%
  3840. {9234.44976076556, "CUP_acc_CZ_M3X"}, // 0.24%
  3841. {9258.37320574164, "CUP_acc_ANPEQ_2_grey"}, // 0.24%
  3842. {9282.29665071772, "CUP_acc_ANPEQ_2_desert"}, // 0.24%
  3843. {9306.22009569379, "CUP_acc_ANPEQ_2_camo"}, // 0.24%
  3844. {9330.14354066987, "CUP_acc_XM8_light_module"}, // 0.24%
  3845. {9354.06698564595, "CUP_acc_Flashlight_desert"}, // 0.24%
  3846. {9377.99043062203, "CUP_acc_Flashlight_wdl"}, // 0.24%
  3847. {9401.9138755981, "CUP_acc_Flashlight"}, // 0.24%
  3848. {9425.83732057418, "CUP_acc_ANPEQ_2"}, // 0.24%
  3849. {9449.76076555026, "CUP_acc_ANPEQ_15"}, // 0.24%
  3850. {9473.68421052633, "CUP_acc_Glock17_Flashlight"}, // 0.24%
  3851. {9488.30409356727, "CUP_muzzle_snds_MicroUzi"}, // 0.15%
  3852. {9502.9239766082, "CUP_muzzle_snds_M9"}, // 0.15%
  3853. {9517.54385964914, "CUP_muzzle_snds_M14"}, // 0.15%
  3854. {9532.16374269008, "CUP_muzzle_snds_AWM"}, // 0.15%
  3855. {9546.78362573101, "CUP_muzzle_snds_SCAR_H"}, // 0.15%
  3856. {9561.40350877195, "CUP_muzzle_snds_XM8"}, // 0.15%
  3857. {9576.02339181288, "CUP_muzzle_snds_G36_black"}, // 0.15%
  3858. {9590.64327485382, "CUP_muzzle_snds_G36_desert"}, // 0.15%
  3859. {9605.26315789475, "CUP_muzzle_snds_L85"}, // 0.15%
  3860. {9619.88304093569, "CUP_muzzle_snds_M16_camo"}, // 0.15%
  3861. {9634.50292397663, "CUP_muzzle_mfsup_SCAR_H"}, // 0.15%
  3862. {9649.12280701756, "CUP_muzzle_snds_SCAR_L"}, // 0.15%
  3863. {9663.7426900585, "CUP_muzzle_mfsup_SCAR_L"}, // 0.15%
  3864. {9678.36257309943, "CUP_muzzle_PBS4"}, // 0.15%
  3865. {9692.98245614037, "CUP_muzzle_PB6P9"}, // 0.15%
  3866. {9707.60233918131, "CUP_muzzle_Bizon"}, // 0.15%
  3867. {9722.22222222224, "CUP_muzzle_snds_M110"}, // 0.15%
  3868. {9736.84210526318, "CUP_muzzle_snds_M16"}, // 0.15%
  3869. {9743.4210526316, "CUP_optic_LeupoldMk4_10x40_LRT_Woodland"}, // 0.07%
  3870. {9750.00000000002, "CUP_optic_Leupold_VX3"}, // 0.07%
  3871. {9756.57894736844, "CUP_optic_ElcanM145"}, // 0.07%
  3872. {9763.15789473686, "CUP_optic_ELCAN_SpecterDR"}, // 0.07%
  3873. {9769.73684210529, "CUP_optic_AN_PAS_13c1"}, // 0.07%
  3874. {9776.31578947371, "CUP_optic_MRad"}, // 0.07%
  3875. {9782.89473684213, "CUP_optic_ZDDot"}, // 0.07%
  3876. {9789.47368421055, "CUP_optic_TrijiconRx01_black"}, // 0.07%
  3877. {9796.05263157897, "CUP_optic_TrijiconRx01_desert"}, // 0.07%
  3878. {9802.63157894739, "CUP_optic_LeupoldMk4_10x40_LRT_Desert"}, // 0.07%
  3879. {9809.21052631582, "CUP_optic_SB_11_4x20_PM"}, // 0.07%
  3880. {9815.78947368424, "CUP_optic_LeupoldMk4_MRT_tan"}, // 0.07%
  3881. {9822.36842105266, "CUP_optic_SUSAT"}, // 0.07%
  3882. {9828.94736842108, "CUP_optic_LeupoldM3LR"}, // 0.07%
  3883. {9835.5263157895, "CUP_optic_PSO_1"}, // 0.07%
  3884. {9842.10526315792, "CUP_optic_PSO_3"}, // 0.07%
  3885. {9848.68421052635, "CUP_optic_Kobra"}, // 0.07%
  3886. {9855.26315789477, "CUP_optic_NSPU"}, // 0.07%
  3887. {9861.84210526319, "CUP_optic_PechenegScope"}, // 0.07%
  3888. {9868.42105263161, "CUP_optic_HoloBlack"}, // 0.07%
  3889. {9875.00000000003, "CUP_optic_HoloWdl"}, // 0.07%
  3890. {9881.57894736845, "CUP_optic_HoloDesert"}, // 0.07%
  3891. {9888.15789473688, "CUP_optic_Eotech533"}, // 0.07%
  3892. {9894.7368421053, "CUP_optic_Eotech533Grey"}, // 0.07%
  3893. {9901.31578947372, "CUP_optic_CompM4"}, // 0.07%
  3894. {9907.89473684214, "CUP_optic_LeupoldMk4_CQ_T"}, // 0.07%
  3895. {9914.47368421056, "CUP_optic_CWS"}, // 0.07%
  3896. {9921.05263157898, "CUP_optic_RCO_desert"}, // 0.07%
  3897. {9927.63157894741, "CUP_optic_CompM2_Woodland2"}, // 0.07%
  3898. {9934.21052631583, "CUP_optic_CompM2_Woodland"}, // 0.07%
  3899. {9940.78947368425, "CUP_optic_CompM2_Black"}, // 0.07%
  3900. {9947.36842105267, "CUP_optic_CompM2_Desert"}, // 0.07%
  3901. {9953.94736842109, "CUP_optic_ACOG"}, // 0.07%
  3902. {9960.52631578952, "CUP_optic_SB_3_12x50_PMII"}, // 0.07%
  3903. {9967.10526315794, "CUP_optic_AN_PAS_13c2"}, // 0.07%
  3904. {9973.68421052636, "CUP_optic_AN_PVS_4"}, // 0.07%
  3905. {9980.26315789478, "CUP_optic_AN_PVS_10"}, // 0.07%
  3906. {9986.8421052632, "CUP_optic_LeupoldMk4"}, // 0.07%
  3907. {9993.42105263162, "CUP_optic_RCO"}, // 0.07%
  3908. {10000, "CUP_optic_GOSHAWK"} // 0.07%
  3909. };
  3910. };
  3911. /**
  3912. Result of 100 rounds:
  3913. Exile_Item_PortableGeneratorKit
  3914. Exile_Item_FuelCanisterFull
  3915. Exile_Item_Sand
  3916. Exile_Item_FuelCanisterFull
  3917. Exile_Item_FuelCanisterEmpty
  3918. Exile_Item_FuelCanisterEmpty
  3919. FlareYellow_F
  3920. FlareGreen_F
  3921. Exile_Item_ZipTie
  3922. Exile_Item_FuelCanisterEmpty
  3923. Exile_Item_CamoTentKit
  3924. Exile_Item_FuelCanisterFull
  3925. Exile_Item_FuelCanisterFull
  3926. FlareWhite_F
  3927. Exile_Item_FuelCanisterEmpty
  3928. Exile_Item_ZipTie
  3929. Exile_Item_MetalBoard
  3930. Exile_Item_FuelCanisterFull
  3931. FlareWhite_F
  3932. FlareYellow_F
  3933. Exile_Item_Cement
  3934. Exile_Item_Sand
  3935. FlareWhite_F
  3936. Exile_Item_FuelCanisterEmpty
  3937. Exile_Item_DuctTape
  3938. FlareWhite_F
  3939. FlareWhite_F
  3940. Exile_Item_LightBulb
  3941. Exile_Item_FuelCanisterEmpty
  3942. FlareGreen_F
  3943. Exile_Item_Cement
  3944. Exile_Item_FuelCanisterEmpty
  3945. Exile_Item_FuelCanisterEmpty
  3946. FlareGreen_F
  3947. Exile_Item_Rope
  3948. Exile_Item_FuelCanisterFull
  3949. Exile_Item_FuelCanisterFull
  3950. Exile_Item_PortableGeneratorKit
  3951. Exile_Item_CamoTentKit
  3952. Exile_Item_FuelCanisterEmpty
  3953. Exile_Item_ExtensionCord
  3954. Exile_Item_Handsaw
  3955. Exile_Item_MetalWire
  3956. Exile_Item_JunkMetal
  3957. Exile_Item_FuelCanisterEmpty
  3958. Exile_Item_FuelCanisterFull
  3959. Exile_Item_ZipTie
  3960. FlareGreen_F
  3961. Exile_Item_FuelCanisterEmpty
  3962. FlareWhite_F
  3963. Exile_Item_PortableGeneratorKit
  3964. FlareWhite_F
  3965. Exile_Item_FuelCanisterFull
  3966. Exile_Item_DuctTape
  3967. Exile_Item_FuelCanisterFull
  3968. Exile_Item_FuelCanisterEmpty
  3969. Exile_Item_Pliers
  3970. FlareYellow_F
  3971. Exile_Item_JunkMetal
  3972. FlareRed_F
  3973. FlareWhite_F
  3974. Exile_Melee_Axe
  3975. Exile_Item_DuctTape
  3976. Exile_Item_CarWheel
  3977. Exile_Item_FuelCanisterEmpty
  3978. Exile_Melee_Axe
  3979. Exile_Item_FuelCanisterFull
  3980. FlareYellow_F
  3981. FlareWhite_F
  3982. Exile_Item_Sand
  3983. Exile_Item_FuelCanisterEmpty
  3984. Exile_Item_FloodLightKit
  3985. Exile_Item_FuelCanisterFull
  3986. Exile_Item_FuelCanisterFull
  3987. Exile_Item_MetalScrews
  3988. Exile_Item_FuelCanisterEmpty
  3989. Exile_Item_LightBulb
  3990. FlareYellow_F
  3991. Exile_Item_FuelCanisterEmpty
  3992. Exile_Item_FuelCanisterEmpty
  3993. Exile_Item_FuelCanisterEmpty
  3994. Exile_Item_CamoTentKit
  3995. Exile_Item_CamoTentKit
  3996. FlareWhite_F
  3997. FlareGreen_F
  3998. Exile_Item_FuelCanisterFull
  3999. Exile_Item_Cement
  4000. FlareWhite_F
  4001. Exile_Item_FuelCanisterFull
  4002. Exile_Item_Sand
  4003. Exile_Item_DuctTape
  4004. FlareWhite_F
  4005. Exile_Item_FuelCanisterEmpty
  4006. Exile_Item_FuelCanisterFull
  4007. FlareRed_F
  4008. Exile_Item_FuelCanisterEmpty
  4009. Exile_Item_FuelCanisterFull
  4010. Exile_Item_FuelCanisterEmpty
  4011. FlareGreen_F
  4012. Exile_Item_FuelCanisterFull
  4013. */
  4014. class VehicleService
  4015. {
  4016. count
  4017. half
  4018. halfIndex
  4019. sum
  4020. items[]
  4021. {
  4022. {2352.94117647059, "Exile_Item_FuelCanisterEmpty"}, // 23.53%
  4023. {4235.29411764706, "Exile_Item_FuelCanisterFull"}, // 18.82%
  4024. {4823.52941176471, "Exile_Item_ZipTie"}, // 5.88%
  4025. {5294.11764705882, "Exile_Item_DuctTape"}, // 4.71%
  4026. {5735.29411764706, "FlareWhite_F"}, // 4.41%
  4027. {6176.47058823529, "FlareRed_F"}, // 4.41%
  4028. {6617.64705882353, "FlareGreen_F"}, // 4.41%
  4029. {7058.82352941176, "FlareYellow_F"}, // 4.41%
  4030. {7448.61800141743, "Exile_Melee_Axe"}, // 3.90%
  4031. {7678.95109851169, "Exile_Item_ExtensionCord"}, // 2.30%
  4032. {7909.28419560595, "Exile_Item_Handsaw"}, // 2.30%
  4033. {8139.61729270021, "Exile_Item_Pliers"}, // 2.30%
  4034. {8334.51452870305, "Exile_Item_JunkMetal"}, // 1.95%
  4035. {8511.69383416017, "Exile_Item_CarWheel"}, // 1.77%
  4036. {8688.87313961729, "Exile_Item_Sand"}, // 1.77%
  4037. {8866.05244507442, "Exile_Item_MetalPole"}, // 1.77%
  4038. {9043.23175053154, "Exile_Item_MetalWire"}, // 1.77%
  4039. {9220.41105598866, "Exile_Item_MetalScrews"}, // 1.77%
  4040. {9397.59036144578, "Exile_Item_CamoTentKit"}, // 1.77%
  4041. {9574.76966690291, "Exile_Item_Cement"}, // 1.77%
  4042. {9734.23104181432, "Exile_Item_LightBulb"}, // 1.59%
  4043. {9805.10276399717, "Exile_Item_Rope"}, // 0.71%
  4044. {9875.97448618001, "Exile_Item_MetalBoard"}, // 0.71%
  4045. {9929.12827781715, "Exile_Item_PortableGeneratorKit"}, // 0.53%
  4046. {9982.28206945429, "Exile_Item_FloodLightKit"}, // 0.53%
  4047. {10000, "Exile_Item_ThermalScannerPro"} // 0.18%
  4048. };
  4049. };
  4050. /**
  4051. Result of 100 rounds:
  4052. U_B_GEN_Commander_F
  4053. srifle_DMR_01_F
  4054. Exile_Weapon_SVD
  4055. srifle_DMR_01_F
  4056. Exile_Item_Vishpirin
  4057. APERSMine_Range_Mag
  4058. muzzle_snds_H_MG_khk_F
  4059. CUP_hgun_M9
  4060. UGL_FlareRed_F
  4061. arifle_MX_SW_Black_F
  4062. U_I_CombatUniform_tshirt
  4063. muzzle_snds_93mmg
  4064. DemoCharge_Remote_Mag
  4065. SmokeShellPurple
  4066. 20Rnd_762x51_Mag
  4067. srifle_LRR_tna_F
  4068. U_B_SpecopsUniform_sgg
  4069. 10Rnd_127x54_Mag
  4070. SmokeShellGreen
  4071. V_PlateCarrier1_rgr
  4072. CUP_6Rnd_45ACP_M
  4073. arifle_AK12_GL_F
  4074. B_Bergen_sgg
  4075. 10Rnd_338_Mag
  4076. B_Carryall_mcamo
  4077. SmokeShellGreen
  4078. SmokeShellGreen
  4079. CUP_30Rnd_545x39_AK_M
  4080. LMG_Mk200_F
  4081. CUP_hgun_Glock17
  4082. CUP_8Rnd_9x18_Makarov_M
  4083. NVGoggles
  4084. Exile_Item_ZipTie
  4085. CUP_hgun_Glock17
  4086. B_ViperLightHarness_blk_F
  4087. 7Rnd_408_Mag
  4088. U_IG_Guerilla2_3
  4089. U_B_CTRG_Soldier_F
  4090. CUP_arifle_Mk16_STD_SFG
  4091. LMG_Zafir_F
  4092. srifle_DMR_03_khaki_F
  4093. CUP_srifle_M24_des
  4094. CUP_arifle_AK74_GL_kobra
  4095. H_Booniehat_indp
  4096. 1Rnd_HE_Grenade_shell
  4097. B_Carryall_khk
  4098. bipod_02_F_blk
  4099. CUP_hgun_M9
  4100. ItemCompass
  4101. srifle_DMR_02_sniper_F
  4102. H_MilCap_tna_F
  4103. V_PlateCarrierSpec_mtp
  4104. U_IG_Guerilla2_2
  4105. bipod_02_F_hex
  4106. U_IG_Guerilla1_1
  4107. APERSBoundingMine_Range_Mag
  4108. CUP_acc_ANPEQ_2_camo
  4109. acc_pointer_IR
  4110. 3Rnd_SmokePurple_Grenade_shell
  4111. V_PlateCarrierIAGL_oli
  4112. acc_flashlight
  4113. V_BandollierB_cbr
  4114. SmokeShellOrange
  4115. CUP_muzzle_snds_G36_desert
  4116. 20Rnd_762x51_Mag
  4117. arifle_Mk20C_F
  4118. DemoCharge_Remote_Mag
  4119. optic_DMS
  4120. srifle_DMR_02_F
  4121. arifle_SPAR_02_blk_F
  4122. 10Rnd_93x64_DMR_05_Mag
  4123. H_HelmetSpecO_ocamo
  4124. muzzle_snds_93mmg_tan
  4125. B_FieldPack_oucamo
  4126. CUP_arifle_FNFAL_railed
  4127. 20Rnd_762x51_Mag
  4128. CUP_20Rnd_762x51_FNFAL_M
  4129. muzzle_snds_65_TI_ghex_F
  4130. Exile_Item_Vishpirin
  4131. arifle_MX_SW_F
  4132. CUP_sgun_M1014
  4133. CUP_arifle_Mk16_CQC_SFG
  4134. H_Watchcap_camo
  4135. srifle_DMR_02_sniper_F
  4136. CUP_hgun_PB6P9
  4137. optic_AMS_khk
  4138. CUP_optic_SB_11_4x20_PM
  4139. srifle_DMR_02_sniper_F
  4140. srifle_EBR_F
  4141. arifle_SPAR_02_snd_F
  4142. SmokeShellOrange
  4143. acc_flashlight
  4144. 10Rnd_762x51_Mag
  4145. 5Rnd_127x108_Mag
  4146. CUP_lmg_M249_para
  4147. ItemCompass
  4148. 10Rnd_127x54_Mag
  4149. MiniGrenade
  4150. U_O_GhillieSuit
  4151. muzzle_snds_B
  4152. */
  4153. class Military
  4154. {
  4155. count
  4156. half
  4157. halfIndex
  4158. sum
  4159. items[]
  4160. {
  4161. {123.636363636364, "150Rnd_93x64_Mag"}, // 1.24%
  4162. {245.454545454545, "1Rnd_HE_Grenade_shell"}, // 1.22%
  4163. {366.666666666667, "ItemCompass"}, // 1.21%
  4164. {487.878787878788, "Exile_Item_ZipTie"}, // 1.21%
  4165. {578.787878787879, "HandGrenade"}, // 0.91%
  4166. {669.69696969697, "MiniGrenade"}, // 0.91%
  4167. {750.50505050505, "CUP_sgun_Saiga12K"}, // 0.81%
  4168. {831.313131313131, "CUP_sgun_M1014"}, // 0.81%
  4169. {912.121212121212, "CUP_sgun_AA12"}, // 0.81%
  4170. {984.848484848485, "arifle_MX_SW_F"}, // 0.73%
  4171. {1057.57575757576, "LMG_Mk200_F"}, // 0.73%
  4172. {1130.30303030303, "LMG_03_F"}, // 0.73%
  4173. {1203.0303030303, "APERSMine_Range_Mag"}, // 0.73%
  4174. {1275.75757575758, "APERSBoundingMine_Range_Mag"}, // 0.73%
  4175. {1348.48484848485, "APERSTripMine_Wire_Mag"}, // 0.73%
  4176. {1421.21212121212, "arifle_MX_SW_Black_F"}, // 0.73%
  4177. {1493.93939393939, "LMG_Zafir_F"}, // 0.73%
  4178. {1565.24064171123, "Exile_Item_Vishpirin"}, // 0.71%
  4179. {1633.2895518654, "10Rnd_93x64_DMR_05_Mag"}, // 0.68%
  4180. {1701.33846201958, "10Rnd_338_Mag"}, // 0.68%
  4181. {1769.21724989836, "10Rnd_762x51_Mag"}, // 0.68%
  4182. {1837.09603777715, "20Rnd_762x51_Mag"}, // 0.68%
  4183. {1903.88639028179, "optic_DMS"}, // 0.67%
  4184. {1968.203026027, "optic_SOS"}, // 0.64%
  4185. {2032.5196617722, "optic_LRPS"}, // 0.64%
  4186. {2093.12572237827, "Rangefinder"}, // 0.61%
  4187. {2153.73178298433, "NVGoggles"}, // 0.61%
  4188. {2214.33784359039, "Laserdesignator"}, // 0.61%
  4189. {2274.94390419645, "CUP_smg_bizon"}, // 0.61%
  4190. {2335.54996480251, "CUP_smg_EVO"}, // 0.61%
  4191. {2396.15602540857, "CUP_smg_MP5A5"}, // 0.61%
  4192. {2456.76208601463, "CUP_smg_MP5SD6"}, // 0.61%
  4193. {2516.76208601463, "3Rnd_HE_Grenade_shell"}, // 0.60%
  4194. {2576.30488239953, "10Rnd_127x54_Mag"}, // 0.60%
  4195. {2624.78973088438, "U_IG_Guerilla1_1"}, // 0.48%
  4196. {2673.27457936923, "U_IG_Guerilla2_3"}, // 0.48%
  4197. {2721.75942785408, "U_IG_Guerilla2_2"}, // 0.48%
  4198. {2770.24427633892, "U_IG_Guerilla2_1"}, // 0.48%
  4199. {2818.09116629108, "30Rnd_65x39_caseless_green"}, // 0.48%
  4200. {2865.93805624323, "30Rnd_556x45_Stanag"}, // 0.48%
  4201. {2912.93867467242, "muzzle_snds_B"}, // 0.47%
  4202. {2959.72230040341, "20Rnd_762x51_Mag"}, // 0.47%
  4203. {3005.17684585796, "U_IG_Guerilla3_1"}, // 0.45%
  4204. {3050.63139131251, "U_IG_Guerilla3_2"}, // 0.45%
  4205. {3094.26775494887, "IEDLandSmall_Remote_Mag"}, // 0.44%
  4206. {3137.90411858523, "DemoCharge_Remote_Mag"}, // 0.44%
  4207. {3181.5404822216, "IEDUrbanSmall_Remote_Mag"}, // 0.44%
  4208. {3222.75260343372, "5Rnd_127x108_Mag"}, // 0.41%
  4209. {3263.96472464584, "7Rnd_408_Mag"}, // 0.41%
  4210. {3304.36876504988, "muzzle_snds_93mmg_tan"}, // 0.40%
  4211. {3344.77280545392, "muzzle_snds_338_black"}, // 0.40%
  4212. {3385.17684585796, "srifle_DMR_01_F"}, // 0.40%
  4213. {3425.580886262, "muzzle_snds_338_green"}, // 0.40%
  4214. {3465.98492666604, "muzzle_snds_338_sand"}, // 0.40%
  4215. {3506.38896707008, "muzzle_snds_93mmg"}, // 0.40%
  4216. {3546.79300747412, "muzzle_snds_B"}, // 0.40%
  4217. {3587.19704787816, "srifle_EBR_F"}, // 0.40%
  4218. {3622.84767176408, "Exile_Item_Bandage"}, // 0.36%
  4219. {3657.93539106232, "20Rnd_556x45_UW_mag"}, // 0.35%
  4220. {3692.56742569436, "optic_KHS_hex"}, // 0.35%
  4221. {3727.19946032639, "optic_AMS"}, // 0.35%
  4222. {3761.83149495843, "optic_KHS_tan"}, // 0.35%
  4223. {3796.46352959046, "optic_KHS_old"}, // 0.35%
  4224. {3831.09556422249, "optic_KHS_blk"}, // 0.35%
  4225. {3865.72759885453, "optic_AMS_khk"}, // 0.35%
  4226. {3900.35963348656, "optic_AMS_snd"}, // 0.35%
  4227. {3934.90508803202, "B_Carryall_cbr"}, // 0.35%
  4228. {3968.84448197141, "B_FieldPack_blk"}, // 0.34%
  4229. {4002.78387591081, "B_FieldPack_oucamo"}, // 0.34%
  4230. {4036.7232698502, "B_FieldPack_cbr"}, // 0.34%
  4231. {4070.66266378959, "B_FieldPack_ocamo"}, // 0.34%
  4232. {4103.42269654963, "srifle_DMR_05_blk_F"}, // 0.33%
  4233. {4136.18272930966, "srifle_DMR_05_hex_F"}, // 0.33%
  4234. {4168.94276206969, "srifle_DMR_05_tan_F"}, // 0.33%
  4235. {4201.67003479697, "B_Carryall_oli"}, // 0.33%
  4236. {4234.39730752424, "B_Carryall_khk"}, // 0.33%
  4237. {4266.14333927027, "srifle_LRR_tna_F"}, // 0.32%
  4238. {4297.8893710163, "srifle_DMR_07_ghex_F"}, // 0.32%
  4239. {4329.63540276233, "srifle_DMR_07_blk_F"}, // 0.32%
  4240. {4361.38143450837, "srifle_LRR_F"}, // 0.32%
  4241. {4393.1274662544, "srifle_GM6_F"}, // 0.32%
  4242. {4424.87349800043, "srifle_GM6_ghex_F"}, // 0.32%
  4243. {4456.61952974646, "srifle_DMR_07_hex_F"}, // 0.32%
  4244. {4487.52862065555, "UGL_FlareWhite_F"}, // 0.31%
  4245. {4518.43771156464, "UGL_FlareYellow_F"}, // 0.31%
  4246. {4549.34680247373, "UGL_FlareRed_F"}, // 0.31%
  4247. {4580.25589338283, "UGL_FlareGreen_F"}, // 0.31%
  4248. {4611.01120772023, "bipod_02_F_tan"}, // 0.31%
  4249. {4641.76652205763, "bipod_01_F_snd"}, // 0.31%
  4250. {4672.52183639504, "bipod_02_F_blk"}, // 0.31%
  4251. {4703.27715073244, "bipod_03_F_blk"}, // 0.31%
  4252. {4734.03246506985, "bipod_03_F_oli"}, // 0.31%
  4253. {4764.78777940725, "bipod_01_F_blk"}, // 0.31%
  4254. {4793.87868849816, "150Rnd_762x54_Box"}, // 0.29%
  4255. {4822.96959758907, "100Rnd_65x39_caseless_mag"}, // 0.29%
  4256. {4851.91577578898, "bipod_01_F_mtp"}, // 0.29%
  4257. {4880.86195398889, "bipod_02_F_hex"}, // 0.29%
  4258. {4909.57008796018, "30Rnd_65x39_caseless_mag"}, // 0.29%
  4259. {4938.27822193147, "30Rnd_65x39_caseless_green_mag_Tracer"}, // 0.29%
  4260. {4966.98635590277, "30Rnd_556x45_Stanag_Tracer_Yellow"}, // 0.29%
  4261. {4995.69448987406, "30Rnd_556x45_Stanag_Tracer_Red"}, // 0.29%
  4262. {5024.40262384535, "30Rnd_65x39_caseless_mag_Tracer"}, // 0.29%
  4263. {5053.11075781664, "30Rnd_556x45_Stanag_Tracer_Green"}, // 0.29%
  4264. {5081.77578648167, "srifle_DMR_04_F"}, // 0.29%
  4265. {5110.4408151467, "srifle_DMR_04_Tan_F"}, // 0.29%
  4266. {5137.71354241943, "B_Carryall_oucamo"}, // 0.27%
  4267. {5164.98626969215, "B_Carryall_ocamo"}, // 0.27%
  4268. {5192.25899696488, "B_Carryall_mcamo"}, // 0.27%
  4269. {5219.53172423761, "SmokeShellOrange"}, // 0.27%
  4270. {5246.80445151033, "SmokeShellBlue"}, // 0.27%
  4271. {5273.471118177, "B_Bergen_blk"}, // 0.27%
  4272. {5300.13778484367, "B_Bergen_sgg"}, // 0.27%
  4273. {5326.80445151034, "B_Bergen_mcamo"}, // 0.27%
  4274. {5353.471118177, "B_Bergen_rgr"}, // 0.27%
  4275. {5378.92566363155, "SmokeShellPurple"}, // 0.25%
  4276. {5404.38020908609, "V_PlateCarrierSpec_rgr"}, // 0.25%
  4277. {5429.83475454064, "SmokeShellYellow"}, // 0.25%
  4278. {5455.28929999518, "SmokeShellGreen"}, // 0.25%
  4279. {5480.74384544973, "SmokeShell"}, // 0.25%
  4280. {5506.19839090427, "SmokeShellRed"}, // 0.25%
  4281. {5530.7684154743, "srifle_DMR_02_sniper_F"}, // 0.25%
  4282. {5555.33844004432, "srifle_DMR_02_camo_F"}, // 0.25%
  4283. {5579.90846461435, "srifle_DMR_02_F"}, // 0.25%
  4284. {5604.15088885677, "150Rnd_762x54_Box_Tracer"}, // 0.24%
  4285. {5628.39331309919, "5Rnd_127x108_APDS_Mag"}, // 0.24%
  4286. {5652.63573734162, "100Rnd_65x39_caseless_mag_Tracer"}, // 0.24%
  4287. {5676.27210097798, "V_PlateCarrierSpec_blk"}, // 0.24%
  4288. {5699.90846461435, "V_PlateCarrierSpec_mtp"}, // 0.24%
  4289. {5723.47748818337, "acc_flashlight"}, // 0.24%
  4290. {5745.51605567648, "CUP_lmg_M249_para"}, // 0.22%
  4291. {5767.5546231696, "CUP_lmg_Mk48_wdl"}, // 0.22%
  4292. {5789.59319066271, "CUP_lmg_PKM"}, // 0.22%
  4293. {5811.63175815582, "CUP_lmg_M249"}, // 0.22%
  4294. {5833.67032564894, "CUP_lmg_L110A1"}, // 0.22%
  4295. {5855.70889314205, "CUP_lmg_Pecheneg"}, // 0.22%
  4296. {5877.74746063516, "CUP_lmg_UK59"}, // 0.22%
  4297. {5899.78602812827, "CUP_lmg_L7A2"}, // 0.22%
  4298. {5921.82459562139, "CUP_lmg_M60E4"}, // 0.22%
  4299. {5943.8631631145, "CUP_lmg_M240"}, // 0.22%
  4300. {5965.90173060761, "CUP_lmg_Mk48_des"}, // 0.22%
  4301. {5987.7199124258, "V_PlateCarrierGL_blk"}, // 0.22%
  4302. {6009.53809424398, "V_PlateCarrierGL_mtp"}, // 0.22%
  4303. {6031.35627606216, "V_PlateCarrierGL_rgr"}, // 0.22%
  4304. {6053.17445788034, "V_PlateCarrierIAGL_dgtl"}, // 0.22%
  4305. {6074.99263969852, "V_PlateCarrierIAGL_oli"}, // 0.22%
  4306. {6095.59870030458, "V_RebreatherIA"}, // 0.21%
  4307. {6116.20476091065, "U_I_GhillieSuit"}, // 0.21%
  4308. {6136.40678111267, "CUP_hgun_Makarov"}, // 0.20%
  4309. {6156.60880131469, "CUP_hgun_Duty"}, // 0.20%
  4310. {6176.81082151671, "CUP_hgun_SA61"}, // 0.20%
  4311. {6197.01284171873, "CUP_hgun_Glock17"}, // 0.20%
  4312. {6217.21486192075, "CUP_hgun_M9"}, // 0.20%
  4313. {6237.41688212277, "CUP_hgun_TaurusTracker455_gold"}, // 0.20%
  4314. {6257.61890232479, "CUP_hgun_TaurusTracker455"}, // 0.20%
  4315. {6277.82092252681, "CUP_hgun_MicroUzi"}, // 0.20%
  4316. {6298.02294272883, "CUP_hgun_Phantom"}, // 0.20%
  4317. {6318.22496293085, "CUP_hgun_PB6P9"}, // 0.20%
  4318. {6338.42698313287, "CUP_hgun_Colt1911"}, // 0.20%
  4319. {6358.62900333489, "CUP_hgun_Compact"}, // 0.20%
  4320. {6378.73527936534, "arifle_Katiba_F"}, // 0.20%
  4321. {6398.73527936534, "V_RebreatherIR"}, // 0.20%
  4322. {6418.73527936534, "V_RebreatherB"}, // 0.20%
  4323. {6438.73527936534, "U_B_GhillieSuit"}, // 0.20%
  4324. {6458.73527936534, "U_O_GhillieSuit"}, // 0.20%
  4325. {6477.57654172991, "ItemWatch"}, // 0.19%
  4326. {6496.41780409449, "ItemRadio"}, // 0.19%
  4327. {6514.97067979023, "1Rnd_SmokeYellow_Grenade_shell"}, // 0.19%
  4328. {6533.52355548596, "1Rnd_SmokePurple_Grenade_shell"}, // 0.19%
  4329. {6552.07643118169, "1Rnd_SmokeRed_Grenade_shell"}, // 0.19%
  4330. {6570.62930687742, "1Rnd_SmokeOrange_Grenade_shell"}, // 0.19%
  4331. {6589.18218257316, "1Rnd_SmokeGreen_Grenade_shell"}, // 0.19%
  4332. {6607.73505826889, "1Rnd_SmokeBlue_Grenade_shell"}, // 0.19%
  4333. {6626.28793396462, "1Rnd_Smoke_Grenade_shell"}, // 0.19%
  4334. {6644.46975214644, "V_PlateCarrier2_rgr"}, // 0.18%
  4335. {6662.65157032826, "V_PlateCarrier3_rgr"}, // 0.18%
  4336. {6680.83338851008, "V_PlateCarrierGL_rgr"}, // 0.18%
  4337. {6699.01520669189, "V_PlateCarrierIA1_dgtl"}, // 0.18%
  4338. {6717.19702487371, "V_PlateCarrierIA2_dgtl"}, // 0.18%
  4339. {6735.37884305553, "V_PlateCarrierIAGL_dgtl"}, // 0.18%
  4340. {6753.56066123735, "V_PlateCarrierSpec_rgr"}, // 0.18%
  4341. {6771.74247941917, "V_PlateCarrier1_rgr"}, // 0.18%
  4342. {6789.92429760098, "V_PlateCarrier1_blk"}, // 0.18%
  4343. {6806.759314436, "muzzle_snds_B_khk_F"}, // 0.17%
  4344. {6823.59433127102, "muzzle_snds_M"}, // 0.17%
  4345. {6840.42934810604, "muzzle_snds_H"}, // 0.17%
  4346. {6857.26436494105, "optic_Arco"}, // 0.17%
  4347. {6874.09938177607, "optic_Hamr"}, // 0.17%
  4348. {6890.93439861109, "optic_Holosight"}, // 0.17%
  4349. {6907.7694154461, "muzzle_snds_H_MG_khk_F"}, // 0.17%
  4350. {6924.60443228112, "optic_MRCO"}, // 0.17%
  4351. {6941.43944911614, "acc_pointer_IR"}, // 0.17%
  4352. {6958.27446595116, "optic_DMS"}, // 0.17%
  4353. {6975.10948278617, "muzzle_snds_65_TI_blk_F"}, // 0.17%
  4354. {6991.94449962119, "muzzle_snds_58_wdm_F"}, // 0.17%
  4355. {7008.77951645621, "muzzle_snds_B_snd_F"}, // 0.17%
  4356. {7025.61453329122, "muzzle_snds_65_TI_hex_F"}, // 0.17%
  4357. {7042.44955012624, "muzzle_snds_65_TI_ghex_F"}, // 0.17%
  4358. {7059.28456696126, "muzzle_snds_H_MG_blk_F"}, // 0.17%
  4359. {7075.36958778562, "arifle_TRG21_F"}, // 0.16%
  4360. {7091.45460860997, "arifle_MX_F"}, // 0.16%
  4361. {7107.53962943433, "arifle_MXC_F"}, // 0.16%
  4362. {7123.62465025869, "arifle_TRG20_F"}, // 0.16%
  4363. {7139.70967108304, "arifle_Katiba_GL_F"}, // 0.16%
  4364. {7154.2551256285, "3Rnd_UGL_FlareGreen_F"}, // 0.15%
  4365. {7168.80058017395, "3Rnd_UGL_FlareRed_F"}, // 0.15%
  4366. {7183.34603471941, "3Rnd_UGL_FlareWhite_F"}, // 0.15%
  4367. {7197.89148926486, "3Rnd_UGL_FlareYellow_F"}, // 0.15%
  4368. {7212.43694381032, "SatchelCharge_Remote_Mag"}, // 0.15%
  4369. {7226.69719336469, "Exile_Item_InstaDoc"}, // 0.14%
  4370. {7240.771586586, "arifle_Mk20_F"}, // 0.14%
  4371. {7254.84597980731, "arifle_Mk20C_F"}, // 0.14%
  4372. {7267.57325253458, "V_HarnessOGL_gry"}, // 0.13%
  4373. {7280.30052526186, "V_BandollierB_khk"}, // 0.13%
  4374. {7293.02779798913, "V_BandollierB_cbr"}, // 0.13%
  4375. {7305.7550707164, "V_BandollierB_rgr"}, // 0.13%
  4376. {7318.48234344368, "V_HarnessOSpec_brn"}, // 0.13%
  4377. {7331.20961617095, "V_BandollierB_oli"}, // 0.13%
  4378. {7343.93688889822, "V_BandollierB_blk"}, // 0.13%
  4379. {7356.6641616255, "V_HarnessO_brn"}, // 0.13%
  4380. {7369.39143435277, "V_HarnessOGL_brn"}, // 0.13%
  4381. {7382.11870708004, "V_HarnessO_gry"}, // 0.13%
  4382. {7394.84597980731, "V_HarnessOSpec_gry"}, // 0.13%
  4383. {7407.4068213837, "ItemGPS"}, // 0.13%
  4384. {7419.96766296009, "Laserdesignator_02"}, // 0.13%
  4385. {7432.52850453647, "NVGoggles_INDEP"}, // 0.13%
  4386. {7445.08934611286, "NVGoggles_OPFOR"}, // 0.13%
  4387. {7457.65018768924, "Exile_Item_MobilePhone"}, // 0.13%
  4388. {7470.21102926563, "Laserdesignator_03"}, // 0.13%
  4389. {7482.77187084201, "Exile_Item_Wrench"}, // 0.13%
  4390. {7495.3327124184, "Exile_Item_Foolbox"}, // 0.13%
  4391. {7507.89355399478, "Exile_Item_CordlessScrewdriver"}, // 0.13%
  4392. {7520.45439557117, "Exile_Item_SleepingMat"}, // 0.13%
  4393. {7533.01523714755, "Exile_Item_FireExtinguisher"}, // 0.13%
  4394. {7545.57607872394, "Exile_Item_Hammer"}, // 0.13%
  4395. {7558.13692030033, "Exile_Item_OilCanister"}, // 0.13%
  4396. {7570.69776187671, "Binocular"}, // 0.13%
  4397. {7583.2586034531, "Exile_Item_Screwdriver"}, // 0.13%
  4398. {7595.81944502948, "Exile_Item_Shovel"}, // 0.13%
  4399. {7608.10445731449, "srifle_DMR_03_khaki_F"}, // 0.12%
  4400. {7620.38946959951, "srifle_DMR_03_tan_F"}, // 0.12%
  4401. {7632.67448188452, "srifle_DMR_03_F"}, // 0.12%
  4402. {7644.95949416953, "srifle_DMR_06_olive_F"}, // 0.12%
  4403. {7657.24450645454, "srifle_DMR_06_camo_F"}, // 0.12%
  4404. {7669.52951873956, "srifle_DMR_03_woodland_F"}, // 0.12%
  4405. {7681.65073086077, "CUP_srifle_SVD_wdl_ghillie"}, // 0.12%
  4406. {7693.77194298198, "130Rnd_338_Mag"}, // 0.12%
  4407. {7705.89315510319, "CUP_srifle_SVD_des"}, // 0.12%
  4408. {7718.0143672244, "CUP_srifle_DMR"}, // 0.12%
  4409. {7730.13557934562, "CUP_srifle_ksvk"}, // 0.12%
  4410. {7742.25679146683, "CUP_srifle_M110"}, // 0.12%
  4411. {7754.37800358804, "CUP_srifle_M14"}, // 0.12%
  4412. {7766.49921570925, "CUP_srifle_M24_des"}, // 0.12%
  4413. {7778.62042783046, "CUP_srifle_M24_wdl"}, // 0.12%
  4414. {7790.74163995168, "CUP_srifle_M24_ghillie"}, // 0.12%
  4415. {7802.86285207289, "CUP_srifle_SVD"}, // 0.12%
  4416. {7814.9840641941, "CUP_srifle_SVD_des_ghillie_pso"}, // 0.12%
  4417. {7827.10527631531, "CUP_srifle_VSSVintorez"}, // 0.12%
  4418. {7839.22648843652, "CUP_srifle_CZ750"}, // 0.12%
  4419. {7851.34770055774, "CUP_srifle_M40A3"}, // 0.12%
  4420. {7863.46891267895, "CUP_srifle_LeeEnfield"}, // 0.12%
  4421. {7875.59012480016, "CUP_srifle_CZ550"}, // 0.12%
  4422. {7887.71133692137, "CUP_srifle_AWM_wdl"}, // 0.12%
  4423. {7899.83254904258, "CUP_srifle_AWM_des"}, // 0.12%
  4424. {7911.9537611638, "CUP_srifle_AS50"}, // 0.12%
  4425. {7924.07497328501, "CUP_srifle_Mk12SPR"}, // 0.12%
  4426. {7936.19618540622, "U_IG_leader"}, // 0.12%
  4427. {7948.25995102449, "arifle_MXM_F"}, // 0.12%
  4428. {7960.32371664276, "arifle_SDAR_F"}, // 0.12%
  4429. {7971.34300038931, "CUP_acc_Flashlight_desert"}, // 0.11%
  4430. {7982.36228413587, "CUP_acc_Flashlight_wdl"}, // 0.11%
  4431. {7993.38156788242, "CUP_acc_Flashlight"}, // 0.11%
  4432. {8004.40085162898, "CUP_acc_ANPEQ_2"}, // 0.11%
  4433. {8015.42013537554, "CUP_acc_XM8_light_module"}, // 0.11%
  4434. {8026.43941912209, "CUP_acc_ANPEQ_15"}, // 0.11%
  4435. {8037.45870286865, "CUP_acc_Glock17_Flashlight"}, // 0.11%
  4436. {8048.47798661521, "CUP_acc_CZ_M3X"}, // 0.11%
  4437. {8059.49727036176, "CUP_acc_ANPEQ_2_camo"}, // 0.11%
  4438. {8070.51655410832, "CUP_acc_ANPEQ_2_grey"}, // 0.11%
  4439. {8081.53583785488, "CUP_acc_ANPEQ_2_desert"}, // 0.11%
  4440. {8090.62674694579, "V_Chestrig_rgr"}, // 0.09%
  4441. {8099.7176560367, "V_PlateCarrierL_CTRG"}, // 0.09%
  4442. {8108.8085651276, "V_PlateCarrierH_CTRG"}, // 0.09%
  4443. {8117.89947421851, "V_Chestrig_blk"}, // 0.09%
  4444. {8126.99038330942, "V_Chestrig_oli"}, // 0.09%
  4445. {8136.08129240033, "V_Chestrig_khk"}, // 0.09%
  4446. {8144.49880081784, "optic_NVS"}, // 0.08%
  4447. {8152.54131123002, "arifle_Mk20_GL_F"}, // 0.08%
  4448. {8160.5838216422, "arifle_MX_GL_F"}, // 0.08%
  4449. {8168.62633205438, "arifle_TRG21_GL_F"}, // 0.08%
  4450. {8176.04748233267, "3Rnd_Smoke_Grenade_shell"}, // 0.07%
  4451. {8183.46863261096, "3Rnd_SmokeGreen_Grenade_shell"}, // 0.07%
  4452. {8190.88978288925, "3Rnd_SmokeOrange_Grenade_shell"}, // 0.07%
  4453. {8198.31093316755, "3Rnd_SmokePurple_Grenade_shell"}, // 0.07%
  4454. {8205.73208344584, "3Rnd_SmokeRed_Grenade_shell"}, // 0.07%
  4455. {8213.15323372413, "3Rnd_SmokeYellow_Grenade_shell"}, // 0.07%
  4456. {8220.57438400243, "3Rnd_SmokeBlue_Grenade_shell"}, // 0.07%
  4457. {8227.84711127515, "U_I_FullGhillie_sard"}, // 0.07%
  4458. {8235.11983854788, "H_MilCap_mcamo"}, // 0.07%
  4459. {8242.39256582061, "H_MilCap_rucamo"}, // 0.07%
  4460. {8249.66529309334, "H_Booniehat_khk"}, // 0.07%
  4461. {8256.93802036607, "H_Booniehat_indp"}, // 0.07%
  4462. {8264.21074763879, "H_Booniehat_mcamo"}, // 0.07%
  4463. {8271.48347491152, "H_Booniehat_grn"}, // 0.07%
  4464. {8278.75620218425, "H_MilCap_dgtl"}, // 0.07%
  4465. {8286.02892945698, "H_Booniehat_dirty"}, // 0.07%
  4466. {8293.30165672971, "H_Booniehat_dgtl"}, // 0.07%
  4467. {8300.57438400243, "H_Booniehat_khk_hs"}, // 0.07%
  4468. {8307.84711127516, "H_Booniehat_tan"}, // 0.07%
  4469. {8315.11983854789, "H_MilCap_blue"}, // 0.07%
  4470. {8322.39256582062, "H_MilCap_ocamo"}, // 0.07%
  4471. {8329.66529309335, "H_MilCap_oucamo"}, // 0.07%
  4472. {8336.39929982735, "CUP_muzzle_snds_L85"}, // 0.07%
  4473. {8343.13330656136, "CUP_muzzle_snds_G36_desert"}, // 0.07%
  4474. {8349.86731329536, "CUP_muzzle_snds_G36_black"}, // 0.07%
  4475. {8356.60132002937, "CUP_muzzle_snds_XM8"}, // 0.07%
  4476. {8363.33532676338, "CUP_muzzle_mfsup_SCAR_H"}, // 0.07%
  4477. {8370.06933349738, "CUP_muzzle_snds_SCAR_H"}, // 0.07%
  4478. {8376.80334023139, "CUP_muzzle_PBS4"}, // 0.07%
  4479. {8383.5373469654, "CUP_muzzle_Bizon"}, // 0.07%
  4480. {8390.2713536994, "CUP_muzzle_snds_M110"}, // 0.07%
  4481. {8397.00536043341, "CUP_muzzle_snds_M16"}, // 0.07%
  4482. {8403.73936716742, "CUP_muzzle_mfsup_SCAR_L"}, // 0.07%
  4483. {8410.47337390142, "CUP_muzzle_snds_SCAR_L"}, // 0.07%
  4484. {8417.20738063543, "CUP_muzzle_snds_MicroUzi"}, // 0.07%
  4485. {8423.94138736944, "CUP_muzzle_snds_M9"}, // 0.07%
  4486. {8430.67539410344, "CUP_muzzle_snds_M14"}, // 0.07%
  4487. {8437.40940083745, "CUP_muzzle_snds_AWM"}, // 0.07%
  4488. {8444.14340757146, "CUP_muzzle_snds_M16_camo"}, // 0.07%
  4489. {8450.87741430546, "CUP_muzzle_PB6P9"}, // 0.07%
  4490. {8457.54408097213, "U_B_FullGhillie_ard"}, // 0.07%
  4491. {8464.21074763879, "U_B_FullGhillie_lsh"}, // 0.07%
  4492. {8470.87741430546, "U_B_FullGhillie_sard"}, // 0.07%
  4493. {8477.54408097213, "U_O_FullGhillie_lsh"}, // 0.07%
  4494. {8484.21074763879, "U_O_FullGhillie_sard"}, // 0.07%
  4495. {8490.87741430546, "U_O_FullGhillie_ard"}, // 0.07%
  4496. {8497.54408097212, "U_I_FullGhillie_lsh"}, // 0.07%
  4497. {8504.21074763879, "U_I_FullGhillie_ard"}, // 0.07%
  4498. {8510.44960681883, "U_B_CombatUniform_mcam_tshirt"}, // 0.06%
  4499. {8516.68846599886, "U_B_CombatUniform_mcam_vest"}, // 0.06%
  4500. {8522.9273251789, "U_B_CombatUniform_mcam_worn"}, // 0.06%
  4501. {8529.16618435893, "U_B_CTRG_3"}, // 0.06%
  4502. {8535.40504353897, "U_B_CTRG_2"}, // 0.06%
  4503. {8541.643902719, "U_B_CTRG_1"}, // 0.06%
  4504. {8547.70450877961, "U_I_G_resistanceLeader_F"}, // 0.06%
  4505. {8553.73639158874, "arifle_SPAR_02_khk_F"}, // 0.06%
  4506. {8559.76827439787, "arifle_SPAR_02_snd_F"}, // 0.06%
  4507. {8565.80015720701, "arifle_SPAR_02_blk_F"}, // 0.06%
  4508. {8571.83204001614, "arifle_SPAR_03_khk_F"}, // 0.06%
  4509. {8577.86392282527, "arifle_SPAR_01_GL_khk_F"}, // 0.06%
  4510. {8583.89580563441, "arifle_SPAR_03_blk_F"}, // 0.06%
  4511. {8589.92768844354, "arifle_SPAR_01_GL_snd_F"}, // 0.06%
  4512. {8595.95957125267, "arifle_SPAR_03_snd_F"}, // 0.06%
  4513. {8601.99145406181, "Exile_Weapon_TaurusGold"}, // 0.06%
  4514. {8608.02333687094, "Exile_Weapon_AK107_GL"}, // 0.06%
  4515. {8614.05521968007, "Exile_Weapon_M1014"}, // 0.06%
  4516. {8620.08710248921, "Exile_Weapon_CZ550"}, // 0.06%
  4517. {8626.11898529834, "Exile_Weapon_SVD"}, // 0.06%
  4518. {8632.15086810747, "Exile_Weapon_SVDCamo"}, // 0.06%
  4519. {8638.18275091661, "Exile_Weapon_VSSVintorez"}, // 0.06%
  4520. {8644.21463372574, "arifle_SPAR_01_GL_blk_F"}, // 0.06%
  4521. {8650.24651653487, "Exile_Weapon_AK74"}, // 0.06%
  4522. {8656.278399344, "arifle_SPAR_01_snd_F"}, // 0.06%
  4523. {8662.31028215314, "Exile_Weapon_Taurus"}, // 0.06%
  4524. {8668.34216496227, "arifle_SPAR_01_blk_F"}, // 0.06%
  4525. {8674.3740477714, "arifle_MX_Black_F"}, // 0.06%
  4526. {8680.40593058054, "arifle_MX_GL_Black_F"}, // 0.06%
  4527. {8686.43781338967, "arifle_AK12_F"}, // 0.06%
  4528. {8692.4696961988, "arifle_AK12_GL_F"}, // 0.06%
  4529. {8698.50157900794, "arifle_SPAR_01_khk_F"}, // 0.06%
  4530. {8704.53346181707, "arifle_AKM_F"}, // 0.06%
  4531. {8710.5653446262, "arifle_AKM_FL_F"}, // 0.06%
  4532. {8716.59722743534, "arifle_AKS_F"}, // 0.06%
  4533. {8722.62911024447, "arifle_MXC_Black_F"}, // 0.06%
  4534. {8728.6609930536, "arifle_ARX_ghex_F"}, // 0.06%
  4535. {8734.69287586273, "arifle_ARX_blk_F"}, // 0.06%
  4536. {8740.72475867187, "arifle_CTAR_blk_F"}, // 0.06%
  4537. {8746.756641481, "arifle_CTAR_GL_blk_F"}, // 0.06%
  4538. {8752.78852429013, "arifle_CTARS_blk_F"}, // 0.06%
  4539. {8758.82040709927, "arifle_MX_GL_khk_F"}, // 0.06%
  4540. {8764.8522899084, "arifle_MX_khk_F"}, // 0.06%
  4541. {8770.88417271753, "arifle_MX_SW_khk_F"}, // 0.06%
  4542. {8776.91605552667, "arifle_MXC_khk_F"}, // 0.06%
  4543. {8782.9479383358, "arifle_MXM_khk_F"}, // 0.06%
  4544. {8788.97982114493, "arifle_ARX_hex_F"}, // 0.06%
  4545. {8795.01170395407, "arifle_MXM_Black_F"}, // 0.06%
  4546. {8800.46624940861, "H_Cap_tan_specops_US"}, // 0.05%
  4547. {8805.92079486316, "H_Cap_khaki_specops_UK"}, // 0.05%
  4548. {8811.3753403177, "H_Watchcap_blk"}, // 0.05%
  4549. {8816.82988577225, "H_Watchcap_khk"}, // 0.05%
  4550. {8822.2844312268, "H_HelmetSpecB_paint2"}, // 0.05%
  4551. {8827.73897668134, "H_HelmetB_paint"}, // 0.05%
  4552. {8833.19352213589, "H_HelmetB_light"}, // 0.05%
  4553. {8838.64806759043, "H_HelmetB_plain_blk"}, // 0.05%
  4554. {8844.10261304498, "H_HelmetSpecB"}, // 0.05%
  4555. {8849.55715849953, "H_HelmetSpecB_paint1"}, // 0.05%
  4556. {8855.01170395407, "H_Cap_brn_SPECOPS"}, // 0.05%
  4557. {8860.46624940862, "H_HelmetSpecB_blk"}, // 0.05%
  4558. {8865.92079486316, "H_HelmetIA"}, // 0.05%
  4559. {8871.37534031771, "H_HelmetB"}, // 0.05%
  4560. {8876.82988577225, "H_Hat_camo"}, // 0.05%
  4561. {8882.2844312268, "H_BandMask_blk"}, // 0.05%
  4562. {8887.73897668135, "H_Bandanna_camo"}, // 0.05%
  4563. {8893.19352213589, "V_I_G_resistanceLeader_F"}, // 0.05%
  4564. {8898.64806759044, "H_Bandanna_khk"}, // 0.05%
  4565. {8904.10261304498, "H_Bandanna_khk_hs"}, // 0.05%
  4566. {8909.55715849953, "H_Bandanna_cbr"}, // 0.05%
  4567. {8915.01170395408, "H_Bandanna_mcamo"}, // 0.05%
  4568. {8920.46624940862, "H_Bandanna_sgg"}, // 0.05%
  4569. {8925.92079486317, "H_Bandanna_gry"}, // 0.05%
  4570. {8930.83479977717, "CUP_arifle_AKM"}, // 0.05%
  4571. {8935.74880469118, "CUP_arifle_AKS"}, // 0.05%
  4572. {8940.66280960518, "CUP_arifle_G36C"}, // 0.05%
  4573. {8945.57681451919, "CUP_arifle_AKS_Gold"}, // 0.05%
  4574. {8950.49081943319, "CUP_arifle_RPK74"}, // 0.05%
  4575. {8955.40482434719, "CUP_arifle_M4A1_camo"}, // 0.05%
  4576. {8960.3188292612, "CUP_arifle_G36A"}, // 0.05%
  4577. {8965.2328341752, "CUP_arifle_FNFAL"}, // 0.05%
  4578. {8970.14683908921, "CUP_arifle_AK74_GL"}, // 0.05%
  4579. {8975.06084400321, "CUP_arifle_AKS74U"}, // 0.05%
  4580. {8979.97484891721, "CUP_arifle_AK107"}, // 0.05%
  4581. {8984.88885383122, "CUP_arifle_CZ805_A2"}, // 0.05%
  4582. {8989.80285874522, "CUP_arifle_AK74_GL_kobra"}, // 0.05%
  4583. {8994.71686365923, "CUP_arifle_G36C_camo"}, // 0.05%
  4584. {8999.63086857323, "CUP_arifle_AK74"}, // 0.05%
  4585. {9004.54487348724, "CUP_arifle_MG36_camo"}, // 0.05%
  4586. {9009.45887840124, "CUP_arifle_MG36"}, // 0.05%
  4587. {9014.37288331524, "CUP_arifle_G36A_camo"}, // 0.05%
  4588. {9019.28688822925, "CUP_arifle_G36K"}, // 0.05%
  4589. {9024.20089314325, "CUP_arifle_G36K_camo"}, // 0.05%
  4590. {9029.11489805726, "CUP_arifle_AKS74"}, // 0.05%
  4591. {9034.02890297126, "CUP_arifle_M4A1"}, // 0.05%
  4592. {9038.94290788526, "CUP_arifle_Sa58V"}, // 0.05%
  4593. {9043.85691279927, "CUP_arifle_M16A2_GL"}, // 0.05%
  4594. {9048.77091771327, "CUP_arifle_CZ805_B"}, // 0.05%
  4595. {9053.68492262728, "CUP_arifle_XM8_Carbine"}, // 0.05%
  4596. {9058.59892754128, "CUP_arifle_XM8_Carbine_FG"}, // 0.05%
  4597. {9063.51293245529, "CUP_arifle_XM8_Carbine_GL"}, // 0.05%
  4598. {9068.42693736929, "CUP_arifle_XM8_Railed"}, // 0.05%
  4599. {9073.34094228329, "CUP_arifle_XM8_Compact"}, // 0.05%
  4600. {9078.2549471973, "CUP_arifle_M16A4_Base"}, // 0.05%
  4601. {9083.1689521113, "CUP_arifle_xm8_SAW"}, // 0.05%
  4602. {9088.08295702531, "CUP_arifle_Mk16_CQC"}, // 0.05%
  4603. {9092.99696193931, "CUP_arifle_Sa58P"}, // 0.05%
  4604. {9097.91096685331, "CUP_arifle_XM8_Compact_Rail"}, // 0.05%
  4605. {9102.82497176732, "CUP_arifle_Mk20"}, // 0.05%
  4606. {9107.73897668132, "CUP_arifle_Mk17_STD_EGLM"}, // 0.05%
  4607. {9112.65298159533, "CUP_arifle_M16A4_GL"}, // 0.05%
  4608. {9117.56698650933, "CUP_arifle_xm8_sharpshooter"}, // 0.05%
  4609. {9122.48099142334, "CUP_arifle_Mk17_STD_FG"}, // 0.05%
  4610. {9127.39499633734, "CUP_arifle_CZ805_B_GL"}, // 0.05%
  4611. {9132.30900125134, "CUP_arifle_CZ805_A1"}, // 0.05%
  4612. {9137.22300616535, "CUP_arifle_Sa58RIS1"}, // 0.05%
  4613. {9142.13701107935, "CUP_arifle_Sa58RIS1_des"}, // 0.05%
  4614. {9147.05101599336, "CUP_arifle_AK107_GL"}, // 0.05%
  4615. {9151.96502090736, "CUP_arifle_FNFAL_railed"}, // 0.05%
  4616. {9156.87902582136, "CUP_arifle_L86A2"}, // 0.05%
  4617. {9161.79303073537, "CUP_arifle_L85A2_GL"}, // 0.05%
  4618. {9166.70703564937, "CUP_arifle_CZ805_GL"}, // 0.05%
  4619. {9171.62104056338, "CUP_arifle_L85A2"}, // 0.05%
  4620. {9176.53504547738, "CUP_arifle_M4A1_black"}, // 0.05%
  4621. {9181.44905039139, "CUP_arifle_M4A1_BUIS_desert_GL"}, // 0.05%
  4622. {9186.36305530539, "CUP_arifle_M4A1_BUIS_camo_GL"}, // 0.05%
  4623. {9191.27706021939, "CUP_arifle_M4A1_BUIS_GL"}, // 0.05%
  4624. {9196.1910651334, "CUP_arifle_Sa58RIS2"}, // 0.05%
  4625. {9201.1050700474, "CUP_arifle_Sa58RIS2_camo"}, // 0.05%
  4626. {9206.01907496141, "CUP_arifle_M4A1_desert"}, // 0.05%
  4627. {9210.93307987541, "CUP_arifle_Mk17_STD"}, // 0.05%
  4628. {9215.84708478942, "CUP_arifle_Mk17_STD_SFG"}, // 0.05%
  4629. {9220.76108970342, "CUP_arifle_Mk17_CQC_EGLM"}, // 0.05%
  4630. {9225.67509461742, "CUP_arifle_M16A2"}, // 0.05%
  4631. {9230.58909953143, "CUP_arifle_Mk16_CQC_FG"}, // 0.05%
  4632. {9235.50310444543, "CUP_arifle_Mk16_CQC_SFG"}, // 0.05%
  4633. {9240.41710935944, "CUP_arifle_Mk16_CQC_EGLM"}, // 0.05%
  4634. {9245.33111427344, "CUP_arifle_Mk16_STD"}, // 0.05%
  4635. {9250.24511918744, "CUP_arifle_Mk16_STD_FG"}, // 0.05%
  4636. {9255.15912410145, "CUP_arifle_Mk16_STD_EGLM"}, // 0.05%
  4637. {9260.07312901545, "CUP_arifle_Mk16_SV"}, // 0.05%
  4638. {9264.98713392946, "CUP_arifle_Mk17_CQC"}, // 0.05%
  4639. {9269.90113884346, "CUP_arifle_Sa58P_des"}, // 0.05%
  4640. {9274.81514375747, "CUP_arifle_Mk16_STD_SFG"}, // 0.05%
  4641. {9279.72914867147, "CUP_arifle_Sa58V_camo"}, // 0.05%
  4642. {9284.64315358547, "CUP_arifle_Mk17_CQC_SFG"}, // 0.05%
  4643. {9289.55715849948, "CUP_arifle_Mk17_CQC_FG"}, // 0.05%
  4644. {9294.01348648522, "U_B_CombatUniform_mcam"}, // 0.04%
  4645. {9297.64985012158, "H_HelmetB_light_sand"}, // 0.04%
  4646. {9301.28621375795, "H_HelmetB_light_black"}, // 0.04%
  4647. {9304.92257739431, "H_HelmetB_light_desert"}, // 0.04%
  4648. {9308.55894103067, "H_HelmetB_light_snakeskin"}, // 0.04%
  4649. {9312.19530466704, "H_HelmetB_light_grass"}, // 0.04%
  4650. {9315.8316683034, "H_HelmetB_sand"}, // 0.04%
  4651. {9319.46803193976, "H_HelmetB_black"}, // 0.04%
  4652. {9323.10439557613, "H_HelmetB_desert"}, // 0.04%
  4653. {9326.74075921249, "H_HelmetB_snakeskin"}, // 0.04%
  4654. {9330.37712284886, "H_HelmetB_grass"}, // 0.04%
  4655. {9334.01348648522, "H_HelmetIA_camo"}, // 0.04%
  4656. {9337.64985012158, "H_HelmetIA_net"}, // 0.04%
  4657. {9341.28621375795, "H_Watchcap_sgg"}, // 0.04%
  4658. {9344.92257739431, "H_Watchcap_camo"}, // 0.04%
  4659. {9348.55894103068, "H_TurbanO_blk"}, // 0.04%
  4660. {9352.19530466704, "H_Shemag_khk"}, // 0.04%
  4661. {9355.8316683034, "H_Shemag_tan"}, // 0.04%
  4662. {9359.46803193977, "H_Shemag_olive"}, // 0.04%
  4663. {9363.10439557613, "H_Shemag_olive_hs"}, // 0.04%
  4664. {9366.7407592125, "H_ShemagOpen_khk"}, // 0.04%
  4665. {9370.37712284886, "H_BandMask_demon"}, // 0.04%
  4666. {9374.01348648522, "H_BandMask_reaper"}, // 0.04%
  4667. {9377.64985012159, "H_ShemagOpen_tan"}, // 0.04%
  4668. {9381.28621375795, "H_BandMask_khk"}, // 0.04%
  4669. {9384.85127614654, "U_I_HeliPilotCoveralls"}, // 0.04%
  4670. {9388.41633853514, "U_B_HeliPilotCoveralls"}, // 0.04%
  4671. {9391.98140092373, "U_I_pilotCoveralls"}, // 0.04%
  4672. {9395.54646331232, "U_I_CombatUniform"}, // 0.04%
  4673. {9399.11152570091, "U_I_CombatUniform_tshirt"}, // 0.04%
  4674. {9402.67658808951, "U_I_CombatUniform_shortsleeve"}, // 0.04%
  4675. {9406.2416504781, "U_O_PilotCoveralls"}, // 0.04%
  4676. {9409.80671286669, "U_B_PilotCoveralls"}, // 0.04%
  4677. {9412.83701589699, "CUP_optic_AN_PVS_4"}, // 0.03%
  4678. {9415.8673189273, "CUP_optic_AN_PVS_10"}, // 0.03%
  4679. {9418.8976219576, "CUP_optic_LeupoldMk4"}, // 0.03%
  4680. {9421.92792498791, "CUP_optic_LeupoldM3LR"}, // 0.03%
  4681. {9424.95822801821, "CUP_optic_LeupoldMk4_CQ_T"}, // 0.03%
  4682. {9427.98853104851, "CUP_optic_LeupoldMk4_MRT_tan"}, // 0.03%
  4683. {9431.01883407882, "CUP_optic_LeupoldMk4_10x40_LRT_Desert"}, // 0.03%
  4684. {9434.04913710912, "CUP_optic_LeupoldMk4_10x40_LRT_Woodland"}, // 0.03%
  4685. {9437.07944013943, "CUP_optic_ELCAN_SpecterDR"}, // 0.03%
  4686. {9440.10974316973, "CUP_optic_ElcanM145"}, // 0.03%
  4687. {9443.14004620003, "CUP_optic_AN_PAS_13c2"}, // 0.03%
  4688. {9446.17034923034, "CUP_optic_SB_11_4x20_PM"}, // 0.03%
  4689. {9449.20065226064, "CUP_optic_ZDDot"}, // 0.03%
  4690. {9452.23095529094, "CUP_optic_MRad"}, // 0.03%
  4691. {9455.26125832125, "CUP_optic_TrijiconRx01_black"}, // 0.03%
  4692. {9458.29156135155, "CUP_optic_TrijiconRx01_desert"}, // 0.03%
  4693. {9461.32186438186, "CUP_optic_Leupold_VX3"}, // 0.03%
  4694. {9464.35216741216, "CUP_optic_SB_3_12x50_PMII"}, // 0.03%
  4695. {9467.38247044246, "CUP_optic_AN_PAS_13c1"}, // 0.03%
  4696. {9470.41277347277, "CUP_optic_CompM2_Desert"}, // 0.03%
  4697. {9473.44307650307, "CUP_optic_ACOG"}, // 0.03%
  4698. {9476.47337953338, "CUP_optic_PSO_1"}, // 0.03%
  4699. {9479.50368256368, "CUP_optic_PSO_3"}, // 0.03%
  4700. {9482.53398559398, "CUP_optic_Kobra"}, // 0.03%
  4701. {9485.56428862429, "CUP_optic_NSPU"}, // 0.03%
  4702. {9488.59459165459, "CUP_optic_PechenegScope"}, // 0.03%
  4703. {9491.6248946849, "CUP_optic_HoloBlack"}, // 0.03%
  4704. {9494.6551977152, "CUP_optic_HoloWdl"}, // 0.03%
  4705. {9497.6855007455, "CUP_optic_HoloDesert"}, // 0.03%
  4706. {9500.71580377581, "CUP_optic_GOSHAWK"}, // 0.03%
  4707. {9503.74610680611, "CUP_optic_Eotech533Grey"}, // 0.03%
  4708. {9506.77640983642, "CUP_optic_CompM4"}, // 0.03%
  4709. {9509.80671286672, "CUP_optic_SUSAT"}, // 0.03%
  4710. {9512.83701589702, "CUP_optic_CWS"}, // 0.03%
  4711. {9515.86731892733, "CUP_optic_RCO"}, // 0.03%
  4712. {9518.89762195763, "CUP_optic_RCO_desert"}, // 0.03%
  4713. {9521.92792498793, "CUP_optic_CompM2_Woodland2"}, // 0.03%
  4714. {9524.95822801824, "CUP_optic_CompM2_Woodland"}, // 0.03%
  4715. {9527.98853104854, "CUP_optic_Eotech533"}, // 0.03%
  4716. {9531.01883407885, "CUP_optic_CompM2_Black"}, // 0.03%
  4717. {9533.85974316976, "CUP_8Rnd_B_Beneli_74Slug"}, // 0.03%
  4718. {9536.70065226067, "CUP_8Rnd_9x18_MakarovSD_M"}, // 0.03%
  4719. {9539.54156135158, "CUP_8Rnd_9x18_Makarov_M"}, // 0.03%
  4720. {9542.38247044249, "CUP_7Rnd_45ACP_1911"}, // 0.03%
  4721. {9545.2233795334, "CUP_75Rnd_TE4_LRT4_Green_Tracer_545x39_RPK_M"}, // 0.03%
  4722. {9548.06428862431, "CUP_6Rnd_45ACP_M"}, // 0.03%
  4723. {9550.90519771522, "CUP_5Rnd_762x51_M24"}, // 0.03%
  4724. {9553.74610680613, "CUP_5x_22_LR_17_HMR_M"}, // 0.03%
  4725. {9556.58701589704, "CUP_5Rnd_86x70_L115A1"}, // 0.03%
  4726. {9559.42792498795, "CUP_5Rnd_127x99_as50_M"}, // 0.03%
  4727. {9562.26883407886, "CUP_50Rnd_UK59_762x54R_Tracer"}, // 0.03%
  4728. {9565.10974316977, "CUP_5Rnd_127x108_KSVK_M"}, // 0.03%
  4729. {9567.95065226068, "CUP_64Rnd_9x19_Bizon_M"}, // 0.03%
  4730. {9570.79156135159, "CUP_8Rnd_B_Saiga12_74Slug_M"}, // 0.03%
  4731. {9573.6324704425, "CUP_6Rnd_HE_M203"}, // 0.03%
  4732. {9576.47337953341, "CUP_HandGrenade_L109A1_HE"}, // 0.03%
  4733. {9579.31428862431, "CUP_Dragon_EP1_M"}, // 0.03%
  4734. {9582.15519771522, "CUP_FlareGreen_M203"}, // 0.03%
  4735. {9584.99610680613, "CUP_FlareRed_GP25_M"}, // 0.03%
  4736. {9587.83701589704, "CUP_FlareWhite_GP25_M"}, // 0.03%
  4737. {9590.67792498795, "CUP_FlareWhite_M203"}, // 0.03%
  4738. {9593.51883407886, "CUP_HandGrenade_RGD5"}, // 0.03%
  4739. {9596.35974316977, "CUP_HandGrenade_M67"}, // 0.03%
  4740. {9599.20065226068, "CUP_1Rnd_HE_M203"}, // 0.03%
  4741. {9602.04156135159, "CUP_Mine_M"}, // 0.03%
  4742. {9604.8824704425, "CUP_PipeBomb_M"}, // 0.03%
  4743. {9607.72337953341, "CUP_6Rnd_Smoke_M203"}, // 0.03%
  4744. {9610.56428862432, "CUP_30Rnd_9x19_MP5"}, // 0.03%
  4745. {9613.40519771523, "CUP_AT13_M"}, // 0.03%
  4746. {9616.24610680614, "CUP_30Rnd_Sa58_M"}, // 0.03%
  4747. {9619.08701589705, "CUP_30Rnd_545x39_AK_M"}, // 0.03%
  4748. {9621.92792498796, "CUP_30Rnd_556x45_Stanag"}, // 0.03%
  4749. {9624.76883407887, "CUP_1Rnd_HEDP_M203"}, // 0.03%
  4750. {9627.60974316978, "CUP_1Rnd_HE_GP25_M"}, // 0.03%
  4751. {9630.45065226069, "CUP_18Rnd_9x19_Phantom"}, // 0.03%
  4752. {9633.2915613516, "CUP_17Rnd_9x19_glock17"}, // 0.03%
  4753. {9636.13247044251, "CUP_15Rnd_9x19_M9"}, // 0.03%
  4754. {9638.97337953342, "CUP_10x_303_M"}, // 0.03%
  4755. {9641.81428862433, "CUP_1Rnd_SMOKE_GP25_M"}, // 0.03%
  4756. {9644.65519771524, "CUP_10Rnd_9x19_Compact"}, // 0.03%
  4757. {9647.49610680615, "CUP_10Rnd_762x51_CZ750"}, // 0.03%
  4758. {9650.33701589706, "CUP_100Rnd_TE4_LRT4_762x54_PK_Tracer_Green_M"}, // 0.03%
  4759. {9653.17792498797, "CUP_100Rnd_TE4_LRT4_Red_Tracer_762x51_Belt_M"}, // 0.03%
  4760. {9656.01883407888, "CUP_100Rnd_TE4_Green_Tracer_556x45_M249"}, // 0.03%
  4761. {9658.85974316979, "CUP_100Rnd_556x45_BetaCMag"}, // 0.03%
  4762. {9661.7006522607, "CUP_30Rnd_762x39_AK47_M"}, // 0.03%
  4763. {9664.54156135161, "CUP_10Rnd_762x54_SVD_M"}, // 0.03%
  4764. {9667.38247044252, "CUP_1Rnd_Smoke_M203"}, // 0.03%
  4765. {9670.22337953343, "CUP_10Rnd_9x39_SP5_VSS_M"}, // 0.03%
  4766. {9673.06428862434, "CUP_1Rnd_SmokeRed_M203"}, // 0.03%
  4767. {9675.90519771525, "CUP_30Rnd_556x45_G36"}, // 0.03%
  4768. {9678.74610680616, "CUP_1Rnd_SmokeGreen_M203"}, // 0.03%
  4769. {9681.58701589707, "CUP_20Rnd_B_AA12_HE"}, // 0.03%
  4770. {9684.42792498798, "CUP_20Rnd_B_AA12_74Slug"}, // 0.03%
  4771. {9687.26883407889, "CUP_30Rnd_9x19_EVO"}, // 0.03%
  4772. {9690.1097431698, "CUP_20Rnd_762x51_CZ805B"}, // 0.03%
  4773. {9692.95065226071, "CUP_20Rnd_762x51_B_M110"}, // 0.03%
  4774. {9695.79156135162, "CUP_20Rnd_B_AA12_Pellets"}, // 0.03%
  4775. {9698.63247044253, "CUP_20Rnd_762x51_B_SCAR"}, // 0.03%
  4776. {9701.47337953344, "CUP_20Rnd_762x51_FNFAL_M"}, // 0.03%
  4777. {9704.31428862435, "CUP_20Rnd_762x51_DMR"}, // 0.03%
  4778. {9707.15519771526, "CUP_200Rnd_TE4_Green_Tracer_556x45_M249"}, // 0.03%
  4779. {9709.99610680617, "CUP_200Rnd_TE4_Green_Tracer_556x45_L110A1"}, // 0.03%
  4780. {9712.83701589708, "CUP_1Rnd_SmokeYellow_M203"}, // 0.03%
  4781. {9715.51081268852, "U_I_C_Soldier_Bandit_3_F"}, // 0.03%
  4782. {9718.18460947997, "U_C_man_sport_2_F"}, // 0.03%
  4783. {9720.85840627141, "U_C_man_sport_1_F"}, // 0.03%
  4784. {9723.53220306285, "U_I_C_Soldier_Camo_F"}, // 0.03%
  4785. {9726.2059998543, "U_I_C_Soldier_Bandit_5_F"}, // 0.03%
  4786. {9728.87979664574, "U_I_C_Soldier_Bandit_4_F"}, // 0.03%
  4787. {9731.55359343718, "U_C_man_sport_3_F"}, // 0.03%
  4788. {9734.22739022863, "U_I_C_Soldier_Bandit_2_F"}, // 0.03%
  4789. {9736.90118702007, "U_I_C_Soldier_Para_1_F"}, // 0.03%
  4790. {9739.57498381151, "U_I_C_Soldier_Para_5_F"}, // 0.03%
  4791. {9742.24878060296, "U_I_C_Soldier_Para_4_F"}, // 0.03%
  4792. {9744.9225773944, "U_I_C_Soldier_Para_3_F"}, // 0.03%
  4793. {9747.59637418584, "U_I_C_Soldier_Para_2_F"}, // 0.03%
  4794. {9750.27017097729, "B_Bergen_dgtl_F"}, // 0.03%
  4795. {9752.94396776873, "U_O_V_Soldier_Viper_hex_F"}, // 0.03%
  4796. {9755.61776456017, "U_C_Man_casual_1_F"}, // 0.03%
  4797. {9758.29156135162, "U_I_C_Soldier_Bandit_1_F"}, // 0.03%
  4798. {9760.96535814306, "U_C_Man_casual_2_F"}, // 0.03%
  4799. {9763.6391549345, "B_FieldPack_ghex_F"}, // 0.03%
  4800. {9766.31295172595, "U_C_Man_casual_4_F"}, // 0.03%
  4801. {9768.98674851739, "U_O_V_Soldier_Viper_F"}, // 0.03%
  4802. {9771.66054530883, "B_AssaultPack_tna_F"}, // 0.03%
  4803. {9774.33434210028, "B_Carryall_ghex_F"}, // 0.03%
  4804. {9777.00813889172, "B_ViperHarness_blk_F"}, // 0.03%
  4805. {9779.68193568316, "B_ViperHarness_ghex_F"}, // 0.03%
  4806. {9782.35573247461, "B_ViperHarness_khk_F"}, // 0.03%
  4807. {9785.02952926605, "B_ViperHarness_oli_F"}, // 0.03%
  4808. {9787.70332605749, "B_ViperLightHarness_ghex_F"}, // 0.03%
  4809. {9790.37712284894, "B_ViperLightHarness_oli_F"}, // 0.03%
  4810. {9793.05091964038, "B_ViperLightHarness_hex_F"}, // 0.03%
  4811. {9795.72471643182, "B_ViperLightHarness_blk_F"}, // 0.03%
  4812. {9798.39851322326, "B_ViperLightHarness_khk_F"}, // 0.03%
  4813. {9801.07231001471, "U_B_CTRG_Soldier_urb_3_F"}, // 0.03%
  4814. {9803.74610680615, "U_B_CTRG_Soldier_urb_2_F"}, // 0.03%
  4815. {9806.41990359759, "U_B_CTRG_Soldier_urb_1_F"}, // 0.03%
  4816. {9809.09370038904, "U_C_Man_casual_6_F"}, // 0.03%
  4817. {9811.76749718048, "U_C_Man_casual_5_F"}, // 0.03%
  4818. {9814.44129397192, "U_C_Man_casual_3_F"}, // 0.03%
  4819. {9817.11509076337, "U_O_T_FullGhillie_tna_F"}, // 0.03%
  4820. {9819.78888755481, "V_PlateCarrier1_tna_F"}, // 0.03%
  4821. {9822.46268434625, "U_O_T_Officer_F"}, // 0.03%
  4822. {9825.1364811377, "H_HelmetB_Enh_tna_F"}, // 0.03%
  4823. {9827.81027792914, "H_HelmetB_tna_F"}, // 0.03%
  4824. {9830.48407472058, "H_HelmetB_TI_tna_F"}, // 0.03%
  4825. {9833.15787151203, "H_Helmet_Skate"}, // 0.03%
  4826. {9835.83166830347, "B_Bergen_mcamo_F"}, // 0.03%
  4827. {9838.50546509491, "V_PlateCarrier2_rgr_noflag_F"}, // 0.03%
  4828. {9841.17926188636, "V_PlateCarrier1_rgr_noflag_F"}, // 0.03%
  4829. {9843.8530586778, "V_TacVest_gen_F"}, // 0.03%
  4830. {9846.52685546924, "V_BandollierB_ghex_F"}, // 0.03%
  4831. {9849.20065226069, "V_HarnessOGL_ghex_F"}, // 0.03%
  4832. {9851.87444905213, "V_HarnessO_ghex_F"}, // 0.03%
  4833. {9854.54824584357, "V_PlateCarrierGL_tna_F"}, // 0.03%
  4834. {9857.22204263502, "U_B_SpecopsUniform_sgg"}, // 0.03%
  4835. {9859.89583942646, "V_PlateCarrierSpec_tna_F"}, // 0.03%
  4836. {9862.5696362179, "B_ViperHarness_hex_F"}, // 0.03%
  4837. {9865.24343300935, "B_Bergen_tna_F"}, // 0.03%
  4838. {9867.91722980079, "V_PlateCarrier2_tna_F"}, // 0.03%
  4839. {9870.59102659223, "H_HelmetB_Light_tna_F"}, // 0.03%
  4840. {9873.26482338368, "U_O_T_Sniper_F"}, // 0.03%
  4841. {9875.93862017512, "B_Bergen_hex_F"}, // 0.03%
  4842. {9878.61241696656, "U_B_T_Soldier_F"}, // 0.03%
  4843. {9881.28621375801, "H_HelmetO_ghex_F"}, // 0.03%
  4844. {9883.96001054945, "H_HelmetCrew_O_ghex_F"}, // 0.03%
  4845. {9886.63380734089, "H_MilCap_tna_F"}, // 0.03%
  4846. {9889.30760413233, "H_MilCap_ghex_F"}, // 0.03%
  4847. {9891.98140092378, "H_Booniehat_tna_F"}, // 0.03%
  4848. {9894.65519771522, "H_Beret_gen_F"}, // 0.03%
  4849. {9897.32899450666, "H_MilCap_gen_F"}, // 0.03%
  4850. {9900.00279129811, "H_HelmetLeaderO_ghex_F"}, // 0.03%
  4851. {9902.67658808955, "U_B_T_Soldier_AR_F"}, // 0.03%
  4852. {9905.35038488099, "H_HelmetSpecO_ghex_F"}, // 0.03%
  4853. {9908.02418167244, "U_B_T_Sniper_F"}, // 0.03%
  4854. {9910.69797846388, "U_B_T_FullGhillie_tna_F"}, // 0.03%
  4855. {9913.37177525532, "U_B_CTRG_Soldier_F"}, // 0.03%
  4856. {9916.04557204677, "U_B_CTRG_Soldier_2_F"}, // 0.03%
  4857. {9918.71936883821, "U_B_CTRG_Soldier_3_F"}, // 0.03%
  4858. {9921.39316562965, "U_B_GEN_Soldier_F"}, // 0.03%
  4859. {9924.0669624211, "U_B_GEN_Commander_F"}, // 0.03%
  4860. {9926.74075921254, "U_O_T_Soldier_F"}, // 0.03%
  4861. {9929.41455600398, "U_B_T_Soldier_SL_F"}, // 0.03%
  4862. {9931.23273782217, "H_Beret_grn"}, // 0.02%
  4863. {9933.05091964035, "H_Beret_blk"}, // 0.02%
  4864. {9934.86910145853, "H_Beret_red"}, // 0.02%
  4865. {9936.68728327671, "H_HelmetLeaderO_ocamo"}, // 0.02%
  4866. {9938.50546509489, "H_Beret_grn_SF"}, // 0.02%
  4867. {9940.32364691308, "H_Beret_ocamo"}, // 0.02%
  4868. {9942.14182873126, "H_HelmetO_ocamo"}, // 0.02%
  4869. {9943.96001054944, "H_HelmetSpecO_blk"}, // 0.02%
  4870. {9945.77819236762, "H_HelmetSpecO_ocamo"}, // 0.02%
  4871. {9947.5963741858, "H_HelmetLeaderO_oucamo"}, // 0.02%
  4872. {9949.41455600399, "H_HelmetO_oucamo"}, // 0.02%
  4873. {9951.23273782217, "H_CrewHelmetHeli_I"}, // 0.02%
  4874. {9953.05091964035, "H_CrewHelmetHeli_O"}, // 0.02%
  4875. {9954.86910145853, "H_CrewHelmetHeli_B"}, // 0.02%
  4876. {9956.68728327671, "H_HelmetB_camo"}, // 0.02%
  4877. {9958.5054650949, "H_PilotHelmetHeli_I"}, // 0.02%
  4878. {9960.32364691308, "H_PilotHelmetHeli_O"}, // 0.02%
  4879. {9962.14182873126, "H_PilotHelmetFighter_I"}, // 0.02%
  4880. {9963.96001054944, "H_PilotHelmetFighter_O"}, // 0.02%
  4881. {9965.77819236762, "H_PilotHelmetFighter_B"}, // 0.02%
  4882. {9967.59637418581, "H_HelmetCrew_I"}, // 0.02%
  4883. {9969.41455600399, "H_HelmetCrew_O"}, // 0.02%
  4884. {9971.23273782217, "H_HelmetCrew_B"}, // 0.02%
  4885. {9973.05091964035, "H_Beret_Colonel"}, // 0.02%
  4886. {9974.86910145853, "H_Beret_02"}, // 0.02%
  4887. {9976.68728327671, "H_Beret_brn_SF"}, // 0.02%
  4888. {9978.5054650949, "H_PilotHelmetHeli_B"}, // 0.02%
  4889. {9980.28799628919, "U_O_Wetsuit"}, // 0.02%
  4890. {9982.07052748349, "U_O_SpecopsUniform_blk"}, // 0.02%
  4891. {9983.85305867779, "U_O_SpecopsUniform_ocamo"}, // 0.02%
  4892. {9985.63558987208, "U_O_CombatUniform_oucamo"}, // 0.02%
  4893. {9987.41812106638, "U_O_CombatUniform_ocamo"}, // 0.02%
  4894. {9989.20065226067, "U_I_Wetsuit"}, // 0.02%
  4895. {9990.98318345497, "U_B_Wetsuit"}, // 0.02%
  4896. {9992.76571464927, "U_I_OfficerUniform"}, // 0.02%
  4897. {9994.54824584356, "U_O_OfficerUniform_ocamo"}, // 0.02%
  4898. {9996.23174752706, "optic_tws"}, // 0.02%
  4899. {9997.4878316847, "Exile_Item_Knife"}, // 0.01%
  4900. {9998.74391584234, "Exile_Item_ThermalScannerPro"}, // 0.01%
  4901. {9999.99999999998, "Exile_Headgear_GasMask"} // 0.01%
  4902. };
  4903. };
  4904. /**
  4905. Result of 100 rounds:
  4906. Exile_Item_InstaDoc
  4907. Exile_Item_Vishpirin
  4908. Exile_Item_Bandage
  4909. Exile_Item_Vishpirin
  4910. Exile_Item_Vishpirin
  4911. Exile_Item_Vishpirin
  4912. Exile_Item_Bandage
  4913. Exile_Item_Bandage
  4914. Exile_Item_Vishpirin
  4915. Exile_Item_Vishpirin
  4916. Exile_Item_InstaDoc
  4917. Exile_Item_Vishpirin
  4918. Exile_Item_Vishpirin
  4919. Exile_Item_Vishpirin
  4920. Exile_Item_Vishpirin
  4921. Exile_Item_Vishpirin
  4922. Exile_Item_InstaDoc
  4923. Exile_Item_Vishpirin
  4924. Exile_Item_Vishpirin
  4925. Exile_Item_Bandage
  4926. Exile_Item_InstaDoc
  4927. Exile_Item_Bandage
  4928. Exile_Item_Vishpirin
  4929. Exile_Item_Vishpirin
  4930. Exile_Item_Vishpirin
  4931. Exile_Item_Vishpirin
  4932. Exile_Item_Vishpirin
  4933. Exile_Item_InstaDoc
  4934. Exile_Item_Vishpirin
  4935. Exile_Item_Bandage
  4936. Exile_Item_InstaDoc
  4937. Exile_Item_Vishpirin
  4938. Exile_Item_Vishpirin
  4939. Exile_Item_Bandage
  4940. Exile_Item_InstaDoc
  4941. Exile_Item_Vishpirin
  4942. Exile_Item_Vishpirin
  4943. Exile_Item_InstaDoc
  4944. Exile_Item_InstaDoc
  4945. Exile_Item_Vishpirin
  4946. Exile_Item_Bandage
  4947. Exile_Item_Bandage
  4948. Exile_Item_InstaDoc
  4949. Exile_Item_Bandage
  4950. Exile_Item_Vishpirin
  4951. Exile_Item_Vishpirin
  4952. Exile_Item_Vishpirin
  4953. Exile_Item_Bandage
  4954. Exile_Item_Vishpirin
  4955. Exile_Item_Vishpirin
  4956. Exile_Item_InstaDoc
  4957. Exile_Item_Vishpirin
  4958. Exile_Item_Vishpirin
  4959. Exile_Item_Vishpirin
  4960. Exile_Item_Vishpirin
  4961. Exile_Item_Vishpirin
  4962. Exile_Item_Bandage
  4963. Exile_Item_Bandage
  4964. Exile_Item_Bandage
  4965. Exile_Item_Bandage
  4966. Exile_Item_Vishpirin
  4967. Exile_Item_Bandage
  4968. Exile_Item_Vishpirin
  4969. Exile_Item_Bandage
  4970. Exile_Item_Vishpirin
  4971. Exile_Item_Bandage
  4972. Exile_Item_Vishpirin
  4973. Exile_Item_Bandage
  4974. Exile_Item_Vishpirin
  4975. Exile_Item_Bandage
  4976. Exile_Item_Vishpirin
  4977. Exile_Item_InstaDoc
  4978. Exile_Item_Vishpirin
  4979. Exile_Item_Vishpirin
  4980. Exile_Item_InstaDoc
  4981. Exile_Item_Vishpirin
  4982. Exile_Item_InstaDoc
  4983. Exile_Item_Bandage
  4984. Exile_Item_Vishpirin
  4985. Exile_Item_Vishpirin
  4986. Exile_Item_Vishpirin
  4987. Exile_Item_InstaDoc
  4988. Exile_Item_InstaDoc
  4989. Exile_Item_Vishpirin
  4990. Exile_Item_Bandage
  4991. Exile_Item_Vishpirin
  4992. Exile_Item_InstaDoc
  4993. Exile_Item_Vishpirin
  4994. Exile_Item_Vishpirin
  4995. Exile_Item_Bandage
  4996. Exile_Item_Vishpirin
  4997. Exile_Item_Vishpirin
  4998. Exile_Item_Vishpirin
  4999. Exile_Item_Vishpirin
  5000. Exile_Item_Vishpirin
  5001. Exile_Item_Vishpirin
  5002. Exile_Item_Vishpirin
  5003. Exile_Item_Vishpirin
  5004. Exile_Item_Bandage
  5005. Exile_Item_Vishpirin
  5006. */
  5007. class Medical
  5008. {
  5009. count
  5010. half
  5011. halfIndex
  5012. sum
  5013. items[]
  5014. {
  5015. {5882.35294117647, "Exile_Item_Vishpirin"}, // 58.82%
  5016. {8823.5294117647, "Exile_Item_Bandage"}, // 29.41%
  5017. {10000, "Exile_Item_InstaDoc"} // 11.76%
  5018. };
  5019. };
  5020. /**
  5021. Result of 100 rounds:
  5022. H_PilotHelmetHeli_B
  5023. HandGrenade
  5024. optic_KHS_hex
  5025. HandGrenade
  5026. srifle_DMR_05_tan_F
  5027. srifle_DMR_05_blk_F
  5028. APERSBoundingMine_Range_Mag
  5029. srifle_DMR_06_olive_F
  5030. srifle_DMR_02_sniper_F
  5031. srifle_DMR_05_tan_F
  5032. Exile_Item_SleepingMat
  5033. MiniGrenade
  5034. srifle_LRR_F
  5035. U_B_GhillieSuit
  5036. srifle_DMR_07_ghex_F
  5037. B_Carryall_khk
  5038. H_HelmetSpecO_ocamo
  5039. srifle_GM6_F
  5040. B_Carryall_ocamo
  5041. optic_DMS
  5042. H_HelmetIA_net
  5043. H_MilCap_ocamo
  5044. U_B_GhillieSuit
  5045. srifle_DMR_05_hex_F
  5046. U_O_GhillieSuit
  5047. B_Carryall_ocamo
  5048. B_Carryall_ocamo
  5049. H_HelmetB_desert
  5050. Exile_Item_Vishpirin
  5051. srifle_DMR_06_olive_F
  5052. H_HelmetB_light_grass
  5053. srifle_DMR_07_hex_F
  5054. srifle_EBR_F
  5055. srifle_DMR_06_olive_F
  5056. H_BandMask_reaper
  5057. HandGrenade
  5058. srifle_GM6_ghex_F
  5059. H_PilotHelmetFighter_I
  5060. Exile_Item_CordlessScrewdriver
  5061. srifle_DMR_05_tan_F
  5062. U_B_FullGhillie_lsh
  5063. U_I_FullGhillie_ard
  5064. H_HelmetIA
  5065. IEDLandSmall_Remote_Mag
  5066. Exile_Item_ZipTie
  5067. B_Carryall_khk
  5068. srifle_DMR_02_F
  5069. srifle_DMR_06_olive_F
  5070. Exile_Item_ZipTie
  5071. B_Carryall_ocamo
  5072. H_HelmetCrew_I
  5073. B_Carryall_mcamo
  5074. srifle_GM6_ghex_F
  5075. srifle_DMR_02_camo_F
  5076. srifle_GM6_ghex_F
  5077. srifle_DMR_05_blk_F
  5078. muzzle_snds_338_black
  5079. APERSBoundingMine_Range_Mag
  5080. DemoCharge_Remote_Mag
  5081. srifle_DMR_03_khaki_F
  5082. B_Carryall_mcamo
  5083. U_I_FullGhillie_sard
  5084. U_O_GhillieSuit
  5085. Exile_Item_InstaDoc
  5086. srifle_DMR_07_ghex_F
  5087. U_I_FullGhillie_sard
  5088. srifle_LRR_F
  5089. APERSBoundingMine_Range_Mag
  5090. B_Carryall_oucamo
  5091. optic_KHS_old
  5092. srifle_DMR_05_hex_F
  5093. H_PilotHelmetHeli_I
  5094. HandGrenade
  5095. B_Carryall_cbr
  5096. 5Rnd_127x108_APDS_Mag
  5097. srifle_DMR_07_ghex_F
  5098. H_HelmetB_light_black
  5099. optic_LRPS
  5100. srifle_DMR_05_hex_F
  5101. Exile_Item_Vishpirin
  5102. srifle_DMR_01_F
  5103. Binocular
  5104. Exile_Item_Screwdriver
  5105. B_Carryall_ocamo
  5106. srifle_DMR_06_camo_F
  5107. srifle_DMR_04_Tan_F
  5108. NVGoggles_INDEP
  5109. B_Carryall_ocamo
  5110. srifle_DMR_04_F
  5111. optic_KHS_old
  5112. U_O_GhillieSuit
  5113. B_Carryall_mcamo
  5114. srifle_DMR_05_hex_F
  5115. HandGrenade
  5116. B_Carryall_mcamo
  5117. Exile_Item_ZipTie
  5118. srifle_GM6_F
  5119. srifle_DMR_01_F
  5120. 10Rnd_93x64_DMR_05_Mag
  5121. srifle_DMR_07_blk_F
  5122. */
  5123. class Tourist
  5124. {
  5125. count
  5126. half
  5127. halfIndex
  5128. sum
  5129. items[]
  5130. {
  5131. {373.831775700935, "Exile_Item_ZipTie"}, // 3.74%
  5132. {635.514018691589, "srifle_EBR_F"}, // 2.62%
  5133. {897.196261682243, "srifle_DMR_01_F"}, // 2.62%
  5134. {1117.0973062122, "Exile_Item_Vishpirin"}, // 2.20%
  5135. {1329.27209782625, "srifle_DMR_05_blk_F"}, // 2.12%
  5136. {1541.44688944029, "srifle_DMR_05_tan_F"}, // 2.12%
  5137. {1753.62168105434, "srifle_DMR_05_hex_F"}, // 2.12%
  5138. {1959.22915768985, "srifle_DMR_07_ghex_F"}, // 2.06%
  5139. {2164.83663432536, "srifle_DMR_07_hex_F"}, // 2.06%
  5140. {2370.44411096088, "srifle_LRR_tna_F"}, // 2.06%
  5141. {2576.05158759639, "srifle_GM6_F"}, // 2.06%
  5142. {2781.65906423191, "srifle_GM6_ghex_F"}, // 2.06%
  5143. {2987.26654086742, "srifle_DMR_07_blk_F"}, // 2.06%
  5144. {3192.87401750293, "srifle_LRR_F"}, // 2.06%
  5145. {3379.7899053534, "HandGrenade"}, // 1.87%
  5146. {3566.70579320387, "MiniGrenade"}, // 1.87%
  5147. {3752.35873586616, "srifle_DMR_04_F"}, // 1.86%
  5148. {3938.01167852845, "srifle_DMR_04_Tan_F"}, // 1.86%
  5149. {4115.58177198639, "B_Carryall_cbr"}, // 1.78%
  5150. {4283.80607105181, "B_Carryall_khk"}, // 1.68%
  5151. {4452.03037011723, "B_Carryall_oli"}, // 1.68%
  5152. {4611.16146382776, "srifle_DMR_02_sniper_F"}, // 1.59%
  5153. {4770.2925575383, "srifle_DMR_02_F"}, // 1.59%
  5154. {4929.42365124883, "srifle_DMR_02_camo_F"}, // 1.59%
  5155. {5088.30215592173, "U_I_GhillieSuit"}, // 1.59%
  5156. {5242.50776339836, "U_O_GhillieSuit"}, // 1.54%
  5157. {5396.713370875, "U_B_GhillieSuit"}, // 1.54%
  5158. {5536.90028676285, "B_Carryall_ocamo"}, // 1.40%
  5159. {5677.0872026507, "B_Carryall_oucamo"}, // 1.40%
  5160. {5817.27411853855, "B_Carryall_mcamo"}, // 1.40%
  5161. {5927.22464080353, "Exile_Item_Bandage"}, // 1.10%
  5162. {6006.7901876588, "srifle_DMR_03_F"}, // 0.80%
  5163. {6086.35573451406, "srifle_DMR_03_khaki_F"}, // 0.80%
  5164. {6165.92128136933, "srifle_DMR_03_tan_F"}, // 0.80%
  5165. {6245.4868282246, "srifle_DMR_06_olive_F"}, // 0.80%
  5166. {6325.05237507986, "srifle_DMR_06_camo_F"}, // 0.80%
  5167. {6404.61792193513, "srifle_DMR_03_woodland_F"}, // 0.80%
  5168. {6483.31934839848, "10Rnd_93x64_DMR_05_Mag"}, // 0.79%
  5169. {6562.02077486184, "10Rnd_338_Mag"}, // 0.79%
  5170. {6640.52544775904, "10Rnd_762x51_Mag"}, // 0.79%
  5171. {6719.03012065623, "20Rnd_762x51_Mag"}, // 0.79%
  5172. {6796.2759722679, "optic_DMS"}, // 0.77%
  5173. {6871.04232740809, "APERSMine_Range_Mag"}, // 0.75%
  5174. {6945.80868254828, "APERSBoundingMine_Range_Mag"}, // 0.75%
  5175. {7020.57503768846, "APERSTripMine_Wire_Mag"}, // 0.75%
  5176. {7094.95993183304, "optic_LRPS"}, // 0.74%
  5177. {7169.34482597761, "optic_SOS"}, // 0.74%
  5178. {7238.20857413305, "10Rnd_127x54_Mag"}, // 0.69%
  5179. {7294.28334048819, "U_I_FullGhillie_sard"}, // 0.56%
  5180. {7348.64153236307, "muzzle_snds_B"}, // 0.54%
  5181. {7402.74876305662, "20Rnd_762x51_Mag"}, // 0.54%
  5182. {7454.1506322155, "U_O_FullGhillie_lsh"}, // 0.51%
  5183. {7505.55250137438, "U_O_FullGhillie_ard"}, // 0.51%
  5184. {7556.95437053326, "U_B_FullGhillie_sard"}, // 0.51%
  5185. {7608.35623969214, "U_B_FullGhillie_lsh"}, // 0.51%
  5186. {7659.75810885102, "U_B_FullGhillie_ard"}, // 0.51%
  5187. {7711.15997800989, "U_I_FullGhillie_lsh"}, // 0.51%
  5188. {7762.56184716877, "U_I_FullGhillie_ard"}, // 0.51%
  5189. {7813.96371632765, "U_O_FullGhillie_sard"}, // 0.51%
  5190. {7861.62726772952, "5Rnd_127x108_Mag"}, // 0.48%
  5191. {7909.29081913139, "7Rnd_408_Mag"}, // 0.48%
  5192. {7956.019791094, "muzzle_snds_93mmg_tan"}, // 0.47%
  5193. {8002.74876305662, "muzzle_snds_338_sand"}, // 0.47%
  5194. {8049.47773501924, "muzzle_snds_B"}, // 0.47%
  5195. {8096.20670698186, "muzzle_snds_338_black"}, // 0.47%
  5196. {8142.93567894447, "muzzle_snds_93mmg"}, // 0.47%
  5197. {8189.66465090709, "muzzle_snds_338_green"}, // 0.47%
  5198. {8234.5244639912, "DemoCharge_Remote_Mag"}, // 0.45%
  5199. {8279.38427707531, "IEDLandSmall_Remote_Mag"}, // 0.45%
  5200. {8324.24409015943, "IEDUrbanSmall_Remote_Mag"}, // 0.45%
  5201. {8368.22429906542, "Exile_Item_InstaDoc"}, // 0.44%
  5202. {8408.2777036048, "optic_KHS_blk"}, // 0.40%
  5203. {8448.33110814419, "optic_AMS_snd"}, // 0.40%
  5204. {8488.38451268357, "optic_AMS_khk"}, // 0.40%
  5205. {8528.43791722296, "optic_AMS"}, // 0.40%
  5206. {8568.49132176235, "optic_KHS_old"}, // 0.40%
  5207. {8608.54472630173, "optic_KHS_tan"}, // 0.40%
  5208. {8648.59813084112, "optic_KHS_hex"}, // 0.40%
  5209. {8685.98130841121, "H_MilCap_dgtl"}, // 0.37%
  5210. {8723.3644859813, "H_MilCap_ocamo"}, // 0.37%
  5211. {8760.74766355139, "H_MilCap_mcamo"}, // 0.37%
  5212. {8798.13084112149, "H_MilCap_oucamo"}, // 0.37%
  5213. {8835.51401869158, "H_MilCap_blue"}, // 0.37%
  5214. {8872.89719626167, "H_MilCap_rucamo"}, // 0.37%
  5215. {8901.95147934724, "ItemWatch"}, // 0.29%
  5216. {8931.0057624328, "ItemRadio"}, // 0.29%
  5217. {8959.04314561037, "H_HelmetB_light"}, // 0.28%
  5218. {8987.08052878794, "H_HelmetB_paint"}, // 0.28%
  5219. {9015.11791196551, "H_HelmetIA"}, // 0.28%
  5220. {9043.15529514308, "H_HelmetB"}, // 0.28%
  5221. {9071.19267832065, "H_HelmetSpecB_blk"}, // 0.28%
  5222. {9099.23006149823, "H_HelmetSpecB_paint2"}, // 0.28%
  5223. {9127.2674446758, "H_HelmetSpecB_paint1"}, // 0.28%
  5224. {9155.30482785337, "5Rnd_127x108_APDS_Mag"}, // 0.28%
  5225. {9183.34221103094, "H_HelmetB_plain_blk"}, // 0.28%
  5226. {9211.37959420851, "H_HelmetSpecB"}, // 0.28%
  5227. {9230.74911626555, "ItemGPS"}, // 0.19%
  5228. {9250.11863832259, "Binocular"}, // 0.19%
  5229. {9269.48816037963, "Exile_Item_Foolbox"}, // 0.19%
  5230. {9288.85768243668, "Exile_Item_CordlessScrewdriver"}, // 0.19%
  5231. {9308.22720449372, "Exile_Item_OilCanister"}, // 0.19%
  5232. {9327.59672655076, "Exile_Item_Hammer"}, // 0.19%
  5233. {9346.96624860781, "Exile_Item_Screwdriver"}, // 0.19%
  5234. {9366.33577066485, "Exile_Item_Shovel"}, // 0.19%
  5235. {9385.70529272189, "Exile_Item_Wrench"}, // 0.19%
  5236. {9405.07481477893, "Exile_Item_SleepingMat"}, // 0.19%
  5237. {9424.44433683598, "Laserdesignator_03"}, // 0.19%
  5238. {9443.81385889302, "Laserdesignator_02"}, // 0.19%
  5239. {9463.18338095006, "NVGoggles_INDEP"}, // 0.19%
  5240. {9482.5529030071, "Exile_Item_MobilePhone"}, // 0.19%
  5241. {9501.92242506415, "Exile_Item_FireExtinguisher"}, // 0.19%
  5242. {9521.29194712119, "NVGoggles_OPFOR"}, // 0.19%
  5243. {9539.98353590623, "H_HelmetB_light_grass"}, // 0.19%
  5244. {9558.67512469128, "H_HelmetIA_net"}, // 0.19%
  5245. {9577.36671347633, "H_HelmetIA_camo"}, // 0.19%
  5246. {9596.05830226137, "H_HelmetB_grass"}, // 0.19%
  5247. {9614.74989104642, "H_HelmetB_snakeskin"}, // 0.19%
  5248. {9633.44147983147, "H_HelmetB_desert"}, // 0.19%
  5249. {9652.13306861651, "H_HelmetB_black"}, // 0.19%
  5250. {9670.82465740156, "H_HelmetB_light_snakeskin"}, // 0.19%
  5251. {9689.51624618661, "H_HelmetB_light_desert"}, // 0.19%
  5252. {9708.20783497165, "H_HelmetB_light_black"}, // 0.19%
  5253. {9726.8994237567, "H_HelmetB_light_sand"}, // 0.19%
  5254. {9745.59101254174, "H_HelmetB_sand"}, // 0.19%
  5255. {9764.28260132679, "H_BandMask_khk"}, // 0.19%
  5256. {9782.97419011184, "H_BandMask_demon"}, // 0.19%
  5257. {9801.66577889688, "H_BandMask_reaper"}, // 0.19%
  5258. {9816.61904992492, "SatchelCharge_Remote_Mag"}, // 0.15%
  5259. {9825.96484431745, "H_CrewHelmetHeli_I"}, // 0.09%
  5260. {9835.31063870997, "H_HelmetLeaderO_ocamo"}, // 0.09%
  5261. {9844.65643310249, "H_HelmetO_ocamo"}, // 0.09%
  5262. {9854.00222749502, "H_HelmetSpecO_blk"}, // 0.09%
  5263. {9863.34802188754, "H_HelmetSpecO_ocamo"}, // 0.09%
  5264. {9872.69381628007, "H_HelmetCrew_B"}, // 0.09%
  5265. {9882.03961067259, "H_HelmetCrew_O"}, // 0.09%
  5266. {9891.38540506512, "H_HelmetCrew_I"}, // 0.09%
  5267. {9900.73119945764, "H_PilotHelmetFighter_B"}, // 0.09%
  5268. {9910.07699385016, "H_PilotHelmetFighter_O"}, // 0.09%
  5269. {9919.42278824269, "H_PilotHelmetFighter_I"}, // 0.09%
  5270. {9928.76858263521, "H_PilotHelmetHeli_B"}, // 0.09%
  5271. {9938.11437702774, "H_PilotHelmetHeli_O"}, // 0.09%
  5272. {9947.46017142026, "H_PilotHelmetHeli_I"}, // 0.09%
  5273. {9956.80596581278, "H_HelmetLeaderO_oucamo"}, // 0.09%
  5274. {9966.15176020531, "H_CrewHelmetHeli_B"}, // 0.09%
  5275. {9975.49755459783, "H_CrewHelmetHeli_O"}, // 0.09%
  5276. {9984.84334899036, "H_HelmetO_oucamo"}, // 0.09%
  5277. {9994.18914338288, "H_HelmetB_camo"}, // 0.09%
  5278. {9996.12609558858, "Exile_Headgear_GasMask"}, // 0.02%
  5279. {9998.06304779429, "Exile_Item_ThermalScannerPro"}, // 0.02%
  5280. {9999.99999999999, "Exile_Item_Knife"} // 0.02%
  5281. };
  5282. };
  5283. };
  5284.  
  5285. class CfgSettings
  5286. {
  5287. ///////////////////////////////////////////////////////////////////////
  5288. // Community Base Addons
  5289. ///////////////////////////////////////////////////////////////////////
  5290. class CBA
  5291. {
  5292. // Set this to 1 if you want to have CBA support
  5293. useStackedEH = 0;
  5294.  
  5295. // If you set this to 1 ...........................................
  5296. iReallyWantToGetHackedAndImRetarded = 0;
  5297. };
  5298.  
  5299. ///////////////////////////////////////////////////////////////////////
  5300. // GARBAGE COLLECTOR
  5301. ///////////////////////////////////////////////////////////////////////
  5302. class GarbageCollector
  5303. {
  5304. /*
  5305. Remark:
  5306. In 0.9.35 and below, Exile has checked if a player was nearby and then delayed
  5307. the deletion. This check has been removed to save server performance.
  5308.  
  5309. Do NOT touch these if you are not 10000% sure what you do!
  5310. */
  5311. class Ingame
  5312. {
  5313. // Dropped items without fissix
  5314. class GroundWeaponHolder
  5315. {
  5316. lifeTime = 10;
  5317. interval = 5;
  5318. };
  5319.  
  5320. // Dropped items with fissix
  5321. class WeaponHolderSimulated
  5322. {
  5323. lifeTime = 10;
  5324. interval = 5;
  5325. };
  5326.  
  5327. // Corpses and wrecks
  5328. class AllDead
  5329. {
  5330. lifeTime = 15;
  5331. interval = 5;
  5332. };
  5333.  
  5334. // Loot spawned inside a building
  5335. class Loot
  5336. {
  5337. lifeTime = 8;
  5338. interval = 1;
  5339. };
  5340.  
  5341. // Never touch this or you will break your sever!
  5342. class Groups
  5343. {
  5344. interval = 0.5;
  5345. };
  5346. };
  5347.  
  5348. class Database
  5349. {
  5350. // Remove all deleted items from the database after X days
  5351. permanentlyDeleteTime = 3;
  5352.  
  5353. // Remove all territories (and contructions + containers in it) that were not paid after X days
  5354. territoryLifeTime = 7;
  5355.  
  5356. // Remove all containers outside of territories that have not been used for X days
  5357. // Example: Tents
  5358. containerLifeTime = 10;
  5359.  
  5360. // Remove all constructions outside of territories that are older than X days or not moved for X days
  5361. // Example: Work Benches
  5362. constructionLifeTime = 2;
  5363.  
  5364. // Remove all vehicles that were not moved/used for X days
  5365. vehicleLifeTime = 3;
  5366.  
  5367. // Set safe as abandoned
  5368. abandonedTime = 7;
  5369.  
  5370. // Deletes a base X days after the flag is stolen if the ransom money isn't paid
  5371. stolenFlagLifeTime = 3;
  5372.  
  5373. // 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
  5374. unlockLifeTime = 2;
  5375. };
  5376. };
  5377.  
  5378. ///////////////////////////////////////////////////////////////////////
  5379. // RESPECT, YO
  5380. ///////////////////////////////////////////////////////////////////////
  5381. class Respect
  5382. {
  5383. /**
  5384. * Defines the factor of respect you gain for every pop tab in revenue
  5385. *
  5386. * Default: Get 1 respect for every 10 pop tabs
  5387. */
  5388. tradingRespectFactor = 0.1;
  5389.  
  5390. /**
  5391. * Defines the the minimum amount of Respect earned/lost for a kill
  5392. */
  5393. minRespectTransfer = 50;
  5394.  
  5395. /**
  5396. * Defines the amount of respect earned/lost for certain types of frags
  5397. */
  5398. class Frags
  5399. {
  5400. domination = 80; // Keeps killing the same guy
  5401. letItRain = 150; // MG, also vehicle MGs
  5402. humiliation = 300; // Axe
  5403. passenger = 400; // Out of car/chopper/boat
  5404. roadKill = 200; // :)
  5405. bigBird = 600; // Roadkill, but with chopper/plane
  5406. chuteGreaterChopper = 1000; // Someone flies into chute and chopper/plane explodes
  5407. };
  5408.  
  5409. class Percentages
  5410. {
  5411. unlucky = 1; // Dying for an unknown reason costs you 1% respect
  5412. crash = 1; // Crashing your car costs you 1% respect
  5413. suicide = 2; // Comitting suicide costs you 2% of your respect
  5414. friendyFire = 3; // Friendly fire costs you 3%
  5415. npc = 4; // Being killed by an NPC costs you 4%
  5416. bambiKill = 5; // Killing a bambi costs you 5%
  5417. frag = 5; // Killing someone will get you 5% and remove 5% from the victim
  5418. };
  5419.  
  5420. class Handcuffs
  5421. {
  5422. trapping = -50; // A handcuffs B
  5423. breakingFree = 100; // B broke free
  5424. releasedByHero = 100; // C releases B
  5425. releasedByHostageTaker = 50; // A releases B
  5426. };
  5427.  
  5428. class Bonus
  5429. {
  5430. // Bonus per full 100m
  5431. per100mDistance = 10;
  5432.  
  5433. // First blood after server restart
  5434. firstBlood = 100;
  5435.  
  5436. // If you kill someone while you are in your own territory
  5437. homie = 20;
  5438.  
  5439. // If you kill someone who is in his own territory
  5440. raid = 20;
  5441.  
  5442. /*
  5443. Example with killstreak = 50
  5444.  
  5445. Frag Factor Bonus
  5446. 2 * 50 +100
  5447. 3 * 50 +150
  5448. 4 * 50 +200
  5449. 5 * 50 +250
  5450. */
  5451. killStreak = 50;
  5452.  
  5453. // Kills within this amount of seconds stack (default: 2 minutes)
  5454. killStreakTimeout = 120;
  5455. };
  5456. };
  5457.  
  5458. ///////////////////////////////////////////////////////////////////////
  5459. // KILLFEED MAN!
  5460. ///////////////////////////////////////////////////////////////////////
  5461.  
  5462. class KillFeed
  5463. {
  5464. // Shows a kill feed for well kills
  5465. showKillFeed = 1;
  5466. };
  5467.  
  5468. ///////////////////////////////////////////////////////////////////////
  5469. // PLAYER SPAWN CONFIGURATION
  5470. ///////////////////////////////////////////////////////////////////////
  5471. class BambiSettings
  5472. {
  5473. /**
  5474. * Loadout of new bambi players
  5475. *
  5476. * (They will always spawn with a bambi overall - you cannot
  5477. * change the loadout uniform)
  5478. */
  5479. loadOut[] =
  5480. {
  5481. "ItemCompass",
  5482. "ItemMap", // Because why not
  5483. "Exile_Item_XM8",
  5484. "ItemRadio",
  5485. "Exile_Item_PlasticBottleFreshWater"
  5486. };
  5487.  
  5488. /**
  5489. * Enables or disables parachute spawning.
  5490. *
  5491. * 1 = On
  5492. * 0 = Off
  5493. */
  5494. parachuteSpawning = 1;
  5495.  
  5496. /**
  5497. * Enables or disables halo jumping. Only applies
  5498. * if parachute spawning is enabled.
  5499. *
  5500. * Remember that if you enable halo jump, it is adviced
  5501. * to adjust the parachuteDropHeight to something around
  5502. * 1km or so.
  5503. *
  5504. * 1 = On
  5505. * 0 = Off
  5506. */
  5507. haloJump = 1;
  5508.  
  5509. /**
  5510. * Parachute drop height in meters.
  5511. */
  5512. parachuteDropHeight = 1000;
  5513.  
  5514. /**
  5515. * Number of minutes where a fresh spawned player remains in the
  5516. * bambi state. It will end the bambi state after this timeout
  5517. * expired or when they pick up their first weapon. Whatever
  5518. * happens first.
  5519. */
  5520. protectionDuration = 5;
  5521.  
  5522. /**
  5523. * Radius of spawn zones around the center of spawn zone markers.
  5524. */
  5525. spawnZoneRadius = 500;
  5526.  
  5527. /**
  5528. * These vehicles spawn on server restart close to spawn zones.
  5529. * They are non-persistent and will despawn on server restart.
  5530. * Basically they are just used to get away from the spawn zone
  5531. * faster.
  5532. *
  5533. * {Number of vehicles *per* spawn zone, vehicle class name}
  5534. */
  5535. spawnZoneVehicles[] =
  5536. {
  5537. {5, "Exile_Bike_OldBike"},
  5538. {5, "Exile_Bike_MountainBike"}
  5539. };
  5540. };
  5541.  
  5542. ///////////////////////////////////////////////////////////////////////
  5543. // VEHICLE SPAWN CONFIGURATION
  5544. ///////////////////////////////////////////////////////////////////////
  5545.  
  5546. class VehicleSpawn
  5547. {
  5548. /**
  5549. * Grid Size for vehicle spawning,
  5550. * smaller the number more vehicles,
  5551. * you get the point
  5552. */
  5553. vehiclesGridSize = 2200;
  5554.  
  5555. /**
  5556. * Vehicle ammount per grid
  5557. * kinda self explanitory
  5558. */
  5559. vehiclesGridAmount = 2;
  5560.  
  5561. /**
  5562. * Creates global markers for vehicle spawn tweeking,
  5563. * after you are satisfied with vehicle ammount and spread set this to 0.
  5564. */
  5565. vehiclesDebugMarkers = 0;
  5566.  
  5567. /**
  5568. * The server will apply random damage up to this value when spawning a vehicle.
  5569. */
  5570. damageChance = 20; // 20% chance for a vehicle HITPOINT to be damaged
  5571. maximumDamage = 0.9;
  5572.  
  5573. /**
  5574. * If "randmizeFuel" is set to 1, vehicles will spawn with randomized
  5575. * fuel. In this case, "fuel" controls the percentage of fuel that
  5576. * can be in the vehicle at a maximum. For example, if you set this to
  5577. * 0.5, then vehicles will spawn with something random between 0% and 50%.
  5578. *
  5579. * If "randomizeFuel" is set to 0, all vehicles will spawn exactly the
  5580. * fuel percentage defined in "fuel". For example, setting this to 0.5
  5581. * will spawn all vehicles with 50% fuel. Setting it to 0 would spawn
  5582. * all vehicles without fuel.
  5583. */
  5584. randomizeFuel = 1;
  5585. fuel = 1;
  5586.  
  5587. /**
  5588. * Works exactly the same as the fuel setting ^
  5589. */
  5590. randomizeAmmo = 1;
  5591. ammo = 1;
  5592.  
  5593. // Stuff to spawn on water
  5594. water[] =
  5595. {
  5596. "Exile_Boat_MotorBoat_Police",
  5597. "Exile_Boat_MotorBoat_Orange",
  5598. "Exile_Boat_MotorBoat_White",
  5599. "Exile_Boat_RubberDuck_CSAT",
  5600. "Exile_Boat_RubberDuck_Digital",
  5601. "Exile_Boat_RubberDuck_Orange",
  5602. "Exile_Boat_RubberDuck_Blue",
  5603. "Exile_Boat_RubberDuck_Black",
  5604. "Exile_Boat_SDV_CSAT",
  5605. "Exile_Boat_SDV_Digital",
  5606. "Exile_Boat_SDV_Grey"
  5607. };
  5608.  
  5609. // Stuff to spawn on roads
  5610. ground[] =
  5611. {
  5612. "Exile_Bike_QuadBike_Black",
  5613. "Exile_Bike_QuadBike_Blue",
  5614. "Exile_Bike_QuadBike_Red",
  5615. "Exile_Bike_QuadBike_White",
  5616. "Exile_Bike_QuadBike_Nato",
  5617. "Exile_Bike_QuadBike_Csat",
  5618. "Exile_Bike_QuadBike_Fia",
  5619. "Exile_Bike_QuadBike_Guerilla01",
  5620. "Exile_Bike_QuadBike_Guerilla02",
  5621. "Exile_Car_Volha_Blue",
  5622. "Exile_Car_Volha_White",
  5623. "Exile_Car_Lada_Green",
  5624. "Exile_Car_Lada_Taxi",
  5625. "Exile_Car_TowTractor_White",
  5626. "Exile_Car_UAZ_Open_Green",
  5627. "Exile_Car_UAZ_Green",
  5628. "Exile_Car_LandRover_Ambulance_Desert",
  5629. "Exile_Car_Tractor_Red",
  5630. "Exile_Car_OldTractor_Red",
  5631. "Exile_Car_Octavius_White"
  5632. };
  5633.  
  5634. /**
  5635. * Enables or disables nightvision optics on ALL vehicles
  5636. *
  5637. * 0 = off
  5638. * 1 = on
  5639. */
  5640. nightVision = 1;
  5641.  
  5642. /**
  5643. * Enables or disables thermal optics on ALL vehicles
  5644. *
  5645. * 0 = off
  5646. * 1 = on
  5647. */
  5648. thermalVision = 0;
  5649.  
  5650. /**
  5651. * Set this to 1 to unlock vehicles on server boot if they are in safe zones
  5652. *
  5653. * 0 = off
  5654. * 1 = on
  5655. */
  5656. unlockInSafeZonesAfterRestart = 1;
  5657. };
  5658.  
  5659. class Weather
  5660. {
  5661. /*
  5662. You can define multiple "keyframes" for the weather to change. The server will pick
  5663. a keyframe randomly to simulate the weather. It will change the weather-keyframes
  5664. based on the following interval
  5665. */
  5666. interval = 30;
  5667.  
  5668. /*
  5669. Add the keyframes here. The server will pick one random, so if you want one
  5670. weather type of be more dominant compared to others, add it multiple times
  5671. */
  5672. //keyframes[] = {"Sunny", "Cloudy", "Thunderstorm"};
  5673. keyframes[] = {"Sunny"};
  5674.  
  5675. /*
  5676. This is a keyframe. Look up the BIKI to get more details about the parameters
  5677.  
  5678. Be sure to design the fog settings at a view distance of 1,600m as this is the
  5679. limit in multiplayer by default
  5680.  
  5681. https://community.bistudio.com/wiki/fogParams
  5682. https://community.bistudio.com/wiki/overcast
  5683. https://community.bistudio.com/wiki/setWaves
  5684. https://community.bistudio.com/wiki/setWindStr
  5685. https://community.bistudio.com/wiki/setGusts
  5686. https://community.bistudio.com/wiki/setRain
  5687. https://community.bistudio.com/wiki/setLightnings
  5688. https://community.bistudio.com/wiki/setRainbow
  5689. */
  5690. class Sunny
  5691. {
  5692. fogValue = 0.1;
  5693. fogDecay = 0.2;
  5694. fogBase = 5;
  5695. overcast = 0.2;
  5696. waves = 0.2;
  5697. wind = 0.25;
  5698. gusts = 0.1;
  5699. rain = 0;
  5700. lightnings = 0;
  5701. rainbows = 0;
  5702. };
  5703.  
  5704. class Cloudy
  5705. {
  5706. fogValue = 0.2;
  5707. fogDecay = 0.1;
  5708. fogBase = 5;
  5709. overcast = 0.4;
  5710. waves = 0.4;
  5711. wind = 0.25;
  5712. gusts = 0.5;
  5713. rain = 0.1;
  5714. lightnings = 0.1;
  5715. rainbows = 1;
  5716. };
  5717.  
  5718. class Thunderstorm
  5719. {
  5720. fogValue = 0.7;
  5721. fogDecay = 0.2;
  5722. fogBase = 5;
  5723. overcast = 1;
  5724. waves = 1;
  5725. wind = 0.25;
  5726. gusts = 0.5;
  5727. rain = 1;
  5728. lightnings = 1;
  5729. rainbows = 0.5;
  5730. };
  5731. };
  5732.  
  5733. class Time
  5734. {
  5735. // Uses Dedicated Server time as ingame Time
  5736. useRealTime = 0;
  5737.  
  5738. // Will overide RealTime
  5739. useStaticTime = 1;
  5740.  
  5741. // time in ARMA FORMAT << CONFIG
  5742. // https://community.bistudio.com/wiki/setDate
  5743.  
  5744. staticTime[] = {2039,10,24,15,30};
  5745. };
  5746.  
  5747.  
  5748. class RCON
  5749. {
  5750. /*
  5751. Note that for this to work you need to have serverCommandPassowrd defined in config.cfg and BE enabled
  5752. */
  5753.  
  5754. // This needs to match config.cfg serverCommandPassword
  5755. serverPassword = "";
  5756.  
  5757. // Autolocks server until its ready to accept players
  5758. useAutoLock = 0;
  5759.  
  5760. // Server will autoLock at that time before restart (minutes)
  5761. restartAutoLock = 3;
  5762.  
  5763. /*
  5764. Number of hours and minutes of your restart period.
  5765.  
  5766. Examples:
  5767.  
  5768. {4, 0} = Every 4 hours
  5769. {1, 30} = Every one and a half hour (who the hell would do this?)
  5770. */
  5771. restartTimer[] = {3, 0};
  5772.  
  5773. /*
  5774. Kicks players before restart to prevent gear loss.
  5775. We strongely recommend to use this!
  5776.  
  5777. 0 = off
  5778. 1 = on
  5779. */
  5780. useAutoKick = 0;
  5781.  
  5782. /*
  5783. Number of minutes before the server kicks players that did
  5784. not disconnect before the restart. Should at least be two
  5785. minutes!
  5786. */
  5787. kickTime = 2;
  5788.  
  5789. /*
  5790. Self-explanatory
  5791.  
  5792. 0 = off
  5793. 1 = on
  5794. */
  5795. useRestartMessages = 0;
  5796.  
  5797. /*
  5798. Number of minutes before the restart to inform your players.
  5799.  
  5800. Only use full minutes here. Value like 5.5 have not been tested.
  5801. */
  5802. restartWarningTime[] = {15, 10, 5, 3};
  5803.  
  5804. /*
  5805. If set to 1 server will execute '#shutdown',
  5806. to try to shutdown the server
  5807. */
  5808.  
  5809. useShutdown = 0;
  5810. };
  5811.  
  5812. class ServerSettings
  5813. {
  5814. /*
  5815. Support for custom server FSM if wanted
  5816. */
  5817. serverFSM = "exile_server\fsm\main.fsm";
  5818.  
  5819. /*
  5820. If this is enabled, Exile developers will spawn with a ton of pop tabs.
  5821. We will have a hard time debugging things if you disable this.
  5822. */
  5823. devFriendyMode = 1;
  5824.  
  5825. devs[] =
  5826. {
  5827. {"76561197985241690","[EXILE|DEV] Eichi"},
  5828. {"76561198022879703","[EXILE|DEV] Grim"},
  5829. {"76561198075905447","[EXILE|DEV] Vishpala"},
  5830. {"76561197968613061","[EXILE|DEV] Niuva"}
  5831. };
  5832. };
  5833.  
  5834. class Events
  5835. {
  5836. /*
  5837. A list of events that are active
  5838. */
  5839. enabledEvents[] = {"SupplyBox", "AbandonedSafe", "AmbientFlyOver", "EarthQuake"};
  5840.  
  5841. class EarthQuake
  5842. {
  5843. type = "spawn";
  5844. function = "ExileServer_system_event_earthQuake_start";
  5845. minTime = 60;
  5846. maxTime = 180;
  5847. minimumPlayersOnline = 1;
  5848. };
  5849.  
  5850. class SupplyBox
  5851. {
  5852. /*
  5853. Drops a supply box on a parachute next to a random airport on the map.
  5854. The box may contain items. The box can be transported to a territory
  5855. and installed to become a normal storage container.
  5856. */
  5857. type = "spawn";
  5858. function = "ExileServer_system_event_supplyBox_start";
  5859. minTime = 60; // minutes
  5860. maxTime = 180; // minutes
  5861. minimumPlayersOnline = 10;
  5862. dropRadius = 500; // 500m around an airport (including the main airport on Altis!)
  5863. dropAltitude = 100; // altitude of the drop
  5864. markerTime = 10; // minutes
  5865.  
  5866. /*
  5867. These are different types of boxes can be dropped.
  5868. You can specify the cargo a box should contain.
  5869. The type of box is chosen randomly from the following list.
  5870. Add a type multiple times to increase the chance of being used.
  5871. */
  5872. types[] = {"Beer", "Beer", "Tools", "Food", "Food", "RepairParts"};
  5873.  
  5874. class BoxTypes
  5875. {
  5876. class Beer
  5877. {
  5878. items[] =
  5879. {
  5880. {"Exile_Item_Beer", 24}
  5881. };
  5882. };
  5883.  
  5884. class Food
  5885. {
  5886. items[] =
  5887. {
  5888. {"Exile_Item_BBQSandwich", 5},
  5889. {"Exile_Item_Catfood", 5},
  5890. {"Exile_Item_ChristmasTinner", 5},
  5891. {"Exile_Item_GloriousKnakworst", 5},
  5892. {"Exile_Item_SausageGravy", 5},
  5893. {"Exile_Item_Surstromming", 5},
  5894. {"Exile_Item_CanOpener", 1},
  5895. {"Exile_Item_CookingPot", 1},
  5896. {"Exile_Item_Matches", 1}
  5897. };
  5898. };
  5899.  
  5900. class Tools
  5901. {
  5902. items[] =
  5903. {
  5904. {"Exile_Item_Wrench", 1},
  5905. {"Exile_Item_Shovel", 1},
  5906. {"Exile_Item_Screwdriver", 1},
  5907. {"Exile_Item_Pliers", 1},
  5908. {"Exile_Item_Handsaw", 1},
  5909. {"Exile_Item_FireExtinguisher", 1},
  5910. {"Exile_Item_DuctTape", 1}
  5911. };
  5912. };
  5913.  
  5914. class RepairParts
  5915. {
  5916. items[] =
  5917. {
  5918. {"Exile_Item_CarWheel", 8},
  5919. {"Exile_Item_FuelCanisterFull", 4},
  5920. {"Exile_Item_OilCanister", 1},
  5921. {"Exile_Item_Grinder", 1},
  5922. {"Exile_Item_CordlessScrewdriver", 1}
  5923. };
  5924. };
  5925. };
  5926. };
  5927.  
  5928. class AbandonedSafe
  5929. {
  5930. type = "spawn";
  5931. function = "ExileServer_system_event_abandonedSafe_start";
  5932. minTime = 60; // minutes
  5933. maxTime = 120; // minutes
  5934. minimumPlayersOnline = 0;
  5935. markerTime = 15; // minutes
  5936. };
  5937.  
  5938. class AmbientFlyOver
  5939. {
  5940. type = "call";
  5941. function = "ExileServer_system_event_ambientFlyOver_start";
  5942. minTime = 30; // minutes
  5943. maxTime = 90; // minutes
  5944. minimumPlayersOnline = 1;
  5945. };
  5946. };
  5947.  
  5948. class Logging
  5949. {
  5950. /*
  5951. If logging is enabled separate logs will be made in the sql logs folder for each type
  5952. */
  5953. traderLogging = 1;
  5954. deathLogging = 1;
  5955. territoryLogging = 1;
  5956. };
  5957. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement