Advertisement
Guest User

Untitled

a guest
Jan 20th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 116.09 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. // Castles & Lighthouses & Life Guard Towers
  30. ///////////////////////////////////////////////////////////////////////////
  31. class Land_LifeguardTower_01_F
  32. {
  33. table = "Tourist";
  34. positions[] = {{-0.498047, -0.222656, 1.13312}};
  35. };
  36.  
  37. class Land_LightHouse_F
  38. {
  39. table = "Tourist";
  40. positions[] = {{-5.74805, 11.0859, -3.75002}, {0.789063, -2.94336, -11.0953}, {1.07813, -2.83008, 5.39755}};
  41. };
  42.  
  43. class Land_Lighthouse_small_F
  44. {
  45. table = "Tourist";
  46. positions[] = {{-0.369141, 1.18555, -3.39546}, {4.32617, -0.462891, -3.39546}};
  47. };
  48.  
  49. class Land_Castle_01_tower_F
  50. {
  51. table = "Tourist";
  52. 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}};
  53. };
  54.  
  55. ///////////////////////////////////////////////////////////////////////////
  56. // Military
  57. ///////////////////////////////////////////////////////////////////////////
  58. //"Land_Airport_center_F"
  59. //"Land_Airport_left_F"
  60. //"Land_Airport_right_F"
  61. // TODO: "Land_Cargo_House_V2_F",
  62.  
  63. class Land_TentHangar_V1_F
  64. {
  65. table = "Military";
  66. 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}};
  67. };
  68.  
  69. class Land_Hangar_F
  70. {
  71. table = "Military";
  72. 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}};
  73. };
  74.  
  75. class Land_Airport_Tower_F
  76. {
  77. table = "Military";
  78. 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}};
  79. };
  80.  
  81. class Land_Cargo_House_V1_F
  82. {
  83. table = "Military";
  84. positions[] = {{-1.38281, 3.12109, 0.040287}, {1.24805, 2.54102, 0.0402873}};
  85. };
  86.  
  87. class Land_Cargo_House_V3_F
  88. {
  89. table = "Military";
  90. positions[] = {{-2.0918, 1.58984, -0.0957484}, {1.11914, 3.17969, 0.0402873}};
  91. };
  92.  
  93. class Land_Cargo_HQ_V1_F
  94. {
  95. table = "Military";
  96. 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}};
  97. };
  98.  
  99. class Land_Cargo_HQ_V2_F
  100. {
  101. table = "Military";
  102. 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}};
  103. };
  104.  
  105. class Land_Cargo_HQ_V3_F
  106. {
  107. table = "Military";
  108. 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}};
  109. };
  110.  
  111. class Land_u_Barracks_V2_F
  112. {
  113. table = "Military";
  114. // There are broken?
  115. //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}};
  116. 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}};
  117. };
  118.  
  119. class Land_i_Barracks_V2_F
  120. {
  121. table = "Military";
  122. 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}};
  123. };
  124.  
  125. class Land_i_Barracks_V1_F
  126. {
  127. table = "Military";
  128. 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}};
  129. };
  130.  
  131. class Land_Cargo_Patrol_V1_F
  132. {
  133. table = "Military";
  134. positions[] = {{-1.6875, -1.03906, -0.55952}, {1.73828, -1.17383, -0.55952}};
  135. };
  136.  
  137. class Land_Cargo_Patrol_V2_F
  138. {
  139. table = "Military";
  140. positions[] = {{-1.01953, -1.0918, -0.55952}, {1.82031, -0.695313, -0.55952}};
  141. };
  142.  
  143. class Land_Cargo_Tower_V1_F
  144. {
  145. table = "Military";
  146. 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}};
  147. };
  148.  
  149. class Land_Cargo_Tower_V1_No1_F
  150. {
  151. table = "Military";
  152. 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}};
  153. };
  154.  
  155. class Land_Cargo_Tower_V1_No2_F
  156. {
  157. table = "Military";
  158. 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}};
  159. };
  160.  
  161. class Land_Cargo_Tower_V1_No3_F
  162. {
  163. table = "Military";
  164. 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}};
  165. };
  166.  
  167. class Land_Cargo_Tower_V1_No4_F
  168. {
  169. table = "Military";
  170. 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}};
  171. };
  172.  
  173. class Land_Cargo_Tower_V1_No5_F
  174. {
  175. table = "Military";
  176. 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}};
  177. };
  178.  
  179. class Land_Cargo_Tower_V1_No6_F
  180. {
  181. table = "Military";
  182. 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}};
  183. };
  184.  
  185. class Land_Cargo_Tower_V1_No7_F
  186. {
  187. table = "Military";
  188. 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}};
  189. };
  190.  
  191. class Land_Cargo_Tower_V2_F
  192. {
  193. table = "Military";
  194. 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}};
  195. };
  196.  
  197. class Land_Cargo_Tower_V3_F
  198. {
  199. table = "Military";
  200. 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}};
  201. };
  202.  
  203. class Land_MilOffices_V1_F
  204. {
  205. table = "Military";
  206. 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}};
  207. };
  208.  
  209. class Land_Radar_F
  210. {
  211. table = "Military";
  212. 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}};
  213. };
  214.  
  215. ///////////////////////////////////////////////////////////////////////////
  216. // Medical
  217. ///////////////////////////////////////////////////////////////////////////
  218. //"Land_Hospital_main_F",
  219. //"Land_Hospital_side1_F",
  220. //"Land_Hospital_side2_F",
  221. class Land_Medevac_house_V1_F
  222. {
  223. table = "Medical";
  224. positions[] = {{-1.25, 1.01367, -0.105749}, {1.38281, 2.82227, 0.0302868}};
  225. };
  226.  
  227. class Land_Medevac_HQ_V1_F
  228. {
  229. table = "Medical";
  230. 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}};
  231. };
  232.  
  233. ///////////////////////////////////////////////////////////////////////////
  234. // Garages / Vehicle
  235. ///////////////////////////////////////////////////////////////////////////
  236. class Land_FuelStation_Build_F
  237. {
  238. table = "VehicleService";
  239. positions[] = {{-1.02344, -0.509766, -1.33601}, {2.07617, 0.580078, -1.3361}};
  240. };
  241.  
  242. class Land_i_Garage_V1_F
  243. {
  244. table = "VehicleService";
  245. positions[] = {{-0.925781, 2.05469, -0.0974805}, {-1.52539, -1.99805, -0.0974805}, {3.80273, -0.939453, -0.0974805}};
  246. };
  247.  
  248. class Land_i_Garage_V2_F
  249. {
  250. table = "VehicleService";
  251. 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}};
  252. };
  253.  
  254. class Land_CarService_F
  255. {
  256. table = "VehicleService";
  257. 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}};
  258. };
  259.  
  260. ///////////////////////////////////////////////////////////////////////////
  261. // Civillian Lower Class
  262. ///////////////////////////////////////////////////////////////////////////
  263. // TODO: "Land_u_Addon_02_V1_F",
  264. // TODO: "Land_i_Addon_02_V1_F",
  265. // TODO: "Land_i_Addon_03mid_V1_F",
  266.  
  267. class Land_Chapel_Small_V1_F
  268. {
  269. table = "CivillianLowerClass";
  270. positions[] = {{0.482422, 0.65625, -0.867858}, {3.08984, -1.2832, -0.867858}};
  271. };
  272.  
  273. class Land_Chapel_Small_V2_F
  274. {
  275. table = "CivillianLowerClass";
  276. positions[] = {{0.556641, -0.966797, -0.867857}, {3.54297, 0.486328, -0.867857}};
  277. };
  278.  
  279. class Land_Chapel_V1_F
  280. {
  281. table = "CivillianLowerClass";
  282. 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}};
  283. };
  284.  
  285. class Land_Chapel_V2_F
  286. {
  287. table = "CivillianLowerClass";
  288. 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}};
  289. };
  290.  
  291. class Land_Church_01_V1_F
  292. {
  293. table = "CivillianLowerClass";
  294. 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}};
  295. };
  296.  
  297. class Land_i_Addon_03_V1_F
  298. {
  299. table = "CivillianLowerClass";
  300. positions[] = {{-2.98828, -0.244141, -0.0501008}, {3.53711, -0.578125, -0.0501013}};
  301. };
  302.  
  303. class Land_i_Addon_04_V1_F
  304. {
  305. table = "CivillianLowerClass";
  306. positions[] = {{-1.25, 0.0175781, 0.0796976}};
  307. };
  308.  
  309. class Land_u_Addon_01_V1_F
  310. {
  311. table = "CivillianLowerClass";
  312. positions[] = {{1.69727, 3.04102, 0.0627024}, {4.28125, 1.1543, 0.0627022}};
  313. };
  314.  
  315. class Land_i_Windmill01_F
  316. {
  317. table = "CivillianLowerClass";
  318. positions[] = {{-0.585938, 0.908203, -3.53162}};
  319. };
  320.  
  321. class Land_d_Windmill01_F
  322. {
  323. table = "CivillianLowerClass";
  324. positions[] = {{-0.935547, 0.259766, -2.2985}, {-1.65039, 0.365234, 0.947132}};
  325. };
  326.  
  327. class Land_Slum_House01_F
  328. {
  329. table = "CivillianLowerClass";
  330. positions[] = {{0.767578, 0.773438, -1.07847}};
  331. };
  332.  
  333. class Land_Slum_House02_F
  334. {
  335. table = "CivillianLowerClass";
  336. positions[] = {{1.13867, 2.50391, -0.798099}, {1.59375, -0.0566406, -0.798099}};
  337. };
  338.  
  339. class Land_Slum_House03_F
  340. {
  341. table = "CivillianLowerClass";
  342. positions[] = {{-1.29688, 0.566406, -1.07377}, {2.27148, 1.125, -1.07377}};
  343. };
  344.  
  345. class Land_cargo_house_slum_F
  346. {
  347. table = "CivillianLowerClass";
  348. positions[] = {{-3.04688, -0.306641, -0.36025}};
  349. };
  350.  
  351. class Land_i_Stone_HouseBig_V1_F
  352. {
  353. table = "CivillianLowerClass";
  354. 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}};
  355. };
  356.  
  357. class Land_i_Stone_HouseBig_V2_F
  358. {
  359. table = "CivillianLowerClass";
  360. 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}};
  361. };
  362.  
  363. class Land_i_Stone_HouseBig_V3_F
  364. {
  365. table = "CivillianLowerClass";
  366. 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}};
  367. };
  368.  
  369. class Land_i_Stone_HouseSmall_V1_F
  370. {
  371. table = "CivillianLowerClass";
  372. 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}};
  373. };
  374.  
  375. class Land_i_Stone_HouseSmall_V2_F
  376. {
  377. table = "CivillianLowerClass";
  378. 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}};
  379. };
  380.  
  381. class Land_i_Stone_HouseSmall_V3_F
  382. {
  383. table = "CivillianLowerClass";
  384. 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}};
  385. };
  386.  
  387. class Land_i_Stone_Shed_V1_F
  388. {
  389. table = "CivillianLowerClass";
  390. positions[] = {{-2.63867, 1.96484, -0.100502}, {1.19141, 2.16992, -0.100502}};
  391. };
  392.  
  393. class Land_i_Stone_Shed_V2_F
  394. {
  395. table = "CivillianLowerClass";
  396. positions[] = {{-2.12305, 1.86914, -0.100502}, {1.78125, 1.625, -0.100502}};
  397. };
  398.  
  399. class Land_i_Stone_Shed_V3_F
  400. {
  401. table = "CivillianLowerClass";
  402. positions[] = {{-2.3125, 2.05469, -0.100502}, {1.79297, 1.93359, -0.100502}};
  403. };
  404.  
  405. class Land_u_House_Big_01_V1_F
  406. {
  407. table = "CivillianLowerClass";
  408. 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}};
  409. };
  410.  
  411. class Land_u_House_Big_02_V1_F
  412. {
  413. table = "CivillianLowerClass";
  414. 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}};
  415. };
  416.  
  417. class Land_u_House_Small_01_V1_F
  418. {
  419. table = "CivillianLowerClass";
  420. positions[] = {{-1.18359, 3.63281, -0.904629}, {-1.7793, -2.59961, -0.903945}, {3.25195, 3.44531, -0.904572}};
  421. };
  422.  
  423. class Land_u_House_Small_02_V1_F
  424. {
  425. table = "CivillianLowerClass";
  426. 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}};
  427. };
  428.  
  429. ///////////////////////////////////////////////////////////////////////////
  430. // Civillian Upper Class
  431. ///////////////////////////////////////////////////////////////////////////
  432. class Land_Offices_01_V1_F
  433. {
  434. table = "CivillianUpperClass";
  435. 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}};
  436. };
  437.  
  438. class Land_i_House_Big_01_V1_F
  439. {
  440. table = "CivillianUpperClass";
  441. 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}};
  442. };
  443.  
  444. class Land_i_House_Big_01_V2_F
  445. {
  446. table = "CivillianUpperClass";
  447. 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}};
  448. };
  449.  
  450. class Land_i_House_Big_01_V3_F
  451. {
  452. table = "CivillianUpperClass";
  453. 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}};
  454. };
  455.  
  456. class Land_i_House_Big_02_V1_F
  457. {
  458. table = "CivillianUpperClass";
  459. 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}};
  460. };
  461.  
  462. class Land_i_House_Big_02_V2_F
  463. {
  464. table = "CivillianUpperClass";
  465. 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}};
  466. };
  467.  
  468. class Land_i_House_Big_02_V3_F
  469. {
  470. table = "CivillianUpperClass";
  471. 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}};
  472. };
  473.  
  474. class Land_i_House_Small_01_V1_F
  475. {
  476. table = "CivillianUpperClass";
  477. 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}};
  478. };
  479.  
  480. class Land_i_House_Small_01_V2_F
  481. {
  482. table = "CivillianUpperClass";
  483. 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}};
  484. };
  485.  
  486. class Land_i_House_Small_01_V3_F
  487. {
  488. table = "CivillianUpperClass";
  489. 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}};
  490. };
  491.  
  492. class Land_i_House_Small_02_V1_F
  493. {
  494. table = "CivillianUpperClass";
  495. 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}};
  496. };
  497.  
  498. class Land_i_House_Small_02_V2_F
  499. {
  500. table = "CivillianUpperClass";
  501. 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}};
  502. };
  503.  
  504. class Land_i_House_Small_02_V3_F
  505. {
  506. table = "CivillianUpperClass";
  507. 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}};
  508. };
  509.  
  510. class Land_i_House_Small_03_V1_F
  511. {
  512. table = "CivillianUpperClass";
  513. 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}};
  514. };
  515.  
  516. ///////////////////////////////////////////////////////////////////////////
  517. // Shops
  518. ///////////////////////////////////////////////////////////////////////////
  519. class Land_i_Shop_01_V1_F
  520. {
  521. table = "Shop";
  522. 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}};
  523. };
  524.  
  525. class Land_i_Shop_01_V2_F
  526. {
  527. table = "Shop";
  528. 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}};
  529. };
  530.  
  531. class Land_i_Shop_01_V3_F
  532. {
  533. table = "Shop";
  534. 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}};
  535. };
  536.  
  537. class Land_i_Shop_02_V1_F
  538. {
  539. table = "Shop";
  540. 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}};
  541. };
  542.  
  543. class Land_i_Shop_02_V2_F
  544. {
  545. table = "Shop";
  546. 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}};
  547. };
  548.  
  549. class Land_i_Shop_02_V3_F
  550. {
  551. table = "Shop";
  552. 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}};
  553. };
  554.  
  555. class Land_u_Shop_01_V1_F
  556. {
  557. table = "Shop";
  558. 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}};
  559. };
  560.  
  561. class Land_u_Shop_02_V1_F
  562. {
  563. table = "Shop";
  564. 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}};
  565. };
  566.  
  567. class Land_Kiosk_blueking_F
  568. {
  569. table = "Shop";
  570. positions[] = {{-1.62109, 0.341797, -1.76588}, {1.36328, -0.908203, -1.76588}};
  571. };
  572.  
  573. class Land_Kiosk_gyros_F
  574. {
  575. table = "Shop";
  576. positions[] = {{-1.20898, -1.07813, -1.97606}, {1.26758, -0.128906, -1.97606}};
  577. };
  578.  
  579. class Land_Kiosk_redburger_F
  580. {
  581. table = "Shop";
  582. positions[] = {{-1.07617, -0.335938, -2.87051}, {1.42188, -0.373047, -2.87051}};
  583. };
  584.  
  585. ///////////////////////////////////////////////////////////////////////////
  586. // Industrial
  587. ///////////////////////////////////////////////////////////////////////////
  588. class Land_Unfinished_Building_01_F
  589. {
  590. table = "Industrial";
  591. 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}};
  592. };
  593.  
  594. class Land_Unfinished_Building_02_F
  595. {
  596. table = "Industrial";
  597. 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}};
  598. };
  599.  
  600. class Land_WIP_F
  601. {
  602. table = "Industrial";
  603. 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}};
  604. };
  605.  
  606. class Land_dp_smallTank_F
  607. {
  608. table = "Industrial";
  609. positions[] = {{-0.0898438, -1.58203, 5.32797}};
  610. };
  611.  
  612. class Land_dp_bigTank_F
  613. {
  614. table = "Industrial";
  615. positions[] = {{-1.54102, -1.93359, 3.59794}, {-5.79883, -0.496094, 3.59794}, {5.9707, -1.84375, 3.59794}};
  616. };
  617.  
  618. class Land_u_Shed_Ind_F
  619. {
  620. table = "Industrial";
  621. positions[] = {{-2.41211, 4.91602, -1.40862}, {-6.54688, -0.166016, -1.40862}, {10.6914, 2.14648, -1.40862}};
  622. };
  623.  
  624. class Land_Metal_Shed_F
  625. {
  626. table = "Industrial";
  627. positions[] = {{-3.34375, -1.80273, -1.343}, {3.52539, -2.15625, -1.343}};
  628. };
  629.  
  630. class Land_i_Shed_Ind_F
  631. {
  632. table = "Industrial";
  633. 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}};
  634. };
  635.  
  636. class Land_Research_house_V1_F
  637. {
  638. table = "Industrial";
  639. positions[] = {{-1.28516, 2.89258, 0.0302877}, {1.12305, 2.04492, -0.0384929}};
  640. };
  641.  
  642. class Land_Research_HQ_F
  643. {
  644. table = "Industrial";
  645. 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}};
  646. };
  647.  
  648. ///////////////////////////////////////////////////////////////////////////
  649. // Factories
  650. ///////////////////////////////////////////////////////////////////////////
  651. class Land_Factory_Main_F
  652. {
  653. table = "Factories";
  654. positions[] = {{-8.51953,13.5698,-6.45422}, {-8.75,10.9609,-6.41479}};
  655. };
  656.  
  657. class Land_dp_smallFactory_F
  658. {
  659. table = "Factories";
  660. 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}};
  661. };
  662.  
  663. class Land_dp_mainFactory_F
  664. {
  665. table = "Factories";
  666. 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}};
  667. };
  668. };
  669. class CfgLootTables
  670. {
  671. /**
  672. Result of 100 rounds:
  673.  
  674. U_C_Poloshirt_tricolour
  675. H_Cap_headphones
  676. U_C_Journalist
  677. H_Hat_brown
  678. B_HuntingBackpack
  679. Chemlight_blue
  680. Exile_Item_Can_Empty
  681. U_C_Poor_1
  682. U_C_Poloshirt_blue
  683. Exile_Item_ToiletPaper
  684. Exile_Item_CatFood
  685. Chemlight_yellow
  686. Chemlight_yellow
  687. B_AssaultPack_khk
  688. Exile_Item_PlasticBottleEmpty
  689. Exile_Item_ChristmasTinner
  690. B_AssaultPack_cbr
  691. Exile_Item_SausageGravy
  692. SMG_02_F
  693. Chemlight_yellow
  694. FlareWhite_F
  695. Exile_Item_InstantCoffee
  696. Chemlight_blue
  697. Exile_Item_ToiletPaper
  698. Exile_Item_Beer
  699. Exile_Item_ChristmasTinner
  700. U_C_Poloshirt_blue
  701. 30Rnd_9x21_Mag
  702. U_C_Scientist
  703. Chemlight_red
  704. B_AssaultPack_mcamo
  705. U_C_Poor_2
  706. B_HuntingBackpack
  707. hgun_P07_F
  708. Exile_Item_MountainDupe
  709. ItemRadio
  710. U_NikosAgedBody
  711. hgun_P07_F
  712. ItemRadio
  713. U_C_Scientist
  714. U_Rangemaster
  715. H_Bandanna_surfer
  716. B_AssaultPack_rgr
  717. Exile_Item_Can_Empty
  718. Exile_Item_PlasticBottleEmpty
  719. U_C_Poloshirt_burgundy
  720. H_Cap_tan
  721. B_AssaultPack_sgg
  722. ItemRadio
  723. H_Bandanna_surfer
  724. Exile_Item_ToiletPaper
  725. Chemlight_green
  726. Exile_Item_InstantCoffee
  727. H_Beret_blk_POLICE
  728. 11Rnd_45ACP_Mag
  729. U_C_Poor_2
  730. Exile_Item_Dogfood
  731. Exile_Item_MountainDupe
  732. Exile_Item_PlasticBottleEmpty
  733. Binocular
  734. SMG_01_F
  735. Exile_Item_PlasticBottleEmpty
  736. Exile_Item_CookingPot
  737. Exile_Item_Raisins
  738. Exile_Item_PlasticBottleEmpty
  739. Exile_Item_ToiletPaper
  740. Exile_Item_Raisins
  741. H_StrawHat
  742. Exile_Item_Dogfood
  743. B_AssaultPack_khk
  744. Exile_Item_SausageGravy
  745. U_C_Poor_1
  746. Exile_Item_Moobar
  747. Exile_Item_InstantCoffee
  748. muzzle_snds_L
  749. U_C_Journalist
  750. Chemlight_red
  751. Chemlight_green
  752. B_AssaultPack_dgtl
  753. optic_Yorris
  754. Exile_Item_PlasticBottleFreshWater
  755. V_Press_F
  756. H_Hat_grey
  757. Exile_Item_Beer
  758. ItemWatch
  759. U_C_Poloshirt_blue
  760. Exile_Item_PlasticBottleDirtyWater
  761. Exile_Item_ToiletPaper
  762. Exile_Item_Beer
  763. Exile_Item_CookingPot
  764. 30Rnd_45ACP_Mag_SMG_01_Tracer_Green
  765. 30Rnd_45ACP_Mag_SMG_01
  766. Exile_Item_Raisins
  767. muzzle_snds_L
  768. B_OutdoorPack_blk
  769. Chemlight_blue
  770. 9Rnd_45ACP_Mag
  771. hgun_Rook40_F
  772. H_Beret_blk_POLICE
  773. Exile_Item_ToiletPaper
  774. */
  775. class CivillianLowerClass
  776. {
  777. count = 117;
  778. half = 7310.1552180397;
  779. halfIndex = 58;
  780. sum = 10000;
  781. items[] =
  782. {
  783. {552.486187845304, "Exile_Item_Can_Empty"}, // 5.52%
  784. {1104.97237569061, "Exile_Item_ToiletPaper"}, // 5.52%
  785. {1657.45856353591, "Exile_Item_PlasticBottleEmpty"}, // 5.52%
  786. {1823.2044198895, "ItemRadio"}, // 1.66%
  787. {1988.95027624309, "ItemWatch"}, // 1.66%
  788. {2154.69613259669, "Exile_Item_PlasticBottleDirtyWater"}, // 1.66%
  789. {2294.17625215107, "Exile_Item_InstantCoffee"}, // 1.39%
  790. {2432.2977991124, "FlareRed_F"}, // 1.38%
  791. {2570.41934607373, "FlareGreen_F"}, // 1.38%
  792. {2708.54089303505, "Chemlight_yellow"}, // 1.38%
  793. {2846.66243999638, "Chemlight_red"}, // 1.38%
  794. {2984.7839869577, "Chemlight_green"}, // 1.38%
  795. {3122.90553391903, "Chemlight_blue"}, // 1.38%
  796. {3261.02708088036, "V_Rangemaster_belt"}, // 1.38%
  797. {3399.14862784168, "FlareWhite_F"}, // 1.38%
  798. {3537.27017480301, "FlareYellow_F"}, // 1.38%
  799. {3651.39027262024, "Exile_Item_Raisins"}, // 1.14%
  800. {3765.51037043746, "Exile_Item_Moobar"}, // 1.14%
  801. {3876.00760800652, "Binocular"}, // 1.10%
  802. {3986.50484557559, "Exile_Item_MountainDupe"}, // 1.10%
  803. {4097.00208314465, "ItemGPS"}, // 1.10%
  804. {4198.44217009329, "Exile_Item_SeedAstics"}, // 1.01%
  805. {4296.90505505582, "U_C_Poor_1"}, // 0.98%
  806. {4395.36794001835, "U_C_Poor_2"}, // 0.98%
  807. {4493.83082498088, "U_C_Poor_shorts_1"}, // 0.98%
  808. {4592.29370994341, "U_Rangemaster"}, // 0.98%
  809. {4690.75659490594, "U_C_HunterBody_grn"}, // 0.98%
  810. {4789.21947986847, "U_C_Scientist"}, // 0.98%
  811. {4887.682364831, "U_C_Journalist"}, // 0.98%
  812. {4981.6050167647, "Exile_Item_EnergyDrink"}, // 0.94%
  813. {5074.42269632271, "hgun_P07_F"}, // 0.93%
  814. {5163.18277240278, "Exile_Item_Noodles"}, // 0.89%
  815. {5251.94284848284, "Exile_Item_CatFood"}, // 0.89%
  816. {5340.70292456291, "Exile_Item_Cheathas"}, // 0.89%
  817. {5429.46300064297, "Exile_Item_ChristmasTinner"}, // 0.89%
  818. {5518.22307672304, "Exile_Item_SausageGravy"}, // 0.89%
  819. {5606.9831528031, "Exile_Item_Dogfood"}, // 0.89%
  820. {5695.74322888317, "Exile_Item_Surstromming"}, // 0.89%
  821. {5784.50330496323, "Exile_Item_BeefParts"}, // 0.89%
  822. {5873.2633810433, "Exile_Item_BBQSandwich"}, // 0.89%
  823. {5961.66117109855, "hgun_Rook40_F"}, // 0.88%
  824. {6050.0589611538, "hgun_ACPC2_F"}, // 0.88%
  825. {6132.93188933059, "30Rnd_45ACP_Mag_SMG_01"}, // 0.83%
  826. {6215.80481750739, "30Rnd_45ACP_Mag_SMG_01_Tracer_Green"}, // 0.83%
  827. {6293.15288380573, "Exile_Item_Beer"}, // 0.77%
  828. {6369.73512766548, "U_C_Poloshirt_blue"}, // 0.77%
  829. {6446.31737152522, "U_C_Poloshirt_burgundy"}, // 0.77%
  830. {6522.89961538497, "U_C_Poloshirt_stripped"}, // 0.77%
  831. {6599.48185924471, "U_C_Poloshirt_tricolour"}, // 0.77%
  832. {6676.06410310446, "U_C_Poloshirt_salmon"}, // 0.77%
  833. {6752.14416831594, "Exile_Item_GloriousKnakworst"}, // 0.76%
  834. {6827.2822898629, "SMG_01_F"}, // 0.75%
  835. {6900.21046665848, "hgun_PDW2000_F"}, // 0.73%
  836. {6973.13864345406, "SMG_02_F"}, // 0.73%
  837. {7042.19941693472, "V_Press_F"}, // 0.69%
  838. {7111.26019041539, "V_TacVest_blk_POLICE"}, // 0.69%
  839. {7177.55853295682, "H_Hat_grey"}, // 0.66%
  840. {7243.85687549826, "H_Hat_tan"}, // 0.66%
  841. {7310.1552180397, "H_Hat_checker"}, // 0.66%
  842. {7376.45356058113, "H_StrawHat_dark"}, // 0.66%
  843. {7442.75190312257, "H_Cap_press"}, // 0.66%
  844. {7509.05024566401, "H_Cap_red"}, // 0.66%
  845. {7575.34858820544, "Exile_Item_PlasticBottleFreshWater"}, // 0.66%
  846. {7641.64693074688, "H_StrawHat"}, // 0.66%
  847. {7707.94527328832, "H_Hat_brown"}, // 0.66%
  848. {7774.24361582976, "H_Hat_blue"}, // 0.66%
  849. {7840.54195837119, "H_Cap_tan"}, // 0.66%
  850. {7903.9420127141, "Exile_Item_CanOpener"}, // 0.63%
  851. {7967.342067057, "Exile_Item_Matches"}, // 0.63%
  852. {8028.11554771998, "B_OutdoorPack_blk"}, // 0.61%
  853. {8087.78405600728, "muzzle_snds_L"}, // 0.60%
  854. {8147.45256429457, "muzzle_snds_acp"}, // 0.60%
  855. {8204.91112783048, "hgun_Pistol_heavy_02_F"}, // 0.57%
  856. {8262.36969136639, "hgun_Pistol_heavy_01_F"}, // 0.57%
  857. {8319.8282549023, "hgun_Pistol_Signal_F"}, // 0.57%
  858. {8375.07687368683, "H_Cap_blu"}, // 0.55%
  859. {8430.32549247136, "H_Cap_blk"}, // 0.55%
  860. {8485.57411125589, "H_Beret_blk_POLICE"}, // 0.55%
  861. {8540.82273004042, "H_Bandanna_surfer"}, // 0.55%
  862. {8596.07134882495, "H_Cap_headphones"}, // 0.55%
  863. {8651.31996760948, "H_Cap_oli"}, // 0.55%
  864. {8706.56858639401, "H_Cap_grn"}, // 0.55%
  865. {8761.81720517854, "H_Cap_blk_Raven"}, // 0.55%
  866. {8817.06582396307, "11Rnd_45ACP_Mag"}, // 0.55%
  867. {8872.3144427476, "30Rnd_9x21_Mag"}, // 0.55%
  868. {8927.56306153213, "9Rnd_45ACP_Mag"}, // 0.55%
  869. {8982.81168031666, "Exile_Item_ZipTie"}, // 0.55%
  870. {9037.50781291334, "B_OutdoorPack_blu"}, // 0.55%
  871. {9092.20394551003, "B_OutdoorPack_tan"}, // 0.55%
  872. {9140.82273004042, "B_HuntingBackpack"}, // 0.49%
  873. {9185.02162506804, "6Rnd_45ACP_Cylinder"}, // 0.44%
  874. {9227.56306153213, "B_AssaultPack_mcamo"}, // 0.43%
  875. {9270.10449799622, "B_AssaultPack_cbr"}, // 0.43%
  876. {9312.64593446031, "B_AssaultPack_dgtl"}, // 0.43%
  877. {9355.1873709244, "B_AssaultPack_sgg"}, // 0.43%
  878. {9397.72880738849, "B_AssaultPack_blk"}, // 0.43%
  879. {9440.27024385258, "B_AssaultPack_khk"}, // 0.43%
  880. {9482.81168031666, "B_AssaultPack_rgr"}, // 0.43%
  881. {9521.48571346584, "Exile_Item_PowerDrink"}, // 0.39%
  882. {9559.52574607158, "Exile_Item_EMRE"}, // 0.38%
  883. {9597.56577867732, "Exile_Item_CookingPot"}, // 0.38%
  884. {9630.71494994804, "optic_ACO_grn_smg"}, // 0.33%
  885. {9663.86412121876, "optic_Aco"}, // 0.33%
  886. {9697.01329248947, "optic_ACO_grn"}, // 0.33%
  887. {9730.16246376019, "optic_Aco_smg"}, // 0.33%
  888. {9763.31163503091, "optic_Holosight_smg"}, // 0.33%
  889. {9793.6983753624, "B_Kitbag_cbr"}, // 0.30%
  890. {9824.08511569389, "B_Kitbag_sgg"}, // 0.30%
  891. {9854.47185602539, "B_Kitbag_mcamo"}, // 0.30%
  892. {9882.09616541765, "16Rnd_9x21_Mag"}, // 0.28%
  893. {9905.30058530715, "optic_Yorris"}, // 0.23%
  894. {9928.50500519666, "optic_MRD"}, // 0.23%
  895. {9947.84202177124, "6Rnd_GreenSignal_F"}, // 0.19%
  896. {9967.17903834583, "6Rnd_RedSignal_F"}, // 0.19%
  897. {9978.11935889722, "U_NikosAgedBody"}, // 0.11%
  898. {9989.05967944861, "U_NikosBody"}, // 0.11%
  899. {10000, "U_OrestesBody"} // 0.11%
  900. };
  901. };
  902.  
  903. /**
  904. Result of 100 rounds:
  905.  
  906. hgun_Pistol_Signal_F
  907. hgun_Pistol_Signal_F
  908. Exile_Item_BeefParts
  909. Exile_Item_Noodles
  910. arifle_Mk20_F
  911. arifle_MX_F
  912. FlareWhite_F
  913. 30Rnd_45ACP_Mag_SMG_01
  914. Chemlight_yellow
  915. 30Rnd_556x45_Stanag_Tracer_Red
  916. arifle_MXM_F
  917. FlareRed_F
  918. V_Press_F
  919. muzzle_snds_L
  920. H_Cap_blu
  921. FlareRed_F
  922. Exile_Item_PlasticBottleEmpty
  923. ItemRadio
  924. Exile_Item_Can_Empty
  925. B_AssaultPack_mcamo
  926. Exile_Item_Can_Empty
  927. Exile_Item_Can_Empty
  928. Exile_Item_PlasticBottleEmpty
  929. U_C_Journalist
  930. optic_ACO_grn_smg
  931. FlareGreen_F
  932. V_TacVest_blk_POLICE
  933. H_StrawHat
  934. 6Rnd_45ACP_Cylinder
  935. arifle_Katiba_GL_F
  936. Exile_Item_CatFood
  937. Exile_Item_SeedAstics
  938. 30Rnd_9x21_Mag
  939. H_Cap_headphones
  940. Exile_Item_Noodles
  941. 30Rnd_45ACP_Mag_SMG_01
  942. 6Rnd_RedSignal_F
  943. optic_Hamr
  944. Chemlight_blue
  945. Exile_Item_Can_Empty
  946. H_Cap_red
  947. Exile_Item_BeefParts
  948. ItemWatch
  949. Exile_Item_Beer
  950. hgun_PDW2000_F
  951. Exile_Item_Can_Empty
  952. H_Beret_blk_POLICE
  953. optic_ACO_grn_smg
  954. hgun_PDW2000_F
  955. U_OrestesBody
  956. Exile_Item_PlasticBottleEmpty
  957. H_StrawHat
  958. Exile_Item_PlasticBottleEmpty
  959. Exile_Item_BBQSandwich
  960. Exile_Item_Can_Empty
  961. H_Cap_red
  962. U_C_Poloshirt_burgundy
  963. Exile_Item_PlasticBottleEmpty
  964. U_C_Poloshirt_blue
  965. H_Hat_brown
  966. FlareRed_F
  967. Exile_Item_Beer
  968. Exile_Item_PlasticBottleFreshWater
  969. FlareYellow_F
  970. Exile_Item_CatFood
  971. Exile_Item_Beer
  972. U_C_Poor_shorts_1
  973. 11Rnd_45ACP_Mag
  974. Chemlight_green
  975. Chemlight_green
  976. Exile_Item_Moobar
  977. Exile_Item_PlasticBottleDirtyWater
  978. optic_ACO_grn_smg
  979. Exile_Item_Can_Empty
  980. ItemRadio
  981. U_C_Poor_1
  982. Exile_Item_ZipTie
  983. Exile_Item_BeefParts
  984. B_OutdoorPack_blk
  985. optic_ACO_grn
  986. U_C_Poor_1
  987. Exile_Item_CanOpener
  988. Exile_Item_Can_Empty
  989. B_AssaultPack_sgg
  990. B_OutdoorPack_tan
  991. muzzle_snds_acp
  992. Chemlight_blue
  993. Exile_Item_Moobar
  994. H_Beret_blk_POLICE
  995. H_Beret_blk_POLICE
  996. acc_flashlight
  997. H_Cap_grn
  998. Exile_Item_Moobar
  999. Exile_Item_Surstromming
  1000. H_Hat_checker
  1001. Exile_Item_PlasticBottleEmpty
  1002. 30Rnd_9x21_Mag
  1003. Exile_Item_CookingPot
  1004. Exile_Item_PlasticBottleEmpty
  1005. Exile_Item_ToiletPaper
  1006. */
  1007. class CivillianUpperClass
  1008. {
  1009. count = 153;
  1010. half = 8030.99428493325;
  1011. halfIndex = 76;
  1012. sum = 10000;
  1013. items[] =
  1014. {
  1015. {526.315789473684, "Exile_Item_Can_Empty"}, // 5.26%
  1016. {1052.63157894737, "Exile_Item_ToiletPaper"}, // 5.26%
  1017. {1578.94736842105, "Exile_Item_PlasticBottleEmpty"}, // 5.26%
  1018. {1736.84210526316, "ItemRadio"}, // 1.58%
  1019. {1894.73684210526, "Exile_Item_PlasticBottleDirtyWater"}, // 1.58%
  1020. {2052.63157894737, "ItemWatch"}, // 1.58%
  1021. {2185.50474547023, "Exile_Item_InstantCoffee"}, // 1.33%
  1022. {2317.08369283865, "Chemlight_red"}, // 1.32%
  1023. {2448.66264020708, "Chemlight_green"}, // 1.32%
  1024. {2580.2415875755, "Chemlight_blue"}, // 1.32%
  1025. {2711.82053494392, "FlareGreen_F"}, // 1.32%
  1026. {2843.39948231234, "Chemlight_yellow"}, // 1.32%
  1027. {2974.97842968076, "FlareYellow_F"}, // 1.32%
  1028. {3106.55737704918, "FlareRed_F"}, // 1.32%
  1029. {3238.1363244176, "FlareWhite_F"}, // 1.32%
  1030. {3369.71527178602, "V_Rangemaster_belt"}, // 1.32%
  1031. {3478.42968075928, "Exile_Item_Raisins"}, // 1.09%
  1032. {3587.14408973253, "Exile_Item_Moobar"}, // 1.09%
  1033. {3692.40724762727, "ItemGPS"}, // 1.05%
  1034. {3797.670405522, "Binocular"}, // 1.05%
  1035. {3902.93356341674, "Exile_Item_MountainDupe"}, // 1.05%
  1036. {3999.56859361519, "Exile_Item_SeedAstics"}, // 0.97%
  1037. {4093.36744718476, "U_Rangemaster"}, // 0.94%
  1038. {4187.16630075432, "U_C_Scientist"}, // 0.94%
  1039. {4280.96515432389, "U_C_Journalist"}, // 0.94%
  1040. {4374.76400789346, "U_C_HunterBody_grn"}, // 0.94%
  1041. {4468.56286146303, "U_C_Poor_shorts_1"}, // 0.94%
  1042. {4562.36171503259, "U_C_Poor_2"}, // 0.94%
  1043. {4656.16056860216, "U_C_Poor_1"}, // 0.94%
  1044. {4745.63425281269, "Exile_Item_EnergyDrink"}, // 0.89%
  1045. {4834.05530544427, "hgun_P07_F"}, // 0.88%
  1046. {4918.61095686791, "Exile_Item_CatFood"}, // 0.85%
  1047. {5003.16660829155, "Exile_Item_BBQSandwich"}, // 0.85%
  1048. {5087.72225971519, "Exile_Item_ChristmasTinner"}, // 0.85%
  1049. {5172.27791113883, "Exile_Item_SausageGravy"}, // 0.85%
  1050. {5256.83356256247, "Exile_Item_Surstromming"}, // 0.85%
  1051. {5341.38921398612, "Exile_Item_Dogfood"}, // 0.85%
  1052. {5425.94486540976, "Exile_Item_Noodles"}, // 0.85%
  1053. {5510.5005168334, "Exile_Item_Cheathas"}, // 0.85%
  1054. {5595.05616825704, "Exile_Item_BeefParts"}, // 0.85%
  1055. {5679.26669457283, "hgun_Rook40_F"}, // 0.84%
  1056. {5763.47722088862, "hgun_ACPC2_F"}, // 0.84%
  1057. {5842.42458930967, "30Rnd_45ACP_Mag_SMG_01"}, // 0.79%
  1058. {5921.37195773072, "30Rnd_45ACP_Mag_SMG_01_Tracer_Green"}, // 0.79%
  1059. {5995.05616825704, "Exile_Item_Beer"}, // 0.74%
  1060. {6068.01083214448, "U_C_Poloshirt_stripped"}, // 0.73%
  1061. {6140.96549603192, "U_C_Poloshirt_blue"}, // 0.73%
  1062. {6213.92015991936, "U_C_Poloshirt_tricolour"}, // 0.73%
  1063. {6286.87482380681, "U_C_Poloshirt_salmon"}, // 0.73%
  1064. {6359.82948769425, "U_C_Poloshirt_burgundy"}, // 0.73%
  1065. {6432.30576034308, "Exile_Item_GloriousKnakworst"}, // 0.72%
  1066. {6503.8847077115, "SMG_01_F"}, // 0.72%
  1067. {6573.35839192203, "SMG_02_F"}, // 0.69%
  1068. {6642.83207613256, "hgun_PDW2000_F"}, // 0.69%
  1069. {6708.62154981677, "V_Press_F"}, // 0.66%
  1070. {6774.41102350098, "V_TacVest_blk_POLICE"}, // 0.66%
  1071. {6837.56891823782, "H_Cap_press"}, // 0.63%
  1072. {6900.72681297466, "H_Cap_tan"}, // 0.63%
  1073. {6963.88470771151, "H_Hat_grey"}, // 0.63%
  1074. {7027.04260244835, "Exile_Item_PlasticBottleFreshWater"}, // 0.63%
  1075. {7090.20049718519, "H_StrawHat_dark"}, // 0.63%
  1076. {7153.35839192203, "H_StrawHat"}, // 0.63%
  1077. {7216.51628665888, "H_Hat_tan"}, // 0.63%
  1078. {7279.67418139572, "H_Hat_blue"}, // 0.63%
  1079. {7342.83207613256, "H_Hat_brown"}, // 0.63%
  1080. {7405.9899708694, "H_Hat_checker"}, // 0.63%
  1081. {7469.14786560625, "H_Cap_red"}, // 0.63%
  1082. {7529.54475948028, "Exile_Item_CanOpener"}, // 0.60%
  1083. {7589.9416533543, "Exile_Item_Matches"}, // 0.60%
  1084. {7647.83639019641, "B_OutdoorPack_blk"}, // 0.58%
  1085. {7704.67849545957, "muzzle_snds_L"}, // 0.57%
  1086. {7761.52060072272, "muzzle_snds_acp"}, // 0.57%
  1087. {7816.25744282799, "hgun_Pistol_Signal_F"}, // 0.55%
  1088. {7870.99428493325, "hgun_Pistol_heavy_02_F"}, // 20.55%
  1089. {7925.73112703851, "hgun_Pistol_heavy_01_F"}, // 20.55%
  1090. {7978.36270598588, "H_Beret_blk_POLICE"}, // 0.53%
  1091. {8030.99428493325, "H_Cap_blk"}, // 0.53%
  1092. {8083.62586388062, "H_Cap_blk_Raven"}, // 0.53%
  1093. {8136.25744282799, "H_Cap_blu"}, // 0.53%
  1094. {8188.88902177536, "H_Cap_grn"}, // 0.53%
  1095. {8241.52060072272, "H_Cap_headphones"}, // 0.53%
  1096. {8294.15217967009, "H_Bandanna_surfer"}, // 0.53%
  1097. {8346.78375861746, "H_Cap_oli"}, // 0.53%
  1098. {8399.41533756483, "Exile_Item_ZipTie"}, // 0.53%
  1099. {8452.0469165122, "9Rnd_45ACP_Mag"}, // 0.53%
  1100. {8504.67849545957, "11Rnd_45ACP_Mag"}, // 0.53%
  1101. {8557.31007440693, "30Rnd_9x21_Mag"}, // 0.53%
  1102. {8609.41533756483, "B_OutdoorPack_blu"}, // 0.52%
  1103. {8661.52060072272, "B_OutdoorPack_tan"}, // 0.52%
  1104. {8707.83639019641, "B_HuntingBackpack"}, // 0.46%
  1105. {8749.9416533543, "6Rnd_45ACP_Cylinder"}, // 5.42%
  1106. {8790.46796914378, "B_AssaultPack_blk"}, // 0.41%
  1107. {8830.99428493325, "B_AssaultPack_sgg"}, // 0.41%
  1108. {8871.52060072272, "B_AssaultPack_rgr"}, // 0.41%
  1109. {8912.0469165122, "B_AssaultPack_khk"}, // 0.41%
  1110. {8952.57323230167, "B_AssaultPack_cbr"}, // 0.41%
  1111. {8993.09954809114, "B_AssaultPack_dgtl"}, // 0.41%
  1112. {9033.62586388062, "B_AssaultPack_mcamo"}, // 0.41%
  1113. {9070.46796914378, "Exile_Item_PowerDrink"}, // 0.37%
  1114. {9106.70610546819, "Exile_Item_EMRE"}, // 0.36%
  1115. {9142.94424179261, "Exile_Item_CookingPot"}, // 0.36%
  1116. {9174.52318916103, "optic_ACO_grn"}, // 0.32%
  1117. {9206.10213652945, "optic_Aco"}, // 0.32%
  1118. {9237.68108389787, "optic_Aco_smg"}, // 0.32%
  1119. {9269.2600312663, "optic_ACO_grn_smg"}, // 0.32%
  1120. {9300.83897863472, "optic_Holosight_smg"}, // 0.32%
  1121. {9329.78634705577, "B_Kitbag_sgg"}, // 0.29%
  1122. {9358.73371547682, "B_Kitbag_mcamo"}, // 0.29%
  1123. {9387.68108389788, "B_Kitbag_cbr"}, // 0.29%
  1124. {9413.99687337156, "16Rnd_9x21_Mag"}, // 0.26%
  1125. {9438.927621294, "30Rnd_65x39_caseless_green"}, // 0.25%
  1126. {9463.85836921644, "30Rnd_556x45_Stanag"}, // 0.25%
  1127. {9486.18691786078, "acc_flashlight"}, // 0.22%
  1128. {9508.29218101867, "optic_MRD"}, // 0.22%
  1129. {9530.39744417657, "optic_Yorris"}, // 0.22%
  1130. {9548.81849680814, "6Rnd_RedSignal_F"}, // 0.18%
  1131. {9567.23954943972, "6Rnd_GreenSignal_F"}, // 0.18%
  1132. {9585.52209791618, "20Rnd_556x45_UW_mag"}, // 0.18%
  1133. {9601.47106123356, "optic_Holosight"}, // 0.16%
  1134. {9617.42002455095, "muzzle_snds_M"}, // 0.16%
  1135. {9633.36898786833, "muzzle_snds_H"}, // 0.16%
  1136. {9649.31795118571, "optic_DMS"}, // 0.16%
  1137. {9665.2669145031, "optic_Hamr"}, // 0.16%
  1138. {9681.21587782048, "optic_MRCO"}, // 0.16%
  1139. {9697.16484113786, "acc_pointer_IR"}, // 0.16%
  1140. {9713.11380445525, "optic_Arco"}, // 0.16%
  1141. {9728.90327813946, "arifle_Katiba_F"}, // 0.16%
  1142. {9743.86172689292, "30Rnd_556x45_Stanag_Tracer_Red"}, // 0.15%
  1143. {9758.82017564638, "30Rnd_556x45_Stanag_Tracer_Green"}, // 0.15%
  1144. {9773.77862439985, "30Rnd_65x39_caseless_mag_Tracer"}, // 0.15%
  1145. {9788.73707315331, "30Rnd_65x39_caseless_mag"}, // 0.15%
  1146. {9803.69552190677, "30Rnd_65x39_caseless_green_mag_Tracer"}, // 0.15%
  1147. {9818.65397066023, "30Rnd_556x45_Stanag_Tracer_Yellow"}, // 0.15%
  1148. {9831.2855496076, "arifle_MXC_F"}, // 0.13%
  1149. {9843.91712855497, "arifle_MX_F"}, // 0.13%
  1150. {9856.54870750234, "arifle_Katiba_GL_F"}, // 30.13%
  1151. {9869.18028644971, "arifle_TRG21_F"}, // 0.13%
  1152. {9881.81186539708, "arifle_TRG20_F"}, // 0.13%
  1153. {9892.86449697602, "arifle_Mk20_F"}, // 0.11%
  1154. {9903.91712855497, "arifle_Mk20C_F"}, // 0.11%
  1155. {9914.33922339603, "U_NikosBody"}, // 0.10%
  1156. {9924.7613182371, "U_OrestesBody"}, // 0.10%
  1157. {9935.18341307816, "U_NikosAgedBody"}, // 0.10%
  1158. {9944.65709728869, "arifle_SDAR_F"}, // 0.09%
  1159. {9954.13078149921, "arifle_MXM_F"}, // 0.09%
  1160. {9962.10526315791, "optic_NVS"}, // 0.08%
  1161. {9968.42105263159, "arifle_Mk20_GL_F"}, // 0.06%
  1162. {9974.73684210528, "arifle_MX_GL_F"}, // 0.06%
  1163. {9981.05263157896, "arifle_TRG21_GL_F"}, // 0.06%
  1164. {9985.78947368422, "arifle_MXM_Black_F"}, // 0.05%
  1165. {9990.52631578949, "arifle_MXC_Black_F"}, // 0.05%
  1166. {9995.26315789475, "arifle_MX_GL_Black_F"}, // 0.05%
  1167. {10000, "arifle_MX_Black_F"} // 0.05%
  1168. };
  1169. };
  1170.  
  1171. /**
  1172. Result of 100 rounds:
  1173.  
  1174. Exile_Item_ChristmasTinner
  1175. Exile_Item_ChristmasTinner
  1176. Exile_Item_InstantCoffee
  1177. ItemGPS
  1178. Exile_Item_Rope
  1179. 6Rnd_GreenSignal_F
  1180. Exile_Item_ZipTie
  1181. hgun_Pistol_Signal_F
  1182. Exile_Item_PlasticBottleDirtyWater
  1183. H_Beret_blk_POLICE
  1184. U_C_Poor_shorts_1
  1185. Exile_Item_ZipTie
  1186. FlareYellow_F
  1187. Exile_Item_CatFood
  1188. Exile_Item_CanOpener
  1189. Exile_Item_ZipTie
  1190. Exile_Item_ToiletPaper
  1191. Exile_Item_PlasticBottleEmpty
  1192. Exile_Item_Can_Empty
  1193. muzzle_snds_acp
  1194. Exile_Item_Can_Empty
  1195. Exile_Item_Can_Empty
  1196. Exile_Item_ToiletPaper
  1197. Exile_Item_Beer
  1198. Exile_Item_JunkMetal
  1199. Exile_Item_PlasticBottleDirtyWater
  1200. Chemlight_yellow
  1201. Exile_Item_SeedAstics
  1202. 30Rnd_9x21_Mag
  1203. optic_Yorris
  1204. Exile_Item_Vishpirin
  1205. hgun_P07_F
  1206. V_Rangemaster_belt
  1207. SmokeShellBlue
  1208. ItemGPS
  1209. hgun_Pistol_Signal_F
  1210. optic_Aco
  1211. H_Hat_blue
  1212. Exile_Item_PlasticBottleEmpty
  1213. Exile_Item_Can_Empty
  1214. Exile_Item_Surstromming
  1215. Binocular
  1216. Exile_Item_PlasticBottleEmpty
  1217. hgun_Pistol_heavy_01_F
  1218. FlareWhite_F
  1219. Exile_Item_Can_Empty
  1220. Exile_Item_GloriousKnakworst
  1221. B_AssaultPack_cbr
  1222. FlareWhite_F
  1223. U_C_Journalist
  1224. Exile_Item_ToiletPaper
  1225. Exile_Item_SeedAstics
  1226. Exile_Item_ToiletPaper
  1227. SMG_01_F
  1228. Exile_Item_Can_Empty
  1229. Exile_Item_Surstromming
  1230. Chemlight_red
  1231. Exile_Item_ToiletPaper
  1232. Chemlight_green
  1233. Exile_Item_BeefParts
  1234. Exile_Item_ZipTie
  1235. hgun_Pistol_heavy_01_F
  1236. Exile_Item_Raisins
  1237. Exile_Item_PlasticBottleDirtyWater
  1238. Exile_Item_Vishpirin
  1239. hgun_Pistol_heavy_01_F
  1240. hgun_Rook40_F
  1241. SmokeShellGreen
  1242. Exile_Item_PlasticBottleEmpty
  1243. Exile_Item_PlasticBottleEmpty
  1244. Exile_Item_EnergyDrink
  1245. Exile_Item_PlasticBottleEmpty
  1246. B_AssaultPack_cbr
  1247. Exile_Item_Can_Empty
  1248. Exile_Item_ToiletPaper
  1249. Exile_Item_PlasticBottleFreshWater
  1250. SmokeShellPurple
  1251. Binocular
  1252. Exile_Item_Dogfood
  1253. B_AssaultPack_khk
  1254. Exile_Item_PlasticBottleFreshWater
  1255. Exile_Item_Noodles
  1256. Exile_Item_Can_Empty
  1257. 9Rnd_45ACP_Mag
  1258. B_OutdoorPack_blu
  1259. Exile_Item_BBQSandwich
  1260. Exile_Item_PlasticBottleEmpty
  1261. Exile_Item_EnergyDrink
  1262. Exile_Item_GloriousKnakworst
  1263. Exile_Item_GloriousKnakworst
  1264. optic_ACO_grn_smg
  1265. SmokeShellOrange
  1266. Exile_Item_EnergyDrink
  1267. hgun_PDW2000_F
  1268. Exile_Item_Cheathas
  1269. Exile_Item_ToiletPaper
  1270. 30Rnd_45ACP_Mag_SMG_01_Tracer_Green
  1271. B_AssaultPack_sgg
  1272. Exile_Item_ToiletPaper
  1273. Exile_Item_Can_Empty
  1274. */
  1275. class Shop
  1276. {
  1277. count = 140;
  1278. half = 8965.58823529411;
  1279. halfIndex = 70;
  1280. sum = 9999.99999999999;
  1281. items[] =
  1282. {
  1283. {833.333333333333, "Exile_Item_Can_Empty"}, // 8.33%
  1284. {1666.66666666667, "Exile_Item_ToiletPaper"}, // 8.33%
  1285. {2500, "Exile_Item_PlasticBottleEmpty"}, // 8.33%
  1286. {2875, "Exile_Item_PlasticBottleDirtyWater"}, // 3.75%
  1287. {3125, "Exile_Item_ZipTie"}, // 2.50%
  1288. {3375, "Exile_Item_MountainDupe"}, // 2.50%
  1289. {3587.5, "Exile_Item_EnergyDrink"}, // 2.13%
  1290. {3762.5, "ItemRadio"}, // 1.75%
  1291. {3937.5, "ItemWatch"}, // 1.75%
  1292. {4112.5, "hgun_P07_F"}, // 1.75%
  1293. {4287.5, "Exile_Item_Beer"}, // 1.75%
  1294. {4454.16666666667, "hgun_Rook40_F"}, // 1.67%
  1295. {4620.83333333333, "hgun_ACPC2_F"}, // 1.67%
  1296. {4770.83333333333, "Exile_Item_PlasticBottleFreshWater"}, // 1.50%
  1297. {4917.89215686275, "Exile_Item_Vishpirin"}, // 1.47%
  1298. {5059.55882352941, "SMG_01_F"}, // 1.42%
  1299. {5197.05882352941, "hgun_PDW2000_F"}, // 1.38%
  1300. {5334.55882352941, "SMG_02_F"}, // 1.38%
  1301. {5451.22549019608, "ItemGPS"}, // 1.17%
  1302. {5567.89215686275, "Binocular"}, // 1.17%
  1303. {5680.59707489553, "Exile_Item_InstantCoffee"}, // 1.13%
  1304. {5788.93040822887, "hgun_Pistol_Signal_F"}, // 1.08%
  1305. {5897.2637415622, "hgun_Pistol_heavy_02_F"}, // 1.08%
  1306. {6005.59707489553, "hgun_Pistol_heavy_01_F"}, // 1.08%
  1307. {6109.7637415622, "Chemlight_blue"}, // 1.04%
  1308. {6213.93040822887, "Chemlight_green"}, // 1.04%
  1309. {6318.09707489553, "Chemlight_red"}, // 1.04%
  1310. {6422.2637415622, "FlareGreen_F"}, // 1.04%
  1311. {6526.43040822887, "FlareRed_F"}, // 1.04%
  1312. {6630.59707489553, "FlareWhite_F"}, // 1.04%
  1313. {6734.7637415622, "FlareYellow_F"}, // 1.04%
  1314. {6838.93040822887, "Chemlight_yellow"}, // 1.04%
  1315. {6931.14352298297, "Exile_Item_Moobar"}, // 0.92%
  1316. {7023.35663773707, "Exile_Item_Raisins"}, // 0.92%
  1317. {7110.85663773707, "Exile_Item_PowerDrink"}, // 0.88%
  1318. {7192.82385085182, "Exile_Item_SeedAstics"}, // 0.82%
  1319. {7266.35326261653, "Exile_Item_Bandage"}, // 0.74%
  1320. {7338.07457409194, "Exile_Item_BeefParts"}, // 0.72%
  1321. {7409.79588556735, "Exile_Item_Cheathas"}, // 0.72%
  1322. {7481.51719704275, "Exile_Item_Surstromming"}, // 0.72%
  1323. {7553.23850851816, "Exile_Item_Noodles"}, // 0.72%
  1324. {7624.95981999357, "Exile_Item_Dogfood"}, // 0.72%
  1325. {7696.68113146898, "Exile_Item_CatFood"}, // 0.72%
  1326. {7768.40244294439, "Exile_Item_BBQSandwich"}, // 0.72%
  1327. {7840.1237544198, "Exile_Item_ChristmasTinner"}, // 0.72%
  1328. {7911.84506589521, "Exile_Item_SausageGravy"}, // 0.72%
  1329. {7973.32047573128, "Exile_Item_GloriousKnakworst"}, // 0.61%
  1330. {8028.32047573128, "Exile_Melee_Axe"}, // 0.55%
  1331. {8079.549983928, "Exile_Item_Matches"}, // 0.51%
  1332. {8130.77949212472, "Exile_Item_CanOpener"}, // 0.51%
  1333. {8180.77949212472, "SmokeShellOrange"}, // 0.50%
  1334. {8230.77949212472, "SmokeShellBlue"}, // 0.50%
  1335. {8277.44615879138, "SmokeShellYellow"}, // 0.47%
  1336. {8324.11282545805, "SmokeShellRed"}, // 0.47%
  1337. {8370.77949212472, "SmokeShell"}, // 0.47%
  1338. {8417.44615879138, "SmokeShellPurple"}, // 0.47%
  1339. {8464.11282545805, "SmokeShellGreen"}, // 0.47%
  1340. {8505.77949212472, "30Rnd_45ACP_Mag_SMG_01"}, // 0.42%
  1341. {8547.44615879138, "30Rnd_45ACP_Mag_SMG_01_Tracer_Green"}, // 0.42%
  1342. {8589.11282545805, "V_Rangemaster_belt"}, // 0.42%
  1343. {8630.77949212471, "B_OutdoorPack_blk"}, // 0.42%
  1344. {8668.27949212471, "B_OutdoorPack_blu"}, // 0.38%
  1345. {8705.77949212471, "B_OutdoorPack_tan"}, // 0.38%
  1346. {8739.11282545805, "B_HuntingBackpack"}, // 0.33%
  1347. {8772.44615879138, "30Rnd_9x21_Mag"}, // 0.33%
  1348. {8805.77949212472, "11Rnd_45ACP_Mag"}, // 0.33%
  1349. {8839.11282545805, "9Rnd_45ACP_Mag"}, // 0.33%
  1350. {8871.61282545805, "Exile_Item_Handsaw"}, // 0.33%
  1351. {8904.11282545805, "Exile_Item_Pliers"}, // 0.33%
  1352. {8934.85053037608, "Exile_Item_EMRE"}, // 0.31%
  1353. {8965.58823529411, "Exile_Item_CookingPot"}, // 0.31%
  1354. {8995.58823529411, "muzzle_snds_L"}, // 0.30%
  1355. {9025.58823529411, "muzzle_snds_acp"}, // 0.30%
  1356. {9055, "Exile_Item_InstaDoc"}, // 0.29%
  1357. {9084.16666666666, "B_AssaultPack_dgtl"}, // 0.29%
  1358. {9113.33333333333, "B_AssaultPack_rgr"}, // 0.29%
  1359. {9142.49999999999, "B_AssaultPack_sgg"}, // 0.29%
  1360. {9171.66666666666, "B_AssaultPack_khk"}, // 0.29%
  1361. {9200.83333333333, "B_AssaultPack_blk"}, // 0.29%
  1362. {9229.99999999999, "B_AssaultPack_mcamo"}, // 0.29%
  1363. {9259.16666666666, "B_AssaultPack_cbr"}, // 0.29%
  1364. {9286.66666666666, "Exile_Item_JunkMetal"}, // 0.28%
  1365. {9313.33333333332, "6Rnd_45ACP_Cylinder"}, // 0.27%
  1366. {9335.83333333332, "Exile_Item_LightBulb"}, // 0.23%
  1367. {9356.66666666666, "B_Kitbag_cbr"}, // 0.21%
  1368. {9377.49999999999, "V_TacVest_blk_POLICE"}, // 0.21%
  1369. {9398.33333333333, "V_Press_F"}, // 0.21%
  1370. {9419.16666666666, "B_Kitbag_mcamo"}, // 0.21%
  1371. {9439.99999999999, "B_Kitbag_sgg"}, // 0.21%
  1372. {9459.99999999999, "Exile_Item_ExtensionCord"}, // 0.20%
  1373. {9476.66666666666, "optic_ACO_grn_smg"}, // 0.17%
  1374. {9493.33333333333, "optic_Aco_smg"}, // 0.17%
  1375. {9509.99999999999, "optic_ACO_grn"}, // 0.17%
  1376. {9526.66666666666, "16Rnd_9x21_Mag"}, // 0.17%
  1377. {9543.33333333332, "optic_Aco"}, // 0.17%
  1378. {9559.99999999999, "optic_Holosight_smg"}, // 0.17%
  1379. {9574.99999999999, "H_StrawHat_dark"}, // 0.15%
  1380. {9589.99999999999, "H_StrawHat"}, // 0.15%
  1381. {9604.99999999999, "H_Cap_red"}, // 0.15%
  1382. {9619.99999999999, "H_Hat_grey"}, // 0.15%
  1383. {9634.99999999999, "H_Hat_checker"}, // 0.15%
  1384. {9649.99999999999, "H_Hat_brown"}, // 0.15%
  1385. {9664.99999999999, "H_Hat_blue"}, // 0.15%
  1386. {9679.99999999999, "H_Cap_tan"}, // 0.15%
  1387. {9694.99999999999, "H_Cap_press"}, // 0.15%
  1388. {9709.99999999999, "H_Hat_tan"}, // 0.15%
  1389. {9722.49999999999, "Exile_Item_Grinder"}, // 0.13%
  1390. {9734.99999999999, "H_Bandanna_surfer"}, // 0.13%
  1391. {9747.49999999999, "H_Beret_blk_POLICE"}, // 0.13%
  1392. {9759.99999999999, "H_Cap_blk_Raven"}, // 0.13%
  1393. {9772.49999999999, "H_Cap_grn"}, // 0.13%
  1394. {9784.99999999999, "H_Cap_headphones"}, // 0.13%
  1395. {9797.49999999999, "H_Cap_oli"}, // 0.13%
  1396. {9809.99999999999, "H_Cap_blk"}, // 0.13%
  1397. {9822.49999999999, "H_Cap_blu"}, // 0.13%
  1398. {9834.16666666666, "6Rnd_GreenSignal_F"}, // 0.12%
  1399. {9845.83333333332, "optic_MRD"}, // 0.12%
  1400. {9857.49999999999, "optic_Yorris"}, // 0.12%
  1401. {9869.16666666666, "6Rnd_RedSignal_F"}, // 0.12%
  1402. {9879.16666666666, "Exile_Item_MetalBoard"}, // 0.10%
  1403. {9889.16666666666, "Exile_Item_Rope"}, // 0.10%
  1404. {9899.16666666666, "Exile_Item_CamoTentKit"}, // 0.10%
  1405. {9906.66666666666, "Exile_Item_PortableGeneratorKit"}, // 0.08%
  1406. {9914.16666666666, "Exile_Item_FloodLightKit"}, // 0.08%
  1407. {9921.59240924091, "U_C_Journalist"}, // 0.07%
  1408. {9929.01815181517, "U_Rangemaster"}, // 0.07%
  1409. {9936.44389438943, "U_C_Scientist"}, // 0.07%
  1410. {9943.86963696369, "U_C_HunterBody_grn"}, // 0.07%
  1411. {9951.29537953795, "U_C_Poor_shorts_1"}, // 0.07%
  1412. {9958.7211221122, "U_C_Poor_1"}, // 0.07%
  1413. {9966.14686468646, "U_C_Poor_2"}, // 0.07%
  1414. {9971.92244224422, "U_C_Poloshirt_blue"}, // 0.06%
  1415. {9977.69801980197, "U_C_Poloshirt_burgundy"}, // 0.06%
  1416. {9983.47359735973, "U_C_Poloshirt_stripped"}, // 0.06%
  1417. {9989.24917491748, "U_C_Poloshirt_tricolour"}, // 0.06%
  1418. {9995.02475247524, "U_C_Poloshirt_salmon"}, // 0.06%
  1419. {9997.52475247524, "Exile_Item_ThermalScannerPro"}, // 0.03%
  1420. {9998.34983498349, "U_NikosAgedBody"}, // 0.01%
  1421. {9999.17491749174, "U_NikosBody"}, // 0.01%
  1422. {9999.99999999999, "U_OrestesBody"} // 0.01%
  1423. };
  1424. };
  1425.  
  1426. /**
  1427. Result of 100 rounds:
  1428.  
  1429. FlareRed_F
  1430. FlareRed_F
  1431. Exile_Item_Pliers
  1432. Exile_Item_Pliers
  1433. Exile_Item_FloodLightKit
  1434. Exile_Item_PortableGeneratorKit
  1435. Exile_Item_PlasticBottleEmpty
  1436. Exile_Item_Pliers
  1437. Exile_Item_ToiletPaper
  1438. Exile_Item_CamoTentKit
  1439. Exile_Item_FloodLightKit
  1440. Exile_Item_PlasticBottleEmpty
  1441. Exile_Item_ZipTie
  1442. FlareGreen_F
  1443. FlareWhite_F
  1444. Exile_Item_PlasticBottleEmpty
  1445. Exile_Item_Can_Empty
  1446. Exile_Item_Can_Empty
  1447. Exile_Item_FuelCanisterEmpty
  1448. Exile_Item_DuctTape
  1449. Exile_Item_FuelCanisterEmpty
  1450. Exile_Item_FuelCanisterEmpty
  1451. Exile_Item_Can_Empty
  1452. Exile_Item_FuelCanisterFull
  1453. Exile_Item_Grinder
  1454. Exile_Item_ToiletPaper
  1455. Exile_Item_JunkMetal
  1456. FlareYellow_F
  1457. Exile_Item_ExtensionCord
  1458. Exile_Item_PortableGeneratorKit
  1459. Exile_Melee_Axe
  1460. Exile_Item_FuelCanisterFull
  1461. Exile_Item_LightBulb
  1462. FlareWhite_F
  1463. Exile_Item_Pliers
  1464. Exile_Item_Pliers
  1465. Exile_Item_MetalBoard
  1466. Exile_Item_CamoTentKit
  1467. Exile_Item_ToiletPaper
  1468. Exile_Item_FuelCanisterEmpty
  1469. FlareGreen_F
  1470. Exile_Item_Pliers
  1471. Exile_Item_ToiletPaper
  1472. Exile_Item_Handsaw
  1473. Exile_Item_ZipTie
  1474. Exile_Item_FuelCanisterEmpty
  1475. FlareRed_F
  1476. Exile_Item_Grinder
  1477. Exile_Item_ZipTie
  1478. Exile_Item_FloodLightKit
  1479. Exile_Item_Can_Empty
  1480. FlareYellow_F
  1481. Exile_Item_Can_Empty
  1482. Exile_Melee_Axe
  1483. Exile_Item_FuelCanisterEmpty
  1484. FlareGreen_F
  1485. Exile_Item_ZipTie
  1486. Exile_Item_Can_Empty
  1487. Exile_Item_Handsaw
  1488. FlareYellow_F
  1489. Exile_Item_PlasticBottleEmpty
  1490. Exile_Item_Handsaw
  1491. Exile_Item_JunkMetal
  1492. Exile_Item_PlasticBottleEmpty
  1493. Exile_Melee_Axe
  1494. Exile_Item_Handsaw
  1495. Exile_Item_FuelCanisterFull
  1496. Exile_Item_LightBulb
  1497. Exile_Item_ToiletPaper
  1498. Exile_Item_ToiletPaper
  1499. Exile_Item_PlasticBottleEmpty
  1500. Exile_Item_Can_Empty
  1501. Exile_Item_Grinder
  1502. Exile_Item_FuelCanisterEmpty
  1503. Exile_Item_Can_Empty
  1504. Exile_Melee_Axe
  1505. Exile_Item_LightBulb
  1506. Exile_Item_Pliers
  1507. FlareGreen_F
  1508. Exile_Item_DuctTape
  1509. Exile_Melee_Axe
  1510. FlareGreen_F
  1511. Exile_Item_FuelCanisterEmpty
  1512. Exile_Item_ExtensionCord
  1513. Exile_Item_LightBulb
  1514. FlareRed_F
  1515. Exile_Item_ToiletPaper
  1516. Exile_Item_PlasticBottleEmpty
  1517. FlareRed_F
  1518. FlareRed_F
  1519. Exile_Item_Rope
  1520. FlareWhite_F
  1521. Exile_Item_PlasticBottleEmpty
  1522. Exile_Melee_Axe
  1523. FlareYellow_F
  1524. Exile_Item_Can_Empty
  1525. Exile_Item_LightBulb
  1526. Exile_Item_DuctTape
  1527. Exile_Item_Can_Empty
  1528. Exile_Item_FuelCanisterEmpty
  1529. */
  1530. class Industrial
  1531. {
  1532. count = 24;
  1533. half = 8030.4347826087;
  1534. halfIndex = 12;
  1535. sum = 10000;
  1536. items[] =
  1537. {
  1538. {1086.95652173913, "Exile_Item_FuelCanisterEmpty"}, // 10.87%
  1539. {1956.52173913043, "Exile_Item_Can_Empty"}, // 8.70%
  1540. {2826.08695652174, "Exile_Item_ToiletPaper"}, // 8.70%
  1541. {3695.65217391304, "Exile_Item_PlasticBottleEmpty"}, // 8.70%
  1542. {4565.21739130435, "Exile_Item_FuelCanisterFull"}, // 8.70%
  1543. {5330.4347826087, "Exile_Melee_Axe"}, // 7.65%
  1544. {5782.60869565217, "Exile_Item_Pliers"}, // 4.52%
  1545. {6234.78260869565, "Exile_Item_Handsaw"}, // 4.52%
  1546. {6669.5652173913, "Exile_Item_ZipTie"}, // 4.35%
  1547. {7052.17391304348, "Exile_Item_JunkMetal"}, // 3.83%
  1548. {7378.26086956522, "FlareYellow_F"}, // 3.26%
  1549. {7704.34782608696, "FlareGreen_F"}, // 3.26%
  1550. {8030.4347826087, "FlareRed_F"}, // 3.26%
  1551. {8356.52173913043, "FlareWhite_F"}, // 3.26%
  1552. {8669.5652173913, "Exile_Item_LightBulb"}, // 3.13%
  1553. {8947.82608695652, "Exile_Item_ExtensionCord"}, // 2.78%
  1554. {9165.21739130435, "Exile_Item_DuctTape"}, // 2.17%
  1555. {9339.13043478261, "Exile_Item_Grinder"}, // 1.74%
  1556. {9478.26086956522, "Exile_Item_Rope"}, // 1.39%
  1557. {9617.39130434782, "Exile_Item_MetalBoard"}, // 1.39%
  1558. {9756.52173913043, "Exile_Item_CamoTentKit"}, // 1.39%
  1559. {9860.86956521739, "Exile_Item_PortableGeneratorKit"}, // 1.04%
  1560. {9965.21739130434, "Exile_Item_FloodLightKit"}, // 1.04%
  1561. {10000, "Exile_Item_ThermalScannerPro"} // 0.35%
  1562. };
  1563. };
  1564.  
  1565. /**
  1566. Result of 100 rounds:
  1567.  
  1568. Exile_Item_LightBulb
  1569. Exile_Item_LightBulb
  1570. Exile_Item_BaseCameraKit
  1571. Exile_Item_BaseCameraKit
  1572. Exile_Item_FloodLightKit
  1573. Exile_Item_FloodLightKit
  1574. Exile_Item_PlasticBottleEmpty
  1575. Exile_Item_BaseCameraKit
  1576. Exile_Item_PlasticBottleEmpty
  1577. Exile_Item_PortableGeneratorKit
  1578. Exile_Item_FloodLightKit
  1579. Exile_Item_PlasticBottleEmpty
  1580. Exile_Item_Handsaw
  1581. Exile_Item_JunkMetal
  1582. Exile_Item_LightBulb
  1583. Exile_Item_PlasticBottleEmpty
  1584. Exile_Item_ToiletPaper
  1585. Exile_Item_ToiletPaper
  1586. Exile_Item_Can_Empty
  1587. Exile_Item_MetalBoard
  1588. Exile_Item_Can_Empty
  1589. Exile_Item_Can_Empty
  1590. Exile_Item_ToiletPaper
  1591. Exile_Melee_Axe
  1592. Exile_Item_Rope
  1593. Exile_Item_ToiletPaper
  1594. Exile_Item_Handsaw
  1595. Exile_Item_Handsaw
  1596. Exile_Item_Grinder
  1597. Exile_Item_FloodLightKit
  1598. Exile_Melee_Axe
  1599. Exile_Item_PlasticBottleEmpty
  1600. Exile_Item_ExtensionCord
  1601. Exile_Item_LightBulb
  1602. Exile_Item_BaseCameraKit
  1603. Exile_Item_BaseCameraKit
  1604. Exile_Item_Laptop
  1605. Exile_Item_PortableGeneratorKit
  1606. Exile_Item_ToiletPaper
  1607. Exile_Item_Can_Empty
  1608. Exile_Item_JunkMetal
  1609. Exile_Item_BaseCameraKit
  1610. Exile_Item_ToiletPaper
  1611. Exile_Item_Pliers
  1612. Exile_Item_Handsaw
  1613. Exile_Item_Can_Empty
  1614. Exile_Item_LightBulb
  1615. Exile_Item_CamoTentKit
  1616. Exile_Item_Handsaw
  1617. Exile_Item_FloodLightKit
  1618. Exile_Item_Can_Empty
  1619. Exile_Item_Handsaw
  1620. Exile_Item_ToiletPaper
  1621. Exile_Melee_Axe
  1622. Exile_Item_Can_Empty
  1623. Exile_Item_JunkMetal
  1624. Exile_Item_Pliers
  1625. Exile_Item_ToiletPaper
  1626. Exile_Item_Pliers
  1627. Exile_Item_JunkMetal
  1628. Exile_Item_PlasticBottleEmpty
  1629. Exile_Item_Pliers
  1630. Exile_Item_Handsaw
  1631. Exile_Item_PlasticBottleEmpty
  1632. Exile_Melee_Axe
  1633. Exile_Item_Pliers
  1634. Exile_Melee_Axe
  1635. Exile_Item_ExtensionCord
  1636. Exile_Item_ToiletPaper
  1637. Exile_Item_ToiletPaper
  1638. Exile_Item_PlasticBottleEmpty
  1639. Exile_Item_ToiletPaper
  1640. Exile_Item_CamoTentKit
  1641. Exile_Item_Can_Empty
  1642. Exile_Item_ToiletPaper
  1643. Exile_Melee_Axe
  1644. Exile_Item_ExtensionCord
  1645. Exile_Item_BaseCameraKit
  1646. Exile_Item_JunkMetal
  1647. Exile_Item_CamoTentKit
  1648. Exile_Melee_Axe
  1649. Exile_Item_JunkMetal
  1650. Exile_Item_Can_Empty
  1651. Exile_Item_Grinder
  1652. Exile_Item_Grinder
  1653. Exile_Item_JunkMetal
  1654. Exile_Item_ToiletPaper
  1655. Exile_Item_PlasticBottleEmpty
  1656. Exile_Item_LightBulb
  1657. Exile_Item_LightBulb
  1658. Exile_Item_Laptop
  1659. Exile_Item_LightBulb
  1660. Exile_Item_PlasticBottleEmpty
  1661. Exile_Item_BaseCameraKit
  1662. Exile_Item_JunkMetal
  1663. Exile_Item_ToiletPaper
  1664. Exile_Item_ExtensionCord
  1665. Exile_Item_CamoTentKit
  1666. Exile_Item_Can_Empty
  1667. Exile_Item_Can_Empty
  1668. */
  1669. class Factories
  1670. {
  1671. count = 18;
  1672. half = 8600;
  1673. halfIndex = 9;
  1674. sum = 10000;
  1675. items[] =
  1676. {
  1677. {1333.33333333333, "Exile_Item_Can_Empty"}, // 13.33%
  1678. {2666.66666666667, "Exile_Item_ToiletPaper"}, // 13.33%
  1679. {4000, "Exile_Item_PlasticBottleEmpty"}, // 13.33%
  1680. {5100, "Exile_Melee_Axe"}, // 11.00%
  1681. {5900, "Exile_Item_BaseCameraKit"}, // 8.00%
  1682. {6550, "Exile_Item_Pliers"}, // 6.50%
  1683. {7200, "Exile_Item_Handsaw"}, // 6.50%
  1684. {7750, "Exile_Item_JunkMetal"}, // 5.50%
  1685. {8200, "Exile_Item_LightBulb"}, // 4.50%
  1686. {8600, "Exile_Item_ExtensionCord"}, // 4.00%
  1687. {8850, "Exile_Item_Grinder"}, // 2.50%
  1688. {9050, "Exile_Item_MetalBoard"}, // 2.00%
  1689. {9250, "Exile_Item_CamoTentKit"}, // 2.00%
  1690. {9450, "Exile_Item_Rope"}, // 2.00%
  1691. {9650, "Exile_Item_Laptop"}, // 2.00%
  1692. {9800, "Exile_Item_PortableGeneratorKit"}, // 1.50%
  1693. {9950, "Exile_Item_FloodLightKit"}, // 1.50%
  1694. {10000, "Exile_Item_ThermalScannerPro"} // 0.50%
  1695. };
  1696. };
  1697.  
  1698. /**
  1699. Result of 100 rounds:
  1700.  
  1701. FlareGreen_F
  1702. FlareGreen_F
  1703. Exile_Item_PlasticBottleEmpty
  1704. Exile_Item_PlasticBottleEmpty
  1705. Exile_Item_FloodLightKit
  1706. Exile_Item_CamoTentKit
  1707. Exile_Item_FuelCanisterFull
  1708. Exile_Melee_Axe
  1709. Exile_Item_FuelCanisterFull
  1710. Exile_Item_Rope
  1711. Exile_Item_PortableGeneratorKit
  1712. Exile_Item_FuelCanisterFull
  1713. Exile_Item_DuctTape
  1714. FlareGreen_F
  1715. FlareYellow_F
  1716. Exile_Item_FuelCanisterFull
  1717. Exile_Item_FuelCanisterEmpty
  1718. Exile_Item_FuelCanisterEmpty
  1719. Exile_Item_FuelCanisterEmpty
  1720. Exile_Item_JunkMetal
  1721. Exile_Item_FuelCanisterEmpty
  1722. Exile_Item_FuelCanisterEmpty
  1723. Exile_Item_FuelCanisterEmpty
  1724. Exile_Item_ToiletPaper
  1725. Exile_Item_LightBulb
  1726. Exile_Item_FuelCanisterFull
  1727. Exile_Item_DuctTape
  1728. FlareWhite_F
  1729. Exile_Item_Pliers
  1730. Exile_Item_CamoTentKit
  1731. Exile_Item_PlasticBottleEmpty
  1732. Exile_Item_Can_Empty
  1733. Exile_Item_Handsaw
  1734. FlareYellow_F
  1735. Exile_Item_PlasticBottleEmpty
  1736. Exile_Melee_Axe
  1737. Exile_Item_Grinder
  1738. Exile_Item_MetalBoard
  1739. Exile_Item_FuelCanisterFull
  1740. Exile_Item_FuelCanisterEmpty
  1741. FlareRed_F
  1742. Exile_Item_PlasticBottleEmpty
  1743. Exile_Item_FuelCanisterFull
  1744. Exile_Melee_Axe
  1745. Exile_Item_ZipTie
  1746. Exile_Item_FuelCanisterEmpty
  1747. FlareGreen_F
  1748. Exile_Item_LightBulb
  1749. Exile_Item_ZipTie
  1750. Exile_Item_PortableGeneratorKit
  1751. Exile_Item_FuelCanisterEmpty
  1752. FlareWhite_F
  1753. Exile_Item_FuelCanisterEmpty
  1754. Exile_Item_PlasticBottleEmpty
  1755. Exile_Item_FuelCanisterEmpty
  1756. FlareRed_F
  1757. Exile_Item_ZipTie
  1758. Exile_Item_FuelCanisterEmpty
  1759. Exile_Melee_Axe
  1760. FlareWhite_F
  1761. Exile_Item_FuelCanisterFull
  1762. Exile_Melee_Axe
  1763. FlareWhite_F
  1764. Exile_Item_FuelCanisterFull
  1765. Exile_Item_ToiletPaper
  1766. Exile_Melee_Axe
  1767. Exile_Item_ToiletPaper
  1768. Exile_Item_Handsaw
  1769. Exile_Item_FuelCanisterFull
  1770. Exile_Item_FuelCanisterFull
  1771. Exile_Item_Can_Empty
  1772. Exile_Item_FuelCanisterFull
  1773. Exile_Item_LightBulb
  1774. Exile_Item_FuelCanisterEmpty
  1775. Exile_Item_FuelCanisterEmpty
  1776. Exile_Item_ToiletPaper
  1777. Exile_Item_Handsaw
  1778. Exile_Item_PlasticBottleEmpty
  1779. FlareRed_F
  1780. Exile_Item_LightBulb
  1781. Exile_Item_ToiletPaper
  1782. FlareRed_F
  1783. Exile_Item_FuelCanisterEmpty
  1784. Exile_Item_Pliers
  1785. Exile_Item_Pliers
  1786. FlareGreen_F
  1787. Exile_Item_FuelCanisterFull
  1788. Exile_Item_Can_Empty
  1789. FlareGreen_F
  1790. FlareGreen_F
  1791. Exile_Item_ExtensionCord
  1792. FlareYellow_F
  1793. Exile_Item_Can_Empty
  1794. Exile_Item_PlasticBottleEmpty
  1795. FlareRed_F
  1796. Exile_Item_FuelCanisterEmpty
  1797. Exile_Item_Handsaw
  1798. Exile_Item_LightBulb
  1799. Exile_Item_FuelCanisterEmpty
  1800. Exile_Item_FuelCanisterEmpty
  1801. */
  1802. class VehicleService
  1803. {
  1804. count = 24;
  1805. half = 8586.95652173913;
  1806. halfIndex = 12;
  1807. sum = 10000;
  1808. items[] =
  1809. {
  1810. {1739.13043478261, "Exile_Item_FuelCanisterEmpty"}, // 17.39%
  1811. {3130.4347826087, "Exile_Item_FuelCanisterFull"}, // 13.91%
  1812. {4000, "Exile_Item_Can_Empty"}, // 8.70%
  1813. {4869.5652173913, "Exile_Item_ToiletPaper"}, // 8.70%
  1814. {5739.13043478261, "Exile_Item_PlasticBottleEmpty"}, // 8.70%
  1815. {6217.39130434783, "Exile_Melee_Axe"}, // 4.78%
  1816. {6652.17391304348, "Exile_Item_ZipTie"}, // 4.35%
  1817. {7000, "Exile_Item_DuctTape"}, // 3.48%
  1818. {7326.08695652174, "FlareWhite_F"}, // 3.26%
  1819. {7652.17391304348, "FlareRed_F"}, // 3.26%
  1820. {7978.26086956522, "FlareGreen_F"}, // 3.26%
  1821. {8304.34782608696, "FlareYellow_F"}, // 3.26%
  1822. {8586.95652173913, "Exile_Item_Handsaw"}, // 2.83%
  1823. {8869.5652173913, "Exile_Item_Pliers"}, // 2.83%
  1824. {9108.69565217391, "Exile_Item_JunkMetal"}, // 2.39%
  1825. {9304.34782608696, "Exile_Item_LightBulb"}, // 1.96%
  1826. {9478.26086956522, "Exile_Item_ExtensionCord"}, // 1.74%
  1827. {9586.95652173913, "Exile_Item_Grinder"}, // 1.09%
  1828. {9673.91304347826, "Exile_Item_MetalBoard"}, // 0.87%
  1829. {9760.86956521739, "Exile_Item_Rope"}, // 0.87%
  1830. {9847.82608695652, "Exile_Item_CamoTentKit"}, // 0.87%
  1831. {9913.04347826087, "Exile_Item_FloodLightKit"}, // 0.65%
  1832. {9978.26086956522, "Exile_Item_PortableGeneratorKit"}, // 0.65%
  1833. {10000, "Exile_Item_ThermalScannerPro"} // 0.22%
  1834. };
  1835. };
  1836.  
  1837. /**
  1838. Result of 100 rounds:
  1839.  
  1840. V_PlateCarrierGL_rgr
  1841. V_PlateCarrierGL_rgr
  1842. 150Rnd_93x64_Mag
  1843. MiniGrenade
  1844. H_HelmetB_plain_blk
  1845. H_HelmetB_light
  1846. Exile_Item_ToiletPaper
  1847. APERSBoundingMine_Range_Mag
  1848. Exile_Item_ToiletPaper
  1849. U_O_OfficerUniform_ocamo
  1850. H_TurbanO_blk
  1851. Exile_Item_ToiletPaper
  1852. IEDLandSmall_Remote_Mag
  1853. arifle_MX_F
  1854. 5Rnd_127x108_Mag
  1855. Exile_Item_ToiletPaper
  1856. Exile_Item_Can_Empty
  1857. Exile_Item_ToiletPaper
  1858. Exile_Item_Can_Empty
  1859. srifle_DMR_02_camo_F
  1860. Exile_Item_Can_Empty
  1861. Exile_Item_Can_Empty
  1862. Exile_Item_Can_Empty
  1863. Exile_Item_PlasticBottleEmpty
  1864. V_BandollierB_oli
  1865. Exile_Item_ToiletPaper
  1866. 10Rnd_338_Mag
  1867. UGL_FlareYellow_F
  1868. optic_KHS_tan
  1869. H_HelmetSpecB_paint1
  1870. Exile_Item_PlasticBottleEmpty
  1871. Exile_Item_PlasticBottleEmpty
  1872. V_PlateCarrier1_rgr
  1873. muzzle_snds_338_black
  1874. MiniGrenade
  1875. LMG_Mk200_F
  1876. 3Rnd_SmokeGreen_Grenade_shell
  1877. H_Booniehat_tan
  1878. Exile_Item_ToiletPaper
  1879. Exile_Item_Can_Empty
  1880. B_Bergen_sgg
  1881. Exile_Item_Vishpirin
  1882. Exile_Item_ToiletPaper
  1883. Rangefinder
  1884. DemoCharge_Remote_Mag
  1885. Exile_Item_Can_Empty
  1886. U_B_CombatUniform_mcam_tshirt
  1887. V_HarnessO_brn
  1888. DemoCharge_Remote_Mag
  1889. H_BandMask_khk
  1890. Exile_Item_Can_Empty
  1891. UGL_FlareWhite_F
  1892. Exile_Item_Can_Empty
  1893. 1Rnd_HE_Grenade_shell
  1894. Exile_Item_Can_Empty
  1895. B_Bergen_sgg
  1896. U_IG_Guerilla2_1
  1897. Exile_Item_Can_Empty
  1898. 3Rnd_HE_Grenade_shell
  1899. B_Carryall_oucamo
  1900. Exile_Item_ToiletPaper
  1901. LMG_Zafir_F
  1902. B_Carryall_oli
  1903. Exile_Item_ToiletPaper
  1904. Exile_Item_PlasticBottleEmpty
  1905. Rangefinder
  1906. Exile_Item_PlasticBottleEmpty
  1907. optic_Arco
  1908. Exile_Item_ToiletPaper
  1909. Exile_Item_ToiletPaper
  1910. Exile_Item_PlasticBottleEmpty
  1911. Exile_Item_ToiletPaper
  1912. V_HarnessO_brn
  1913. Exile_Item_Can_Empty
  1914. Exile_Item_Can_Empty
  1915. Exile_Item_PlasticBottleEmpty
  1916. 1Rnd_SmokeBlue_Grenade_shell
  1917. Exile_Item_Vishpirin
  1918. SmokeShellYellow
  1919. Exile_Item_InstaDoc
  1920. Exile_Item_PlasticBottleEmpty
  1921. SmokeShellPurple
  1922. Exile_Item_Can_Empty
  1923. 30Rnd_65x39_caseless_green_mag_Tracer
  1924. V_PlateCarrier1_blk
  1925. V_PlateCarrierSpec_blk
  1926. Exile_Item_ToiletPaper
  1927. Exile_Item_PlasticBottleEmpty
  1928. U_B_CTRG_2
  1929. U_B_CTRG_2
  1930. V_Chestrig_blk
  1931. muzzle_snds_338_sand
  1932. Exile_Item_PlasticBottleEmpty
  1933. Exile_Item_ZipTie
  1934. B_Carryall_ocamo
  1935. Exile_Item_Can_Empty
  1936. optic_Holosight
  1937. bipod_01_F_mtp
  1938. Exile_Item_Can_Empty
  1939. Exile_Item_Can_Empty
  1940. */
  1941. class Military
  1942. {
  1943. count = 337;
  1944. half = 9071.22307938943;
  1945. halfIndex = 168;
  1946. sum = 9999.99999999997;
  1947. items[] =
  1948. {
  1949. {1650.16501650165, "Exile_Item_Can_Empty"}, // 16.50%
  1950. {3300.3300330033, "Exile_Item_ToiletPaper"}, // 16.50%
  1951. {4950.49504950495, "Exile_Item_PlasticBottleEmpty"}, // 16.50%
  1952. {5050, "1Rnd_HE_Grenade_shell"}, // 1.00%
  1953. {5149.0099009901, "ItemCompass"}, // 0.99%
  1954. {5248.0198019802, "Exile_Item_ZipTie"}, // 0.99%
  1955. {5322.27722772277, "HandGrenade"}, // 0.74%
  1956. {5396.53465346535, "MiniGrenade"}, // 0.74%
  1957. {5455.94059405941, "ItemRadio"}, // 0.59%
  1958. {5515.34653465346, "ItemWatch"}, // 0.59%
  1959. {5573.58765288293, "Exile_Item_Vishpirin"}, // 0.58%
  1960. {5624.08270238789, "150Rnd_93x64_Mag"}, // 0.50%
  1961. {5673.58765288293, "APERSTripMine_Wire_Mag"}, // 0.50%
  1962. {5723.09260337798, "arifle_MX_SW_Black_F"}, // 0.50%
  1963. {5772.59755387303, "APERSBoundingMine_Range_Mag"}, // 0.50%
  1964. {5822.10250436808, "LMG_Mk200_F"}, // 0.50%
  1965. {5871.60745486313, "arifle_MX_SW_F"}, // 0.50%
  1966. {5921.11240535818, "NVGoggles"}, // 0.50%
  1967. {5970.61735585323, "Rangefinder"}, // 0.50%
  1968. {6020.12230634828, "LMG_Zafir_F"}, // 0.50%
  1969. {6069.62725684333, "APERSMine_Range_Mag"}, // 0.50%
  1970. {6118.63715783343, "3Rnd_HE_Grenade_shell"}, // 0.49%
  1971. {6160.22131624927, "srifle_DMR_01_F"}, // 0.42%
  1972. {6201.80547466511, "srifle_EBR_F"}, // 0.42%
  1973. {6241.40943506115, "U_IG_Guerilla2_3"}, // 0.40%
  1974. {6281.01339545719, "U_IG_Guerilla2_2"}, // 0.40%
  1975. {6320.61735585323, "U_IG_Guerilla2_1"}, // 0.40%
  1976. {6360.22131624927, "U_IG_Guerilla1_1"}, // 0.40%
  1977. {6399.82527664531, "ItemGPS"}, // 0.40%
  1978. {6439.42923704135, "Binocular"}, // 0.40%
  1979. {6476.55794991264, "U_IG_Guerilla3_2"}, // 0.37%
  1980. {6513.68666278393, "U_IG_Guerilla3_1"}, // 0.37%
  1981. {6546.35993011066, "srifle_GM6_F"}, // 0.33%
  1982. {6579.03319743739, "srifle_LRR_F"}, // 0.33%
  1983. {6608.73616773442, "IEDUrbanSmall_Remote_Mag"}, // 0.30%
  1984. {6638.43913803145, "DemoCharge_Remote_Mag"}, // 0.30%
  1985. {6668.14210832848, "IEDLandSmall_Remote_Mag"}, // 0.30%
  1986. {6697.26266744321, "Exile_Item_Bandage"}, // 0.29%
  1987. {6725.48048922539, "B_Carryall_cbr"}, // 0.28%
  1988. {6753.27274213489, "10Rnd_338_Mag"}, // 0.28%
  1989. {6781.06499504439, "10Rnd_93x64_DMR_05_Mag"}, // 0.28%
  1990. {6808.78776732162, "10Rnd_762x51_Mag"}, // 0.28%
  1991. {6836.51053959885, "20Rnd_762x51_Mag"}, // 0.28%
  1992. {6864.23331187608, "B_FieldPack_oucamo"}, // 0.28%
  1993. {6891.95608415331, "B_FieldPack_cbr"}, // 0.28%
  1994. {6919.67885643053, "B_FieldPack_blk"}, // 0.28%
  1995. {6947.40162870776, "B_FieldPack_ocamo"}, // 0.28%
  1996. {6974.67986673565, "optic_DMS"}, // 0.27%
  1997. {7001.41254000297, "B_Carryall_khk"}, // 0.27%
  1998. {7028.1452132703, "B_Carryall_oli"}, // 0.27%
  1999. {7054.41314618604, "optic_LRPS"}, // 0.26%
  2000. {7080.68107910178, "optic_SOS"}, // 0.26%
  2001. {7105.92860385426, "UGL_FlareRed_F"}, // 0.25%
  2002. {7131.17612860673, "UGL_FlareYellow_F"}, // 0.25%
  2003. {7156.42365335921, "UGL_FlareWhite_F"}, // 0.25%
  2004. {7181.67117811168, "UGL_FlareGreen_F"}, // 0.25%
  2005. {7206.42365335921, "arifle_Katiba_F"}, // 0.25%
  2006. {7230.74187465502, "10Rnd_127x54_Mag"}, // 0.24%
  2007. {7254.19158804741, "30Rnd_556x45_Stanag"}, // 0.23%
  2008. {7277.6413014398, "30Rnd_65x39_caseless_green"}, // 0.23%
  2009. {7299.91852916257, "B_Carryall_oucamo"}, // 0.22%
  2010. {7322.19575688535, "SmokeShellOrange"}, // 0.22%
  2011. {7344.47298460812, "B_Carryall_ocamo"}, // 0.22%
  2012. {7366.75021233089, "SmokeShellBlue"}, // 0.22%
  2013. {7389.02744005366, "B_Carryall_mcamo"}, // 0.22%
  2014. {7410.80961827149, "B_Bergen_mcamo"}, // 0.22%
  2015. {7432.59179648931, "B_Bergen_sgg"}, // 0.22%
  2016. {7454.37397470713, "B_Bergen_blk"}, // 0.22%
  2017. {7476.15615292495, "B_Bergen_rgr"}, // 0.22%
  2018. {7497.15825313497, "acc_flashlight"}, // 0.21%
  2019. {7517.95033234289, "SmokeShellPurple"}, // 0.21%
  2020. {7538.74241155081, "V_PlateCarrierSpec_rgr"}, // 0.21%
  2021. {7559.53449075874, "SmokeShell"}, // 0.21%
  2022. {7580.32656996666, "SmokeShellRed"}, // 0.21%
  2023. {7601.11864917458, "SmokeShellGreen"}, // 0.21%
  2024. {7621.9107283825, "SmokeShellYellow"}, // 0.21%
  2025. {7641.71270858052, "arifle_TRG20_F"}, // 0.20%
  2026. {7661.51468877854, "arifle_Katiba_GL_F"}, // 0.20%
  2027. {7681.31666897656, "arifle_TRG21_F"}, // 0.20%
  2028. {7701.11864917458, "arifle_MX_F"}, // 0.20%
  2029. {7720.9206293726, "arifle_MXC_F"}, // 0.20%
  2030. {7740.22756006567, "V_PlateCarrierSpec_mtp"}, // 0.19%
  2031. {7759.53449075874, "V_PlateCarrierSpec_blk"}, // 0.19%
  2032. {7778.73028788947, "muzzle_snds_B"}, // 0.19%
  2033. {7797.83746176475, "20Rnd_762x51_Mag"}, // 0.19%
  2034. {7815.65924394297, "V_PlateCarrierGL_rgr"}, // 0.18%
  2035. {7833.48102612119, "V_PlateCarrierIAGL_dgtl"}, // 0.18%
  2036. {7851.30280829941, "V_PlateCarrierIAGL_oli"}, // 0.18%
  2037. {7869.12459047763, "V_PlateCarrierGL_blk"}, // 0.18%
  2038. {7886.94637265584, "V_PlateCarrierGL_mtp"}, // 0.18%
  2039. {7904.27310532911, "U_B_CTRG_3"}, // 0.17%
  2040. {7921.59983800238, "arifle_Mk20_F"}, // 0.17%
  2041. {7938.92657067565, "arifle_Mk20C_F"}, // 0.17%
  2042. {7956.25330334891, "U_B_CTRG_2"}, // 0.17%
  2043. {7973.58003602218, "U_B_CombatUniform_mcam_tshirt"}, // 0.17%
  2044. {7990.90676869545, "U_B_CombatUniform_mcam_vest"}, // 0.17%
  2045. {8008.23350136872, "U_B_CTRG_1"}, // 0.17%
  2046. {8025.56023404198, "U_B_CombatUniform_mcam_worn"}, // 0.17%
  2047. {8042.75669052974, "20Rnd_556x45_UW_mag"}, // 0.17%
  2048. {8059.58837369806, "7Rnd_408_Mag"}, // 0.17%
  2049. {8076.42005686637, "V_RebreatherIA"}, // 0.17%
  2050. {8093.25174003469, "U_I_GhillieSuit"}, // 0.17%
  2051. {8110.08342320301, "5Rnd_127x108_Mag"}, // 0.17%
  2052. {8126.58507336802, "muzzle_snds_B"}, // 0.17%
  2053. {8143.08672353304, "muzzle_snds_93mmg_tan"}, // 0.17%
  2054. {8159.58837369806, "muzzle_snds_93mmg"}, // 0.17%
  2055. {8176.09002386307, "muzzle_snds_338_sand"}, // 0.17%
  2056. {8192.59167402809, "muzzle_snds_338_green"}, // 0.17%
  2057. {8209.09332419311, "muzzle_snds_338_black"}, // 0.17%
  2058. {8225.42995785647, "V_RebreatherIR"}, // 0.16%
  2059. {8241.76659151984, "V_RebreatherB"}, // 0.16%
  2060. {8258.1032251832, "U_B_GhillieSuit"}, // 0.16%
  2061. {8274.43985884657, "U_O_GhillieSuit"}, // 0.16%
  2062. {8290.49551846659, "srifle_DMR_05_tan_F"}, // 0.16%
  2063. {8306.5511780866, "srifle_DMR_05_blk_F"}, // 0.16%
  2064. {8322.60683770662, "srifle_DMR_05_hex_F"}, // 0.16%
  2065. {8337.76141438878, "1Rnd_SmokeYellow_Grenade_shell"}, // 0.15%
  2066. {8352.91599107094, "1Rnd_SmokeOrange_Grenade_shell"}, // 0.15%
  2067. {8368.0705677531, "1Rnd_SmokeGreen_Grenade_shell"}, // 0.15%
  2068. {8383.22514443525, "1Rnd_SmokeBlue_Grenade_shell"}, // 0.15%
  2069. {8398.37972111741, "1Rnd_Smoke_Grenade_shell"}, // 0.15%
  2070. {8413.53429779957, "1Rnd_SmokeRed_Grenade_shell"}, // 0.15%
  2071. {8428.68887448173, "1Rnd_SmokePurple_Grenade_shell"}, // 0.15%
  2072. {8443.69037463174, "muzzle_snds_M"}, // 0.15%
  2073. {8458.69187478176, "muzzle_snds_H"}, // 0.15%
  2074. {8473.69337493177, "optic_Arco"}, // 0.15%
  2075. {8488.69487508178, "optic_DMS"}, // 0.15%
  2076. {8503.6963752318, "optic_Hamr"}, // 0.15%
  2077. {8518.69787538181, "optic_MRCO"}, // 0.15%
  2078. {8533.69937553183, "acc_pointer_IR"}, // 0.15%
  2079. {8548.70087568184, "optic_Holosight"}, // 0.15%
  2080. {8563.55236083036, "V_PlateCarrier1_rgr"}, // 0.15%
  2081. {8578.40384597887, "V_PlateCarrier2_rgr"}, // 0.15%
  2082. {8593.25533112738, "arifle_SDAR_F"}, // 0.15%
  2083. {8608.1068162759, "V_PlateCarrier3_rgr"}, // 0.15%
  2084. {8622.95830142441, "arifle_MXM_F"}, // 0.15%
  2085. {8637.80978657293, "V_PlateCarrier1_blk"}, // 0.15%
  2086. {8652.66127172144, "V_PlateCarrierGL_rgr"}, // 0.15%
  2087. {8667.51275686996, "V_PlateCarrierIA1_dgtl"}, // 0.15%
  2088. {8682.36424201847, "V_PlateCarrierIA2_dgtl"}, // 0.15%
  2089. {8697.21572716698, "V_PlateCarrierIAGL_dgtl"}, // 0.15%
  2090. {8712.0672123155, "V_PlateCarrierSpec_rgr"}, // 0.15%
  2091. {8726.21148388551, "optic_KHS_old"}, // 0.14%
  2092. {8740.35575545553, "optic_KHS_hex"}, // 0.14%
  2093. {8754.50002702554, "optic_KHS_tan"}, // 0.14%
  2094. {8768.64429859555, "optic_AMS_snd"}, // 0.14%
  2095. {8782.78857016557, "optic_AMS_khk"}, // 0.14%
  2096. {8796.93284173558, "optic_AMS"}, // 0.14%
  2097. {8811.0771133056, "optic_KHS_blk"}, // 0.14%
  2098. {8825.14694134103, "30Rnd_65x39_caseless_green_mag_Tracer"}, // 0.14%
  2099. {8839.21676937647, "30Rnd_65x39_caseless_mag"}, // 0.14%
  2100. {8853.2865974119, "30Rnd_65x39_caseless_mag_Tracer"}, // 0.14%
  2101. {8867.35642544734, "30Rnd_556x45_Stanag_Tracer_Yellow"}, // 0.14%
  2102. {8881.42625348277, "30Rnd_556x45_Stanag_Tracer_Red"}, // 0.14%
  2103. {8895.49608151821, "30Rnd_556x45_Stanag_Tracer_Green"}, // 0.14%
  2104. {8909.54478368572, "srifle_DMR_04_F"}, // 0.14%
  2105. {8923.59348585324, "srifle_DMR_04_Tan_F"}, // 0.14%
  2106. {8936.15444344153, "bipod_02_F_blk"}, // 0.13%
  2107. {8948.71540102983, "bipod_01_F_snd"}, // 0.13%
  2108. {8961.27635861812, "bipod_01_F_blk"}, // 0.13%
  2109. {8973.83731620642, "bipod_03_F_blk"}, // 0.13%
  2110. {8986.39827379472, "bipod_02_F_tan"}, // 0.13%
  2111. {8998.95923138301, "bipod_03_F_oli"}, // 0.13%
  2112. {9011.33546900677, "U_B_CombatUniform_mcam"}, // 0.12%
  2113. {9023.37721372179, "srifle_DMR_02_camo_F"}, // 0.12%
  2114. {9035.4189584368, "srifle_DMR_02_sniper_F"}, // 0.12%
  2115. {9047.46070315181, "srifle_DMR_02_F"}, // 0.12%
  2116. {9059.34189127062, "100Rnd_65x39_caseless_mag"}, // 0.12%
  2117. {9071.22307938943, "3Rnd_UGL_FlareGreen_F"}, // 0.12%
  2118. {9083.10426750825, "150Rnd_762x54_Box"}, // 0.12%
  2119. {9094.98545562706, "3Rnd_UGL_FlareRed_F"}, // 0.12%
  2120. {9106.86664374587, "3Rnd_UGL_FlareWhite_F"}, // 0.12%
  2121. {9118.74783186468, "3Rnd_UGL_FlareYellow_F"}, // 0.12%
  2122. {9130.56990959484, "bipod_02_F_hex"}, // 0.12%
  2123. {9142.39198732501, "bipod_01_F_mtp"}, // 0.12%
  2124. {9154.0402109709, "Exile_Item_InstaDoc"}, // 0.12%
  2125. {9164.43625057486, "V_HarnessO_gry"}, // 0.10%
  2126. {9174.83229017882, "V_BandollierB_khk"}, // 0.10%
  2127. {9185.22832978278, "V_BandollierB_cbr"}, // 0.10%
  2128. {9195.62436938674, "V_HarnessOSpec_gry"}, // 0.10%
  2129. {9206.0204089907, "V_HarnessOSpec_brn"}, // 0.10%
  2130. {9216.41644859466, "V_HarnessOGL_gry"}, // 0.10%
  2131. {9226.81248819862, "V_BandollierB_rgr"}, // 0.10%
  2132. {9237.20852780258, "V_HarnessOGL_brn"}, // 0.10%
  2133. {9247.60456740654, "V_HarnessO_brn"}, // 0.10%
  2134. {9258.0006070105, "V_BandollierB_blk"}, // 0.10%
  2135. {9268.39664661446, "V_BandollierB_oli"}, // 0.10%
  2136. {9278.29763671347, "5Rnd_127x108_APDS_Mag"}, // 0.10%
  2137. {9288.19862681248, "arifle_TRG21_GL_F"}, // 0.10%
  2138. {9298.09961691149, "150Rnd_762x54_Box_Tracer"}, // 0.10%
  2139. {9308.0006070105, "100Rnd_65x39_caseless_mag_Tracer"}, // 0.10%
  2140. {9317.90159710951, "arifle_MX_GL_F"}, // 0.10%
  2141. {9327.80258720852, "arifle_Mk20_GL_F"}, // 0.10%
  2142. {9337.70357730753, "SatchelCharge_Remote_Mag"}, // 0.10%
  2143. {9347.60456740654, "U_B_PilotCoveralls"}, // 0.10%
  2144. {9357.50555750555, "U_B_HeliPilotCoveralls"}, // 0.10%
  2145. {9367.40654760456, "U_I_CombatUniform_shortsleeve"}, // 0.10%
  2146. {9377.30753770357, "U_I_CombatUniform_tshirt"}, // 0.10%
  2147. {9387.20852780258, "U_I_CombatUniform"}, // 0.10%
  2148. {9397.10951790158, "U_I_pilotCoveralls"}, // 0.10%
  2149. {9407.01050800059, "U_I_HeliPilotCoveralls"}, // 0.10%
  2150. {9416.9114980996, "U_O_PilotCoveralls"}, // 0.10%
  2151. {9426.81248819861, "U_IG_leader"}, // 0.10%
  2152. {9434.31323827362, "optic_NVS"}, // 0.08%
  2153. {9441.73898084788, "V_PlateCarrierL_CTRG"}, // 0.07%
  2154. {9449.16472342214, "arifle_MX_Black_F"}, // 0.07%
  2155. {9456.59046599639, "arifle_MXC_Black_F"}, // 0.07%
  2156. {9464.01620857065, "V_Chestrig_khk"}, // 0.07%
  2157. {9471.44195114491, "V_Chestrig_blk"}, // 0.07%
  2158. {9478.86769371917, "V_Chestrig_oli"}, // 0.07%
  2159. {9486.29343629343, "arifle_MXM_Black_F"}, // 0.07%
  2160. {9493.71917886768, "arifle_MX_GL_Black_F"}, // 0.07%
  2161. {9501.14492144194, "V_Chestrig_rgr"}, // 0.07%
  2162. {9508.5706640162, "V_PlateCarrierH_CTRG"}, // 0.07%
  2163. {9515.99640659046, "U_B_SpecopsUniform_sgg"}, // 0.07%
  2164. {9522.05823726332, "3Rnd_SmokePurple_Grenade_shell"}, // 0.06%
  2165. {9528.12006793618, "3Rnd_Smoke_Grenade_shell"}, // 0.06%
  2166. {9534.18189860905, "3Rnd_SmokeBlue_Grenade_shell"}, // 0.06%
  2167. {9540.24372928191, "3Rnd_SmokeGreen_Grenade_shell"}, // 0.06%
  2168. {9546.30555995477, "3Rnd_SmokeOrange_Grenade_shell"}, // 0.06%
  2169. {9552.36739062764, "3Rnd_SmokeYellow_Grenade_shell"}, // 0.06%
  2170. {9558.4292213005, "3Rnd_SmokeRed_Grenade_shell"}, // 0.06%
  2171. {9564.450093658, "srifle_DMR_06_camo_F"}, // 0.06%
  2172. {9570.47096601551, "srifle_DMR_06_olive_F"}, // 0.06%
  2173. {9576.49183837301, "srifle_DMR_03_woodland_F"}, // 0.06%
  2174. {9582.51271073052, "srifle_DMR_03_tan_F"}, // 0.06%
  2175. {9588.53358308802, "srifle_DMR_03_khaki_F"}, // 0.06%
  2176. {9594.55445544553, "srifle_DMR_03_F"}, // 0.06%
  2177. {9600.49504950494, "H_Booniehat_khk"}, // 0.06%
  2178. {9606.43564356434, "H_Booniehat_khk_hs"}, // 0.06%
  2179. {9612.37623762375, "H_MilCap_dgtl"}, // 0.06%
  2180. {9618.31683168315, "H_MilCap_rucamo"}, // 0.06%
  2181. {9624.25742574256, "H_MilCap_blue"}, // 0.06%
  2182. {9630.19801980197, "H_MilCap_oucamo"}, // 0.06%
  2183. {9636.13861386137, "H_MilCap_mcamo"}, // 0.06%
  2184. {9642.07920792078, "H_Booniehat_indp"}, // 0.06%
  2185. {9648.01980198018, "H_Booniehat_mcamo"}, // 0.06%
  2186. {9653.96039603959, "H_Booniehat_tan"}, // 0.06%
  2187. {9659.900990099, "H_Booniehat_dirty"}, // 0.06%
  2188. {9665.8415841584, "H_Booniehat_dgtl"}, // 0.06%
  2189. {9671.78217821781, "H_Booniehat_grn"}, // 0.06%
  2190. {9677.72277227722, "H_MilCap_ocamo"}, // 0.06%
  2191. {9683.66336633662, "U_I_FullGhillie_sard"}, // 0.06%
  2192. {9689.10891089108, "U_I_FullGhillie_lsh"}, // 0.05%
  2193. {9694.55445544553, "U_I_FullGhillie_ard"}, // 0.05%
  2194. {9699.99999999999, "U_O_FullGhillie_sard"}, // 0.05%
  2195. {9705.44554455444, "U_O_FullGhillie_lsh"}, // 0.05%
  2196. {9710.8910891089, "U_O_FullGhillie_ard"}, // 0.05%
  2197. {9716.33663366335, "U_B_FullGhillie_sard"}, // 0.05%
  2198. {9721.78217821781, "U_B_FullGhillie_lsh"}, // 0.05%
  2199. {9727.22772277226, "U_B_FullGhillie_ard"}, // 0.05%
  2200. {9732.17821782177, "U_I_Wetsuit"}, // 0.05%
  2201. {9737.12871287127, "U_I_G_resistanceLeader_F"}, // 0.05%
  2202. {9742.07920792078, "U_O_OfficerUniform_ocamo"}, // 0.05%
  2203. {9747.02970297028, "U_I_OfficerUniform"}, // 0.05%
  2204. {9751.98019801979, "U_B_Wetsuit"}, // 0.05%
  2205. {9756.93069306929, "U_O_Wetsuit"}, // 0.05%
  2206. {9761.8811881188, "130Rnd_338_Mag"}, // 0.05%
  2207. {9766.8316831683, "U_O_CombatUniform_ocamo"}, // 0.05%
  2208. {9771.78217821781, "U_O_CombatUniform_oucamo"}, // 0.05%
  2209. {9776.73267326731, "U_O_SpecopsUniform_ocamo"}, // 0.05%
  2210. {9781.68316831682, "U_O_SpecopsUniform_blk"}, // 0.05%
  2211. {9786.13861386137, "H_Bandanna_khk"}, // 0.04%
  2212. {9790.59405940592, "H_Bandanna_khk_hs"}, // 0.04%
  2213. {9795.04950495048, "H_Bandanna_cbr"}, // 0.04%
  2214. {9799.50495049503, "H_Bandanna_sgg"}, // 0.04%
  2215. {9803.96039603959, "H_Bandanna_gry"}, // 0.04%
  2216. {9808.41584158414, "H_Bandanna_camo"}, // 0.04%
  2217. {9812.8712871287, "H_Bandanna_mcamo"}, // 0.04%
  2218. {9817.32673267325, "V_I_G_resistanceLeader_F"}, // 0.04%
  2219. {9821.7821782178, "H_BandMask_blk"}, // 0.04%
  2220. {9826.23762376236, "H_Cap_khaki_specops_UK"}, // 0.04%
  2221. {9830.69306930691, "H_HelmetSpecB"}, // 0.04%
  2222. {9835.14851485147, "H_HelmetB_light"}, // 0.04%
  2223. {9839.60396039602, "H_HelmetB_paint"}, // 0.04%
  2224. {9844.05940594057, "H_HelmetB"}, // 0.04%
  2225. {9848.51485148513, "H_HelmetSpecB_paint1"}, // 0.04%
  2226. {9852.97029702968, "H_HelmetSpecB_paint2"}, // 0.04%
  2227. {9857.42574257424, "H_HelmetSpecB_blk"}, // 0.04%
  2228. {9861.88118811879, "H_Hat_camo"}, // 0.04%
  2229. {9866.33663366334, "H_Cap_brn_SPECOPS"}, // 0.04%
  2230. {9870.7920792079, "H_Cap_tan_specops_US"}, // 0.04%
  2231. {9875.24752475245, "H_HelmetIA"}, // 0.04%
  2232. {9879.70297029701, "H_Watchcap_blk"}, // 0.04%
  2233. {9884.15841584156, "H_Watchcap_khk"}, // 0.04%
  2234. {9888.61386138611, "H_HelmetB_plain_blk"}, // 0.04%
  2235. {9891.58415841582, "H_HelmetIA_net"}, // 0.03%
  2236. {9894.55445544552, "H_HelmetB_grass"}, // 0.03%
  2237. {9897.52475247522, "H_HelmetB_black"}, // 0.03%
  2238. {9900.49504950492, "H_HelmetB_desert"}, // 0.03%
  2239. {9903.46534653463, "H_HelmetB_sand"}, // 0.03%
  2240. {9906.43564356433, "H_HelmetB_light_grass"}, // 0.03%
  2241. {9909.40594059403, "H_HelmetB_light_snakeskin"}, // 0.03%
  2242. {9912.37623762373, "H_HelmetB_light_desert"}, // 0.03%
  2243. {9915.34653465343, "H_BandMask_demon"}, // 0.03%
  2244. {9918.31683168314, "H_BandMask_reaper"}, // 0.03%
  2245. {9921.28712871284, "H_BandMask_khk"}, // 0.03%
  2246. {9924.25742574254, "H_HelmetB_snakeskin"}, // 0.03%
  2247. {9927.22772277224, "H_HelmetIA_camo"}, // 0.03%
  2248. {9930.19801980194, "H_HelmetB_light_sand"}, // 0.03%
  2249. {9933.16831683165, "H_ShemagOpen_khk"}, // 0.03%
  2250. {9936.13861386135, "H_Shemag_olive_hs"}, // 0.03%
  2251. {9939.10891089105, "H_Shemag_olive"}, // 0.03%
  2252. {9942.07920792075, "H_Shemag_tan"}, // 0.03%
  2253. {9945.04950495046, "H_Shemag_khk"}, // 0.03%
  2254. {9948.01980198016, "H_TurbanO_blk"}, // 0.03%
  2255. {9950.99009900986, "H_Watchcap_sgg"}, // 0.03%
  2256. {9953.96039603956, "H_Watchcap_camo"}, // 0.03%
  2257. {9956.93069306926, "H_HelmetB_light_black"}, // 0.03%
  2258. {9959.90099009897, "H_ShemagOpen_tan"}, // 0.03%
  2259. {9961.38613861382, "H_HelmetB_camo"}, // 0.01%
  2260. {9962.87128712867, "H_PilotHelmetHeli_I"}, // 0.01%
  2261. {9964.35643564352, "H_PilotHelmetHeli_O"}, // 0.01%
  2262. {9965.84158415837, "H_PilotHelmetHeli_B"}, // 0.01%
  2263. {9967.32673267323, "H_HelmetCrew_O"}, // 0.01%
  2264. {9968.81188118808, "H_PilotHelmetFighter_O"}, // 0.01%
  2265. {9970.29702970293, "H_PilotHelmetFighter_B"}, // 0.01%
  2266. {9971.78217821778, "H_HelmetCrew_I"}, // 0.01%
  2267. {9973.26732673263, "H_CrewHelmetHeli_B"}, // 0.01%
  2268. {9974.75247524749, "H_HelmetCrew_B"}, // 0.01%
  2269. {9976.23762376234, "H_PilotHelmetFighter_I"}, // 0.01%
  2270. {9977.72277227719, "H_CrewHelmetHeli_O"}, // 0.01%
  2271. {9979.20792079204, "H_HelmetO_oucamo"}, // 0.01%
  2272. {9980.69306930689, "H_Beret_brn_SF"}, // 0.01%
  2273. {9982.17821782175, "H_Beret_grn_SF"}, // 0.01%
  2274. {9983.6633663366, "H_Beret_grn"}, // 0.01%
  2275. {9985.14851485145, "H_HelmetLeaderO_oucamo"}, // 0.01%
  2276. {9986.6336633663, "H_HelmetSpecO_ocamo"}, // 0.01%
  2277. {9988.11881188115, "H_HelmetSpecO_blk"}, // 0.01%
  2278. {9989.60396039601, "H_HelmetO_ocamo"}, // 0.01%
  2279. {9991.08910891086, "H_HelmetLeaderO_ocamo"}, // 0.01%
  2280. {9992.57425742571, "H_Beret_Colonel"}, // 0.01%
  2281. {9994.05940594056, "H_Beret_red"}, // 0.01%
  2282. {9995.54455445541, "H_Beret_blk"}, // 0.01%
  2283. {9997.02970297027, "H_Beret_02"}, // 0.01%
  2284. {9998.51485148512, "H_CrewHelmetHeli_I"}, // 0.01%
  2285. {9999.99999999997, "H_Beret_ocamo"} // 0.01%
  2286. };
  2287. };
  2288.  
  2289. /**
  2290. Result of 100 rounds:
  2291.  
  2292. Exile_Item_ToiletPaper
  2293. Exile_Item_ToiletPaper
  2294. Exile_Item_Bandage
  2295. Exile_Item_Bandage
  2296. Exile_Item_InstaDoc
  2297. Exile_Item_InstaDoc
  2298. Exile_Item_Vishpirin
  2299. Exile_Item_Bandage
  2300. Exile_Item_Vishpirin
  2301. Exile_Item_InstaDoc
  2302. Exile_Item_InstaDoc
  2303. Exile_Item_Vishpirin
  2304. Exile_Item_Can_Empty
  2305. Exile_Item_ToiletPaper
  2306. Exile_Item_ToiletPaper
  2307. Exile_Item_Vishpirin
  2308. Exile_Item_Vishpirin
  2309. Exile_Item_Vishpirin
  2310. Exile_Item_Vishpirin
  2311. Exile_Item_PlasticBottleEmpty
  2312. Exile_Item_Vishpirin
  2313. Exile_Item_Vishpirin
  2314. Exile_Item_Vishpirin
  2315. Exile_Item_Bandage
  2316. Exile_Item_InstaDoc
  2317. Exile_Item_Vishpirin
  2318. Exile_Item_Can_Empty
  2319. Exile_Item_Can_Empty
  2320. Exile_Item_PlasticBottleEmpty
  2321. Exile_Item_InstaDoc
  2322. Exile_Item_Bandage
  2323. Exile_Item_Vishpirin
  2324. Exile_Item_PlasticBottleEmpty
  2325. Exile_Item_PlasticBottleEmpty
  2326. Exile_Item_Bandage
  2327. Exile_Item_Bandage
  2328. Exile_Item_InstaDoc
  2329. Exile_Item_InstaDoc
  2330. Exile_Item_Vishpirin
  2331. Exile_Item_Vishpirin
  2332. Exile_Item_ToiletPaper
  2333. Exile_Item_Bandage
  2334. Exile_Item_Vishpirin
  2335. Exile_Item_Bandage
  2336. Exile_Item_Can_Empty
  2337. Exile_Item_Vishpirin
  2338. Exile_Item_ToiletPaper
  2339. Exile_Item_InstaDoc
  2340. Exile_Item_Can_Empty
  2341. Exile_Item_InstaDoc
  2342. Exile_Item_Vishpirin
  2343. Exile_Item_Can_Empty
  2344. Exile_Item_Vishpirin
  2345. Exile_Item_Bandage
  2346. Exile_Item_Vishpirin
  2347. Exile_Item_ToiletPaper
  2348. Exile_Item_Can_Empty
  2349. Exile_Item_Vishpirin
  2350. Exile_Item_Bandage
  2351. Exile_Item_ToiletPaper
  2352. Exile_Item_Vishpirin
  2353. Exile_Item_Bandage
  2354. Exile_Item_Can_Empty
  2355. Exile_Item_Vishpirin
  2356. Exile_Item_Bandage
  2357. Exile_Item_Bandage
  2358. Exile_Item_Bandage
  2359. Exile_Item_PlasticBottleEmpty
  2360. Exile_Item_Vishpirin
  2361. Exile_Item_Vishpirin
  2362. Exile_Item_Vishpirin
  2363. Exile_Item_Vishpirin
  2364. Exile_Item_InstaDoc
  2365. Exile_Item_Vishpirin
  2366. Exile_Item_Vishpirin
  2367. Exile_Item_Bandage
  2368. Exile_Item_PlasticBottleEmpty
  2369. Exile_Item_Bandage
  2370. Exile_Item_ToiletPaper
  2371. Exile_Item_PlasticBottleEmpty
  2372. Exile_Item_Bandage
  2373. Exile_Item_ToiletPaper
  2374. Exile_Item_Vishpirin
  2375. Exile_Item_PlasticBottleEmpty
  2376. Exile_Item_PlasticBottleEmpty
  2377. Exile_Item_ToiletPaper
  2378. Exile_Item_Vishpirin
  2379. Exile_Item_Vishpirin
  2380. Exile_Item_ToiletPaper
  2381. Exile_Item_ToiletPaper
  2382. Exile_Item_InstaDoc
  2383. Exile_Item_ToiletPaper
  2384. Exile_Item_Vishpirin
  2385. Exile_Item_Bandage
  2386. Exile_Item_ToiletPaper
  2387. Exile_Item_Vishpirin
  2388. Exile_Item_PlasticBottleEmpty
  2389. Exile_Item_PlasticBottleEmpty
  2390. Exile_Item_Vishpirin
  2391. Exile_Item_Vishpirin
  2392. */
  2393. class Medical
  2394. {
  2395. count = 6;
  2396. half = 8176.47058823529;
  2397. halfIndex = 3;
  2398. sum = 10000;
  2399. items[] =
  2400. {
  2401. {4117.64705882353, "Exile_Item_Vishpirin"}, // 41.18%
  2402. {6176.47058823529, "Exile_Item_Bandage"}, // 20.59%
  2403. {7176.47058823529, "Exile_Item_Can_Empty"}, // 10.00%
  2404. {8176.47058823529, "Exile_Item_ToiletPaper"}, // 10.00%
  2405. {9176.47058823529, "Exile_Item_PlasticBottleEmpty"}, // 10.00%
  2406. {10000, "Exile_Item_InstaDoc"} // 8.24%
  2407. };
  2408. };
  2409.  
  2410. /**
  2411. Result of 100 rounds:
  2412.  
  2413. U_O_FullGhillie_ard
  2414. U_O_FullGhillie_ard
  2415. srifle_DMR_02_sniper_F
  2416. srifle_DMR_02_F
  2417. H_CrewHelmetHeli_B
  2418. H_HelmetSpecO_ocamo
  2419. srifle_DMR_05_tan_F
  2420. B_Carryall_oucamo
  2421. srifle_DMR_05_blk_F
  2422. H_BandMask_demon
  2423. H_PilotHelmetFighter_O
  2424. srifle_DMR_05_hex_F
  2425. srifle_DMR_03_woodland_F
  2426. U_I_FullGhillie_ard
  2427. optic_SOS
  2428. srifle_DMR_05_hex_F
  2429. srifle_LRR_F
  2430. srifle_GM6_F
  2431. srifle_DMR_01_F
  2432. H_HelmetSpecB_blk
  2433. srifle_DMR_01_F
  2434. srifle_DMR_01_F
  2435. srifle_LRR_F
  2436. srifle_DMR_04_F
  2437. H_HelmetB_plain_blk
  2438. Exile_Item_Vishpirin
  2439. srifle_DMR_06_camo_F
  2440. ItemGPS
  2441. 7Rnd_408_Mag
  2442. H_HelmetLeaderO_oucamo
  2443. U_O_GhillieSuit
  2444. srifle_DMR_04_Tan_F
  2445. H_MilCap_blue
  2446. 10Rnd_127x54_Mag
  2447. srifle_DMR_02_F
  2448. B_Carryall_oucamo
  2449. H_HelmetB_desert
  2450. H_HelmetB_light_desert
  2451. Exile_Item_Vishpirin
  2452. srifle_DMR_01_F
  2453. 10Rnd_93x64_DMR_05_Mag
  2454. srifle_DMR_02_sniper_F
  2455. Exile_Item_ZipTie
  2456. B_Carryall_mcamo
  2457. srifle_DMR_03_tan_F
  2458. srifle_DMR_01_F
  2459. U_B_FullGhillie_ard
  2460. H_HelmetB_plain_blk
  2461. srifle_DMR_03_tan_F
  2462. H_PilotHelmetHeli_O
  2463. srifle_LRR_F
  2464. APERSMine_Range_Mag
  2465. srifle_LRR_F
  2466. U_B_GhillieSuit
  2467. srifle_DMR_01_F
  2468. 10Rnd_93x64_DMR_05_Mag
  2469. Exile_Item_Bandage
  2470. srifle_LRR_F
  2471. ItemWatch
  2472. APERSBoundingMine_Range_Mag
  2473. srifle_DMR_05_tan_F
  2474. B_Carryall_mcamo
  2475. APERSTripMine_Wire_Mag
  2476. srifle_DMR_05_hex_F
  2477. U_O_GhillieSuit
  2478. B_Carryall_mcamo
  2479. B_Carryall_oli
  2480. H_MilCap_ocamo
  2481. Exile_Item_ZipTie
  2482. Exile_Item_ZipTie
  2483. HandGrenade
  2484. srifle_GM6_F
  2485. H_HelmetB_light
  2486. srifle_DMR_01_F
  2487. srifle_GM6_F
  2488. U_I_GhillieSuit
  2489. Exile_Item_InstaDoc
  2490. srifle_DMR_02_sniper_F
  2491. optic_DMS
  2492. H_HelmetIA
  2493. U_I_GhillieSuit
  2494. 20Rnd_762x51_Mag
  2495. srifle_DMR_01_F
  2496. muzzle_snds_93mmg_tan
  2497. H_MilCap_dgtl
  2498. U_O_FullGhillie_lsh
  2499. Exile_Item_Vishpirin
  2500. HandGrenade
  2501. U_B_FullGhillie_lsh
  2502. U_B_FullGhillie_lsh
  2503. optic_AMS_snd
  2504. optic_LRPS
  2505. HandGrenade
  2506. srifle_DMR_02_camo_F
  2507. U_I_FullGhillie_sard
  2508. srifle_LRR_F
  2509. H_MilCap_blue
  2510. H_HelmetIA
  2511. srifle_EBR_F
  2512. srifle_EBR_F
  2513. */
  2514. class Tourist
  2515. {
  2516. count = 128;
  2517. half = 8618.62799856785;
  2518. halfIndex = 64;
  2519. sum = 10000;
  2520. items[] =
  2521. {
  2522. {560, "srifle_DMR_01_F"}, // 5.60%
  2523. {1120, "srifle_EBR_F"}, // 5.60%
  2524. {1560, "srifle_LRR_F"}, // 4.40%
  2525. {2000, "srifle_GM6_F"}, // 4.40%
  2526. {2400, "Exile_Item_ZipTie"}, // 4.00%
  2527. {2635.29411764706, "Exile_Item_Vishpirin"}, // 2.35%
  2528. {2851.51033386328, "srifle_DMR_05_blk_F"}, // 2.16%
  2529. {3067.72655007949, "srifle_DMR_05_hex_F"}, // 2.16%
  2530. {3283.94276629571, "srifle_DMR_05_tan_F"}, // 2.16%
  2531. {3483.94276629571, "MiniGrenade"}, // 2.00%
  2532. {3683.94276629571, "HandGrenade"}, // 2.00%
  2533. {3873.94276629571, "B_Carryall_cbr"}, // 1.90%
  2534. {4063.1319554849, "srifle_DMR_04_Tan_F"}, // 1.89%
  2535. {4252.32114467409, "srifle_DMR_04_F"}, // 1.89%
  2536. {4432.32114467409, "B_Carryall_khk"}, // 1.80%
  2537. {4612.32114467409, "B_Carryall_oli"}, // 1.80%
  2538. {4782.32114467409, "U_I_GhillieSuit"}, // 1.70%
  2539. {4947.32114467409, "U_O_GhillieSuit"}, // 1.65%
  2540. {5112.32114467409, "U_B_GhillieSuit"}, // 1.65%
  2541. {5274.48330683625, "srifle_DMR_02_camo_F"}, // 1.62%
  2542. {5436.64546899841, "srifle_DMR_02_F"}, // 1.62%
  2543. {5598.80763116057, "srifle_DMR_02_sniper_F"}, // 1.62%
  2544. {5748.80763116057, "B_Carryall_ocamo"}, // 1.50%
  2545. {5898.80763116057, "B_Carryall_oucamo"}, // 1.50%
  2546. {6048.80763116057, "B_Carryall_mcamo"}, // 1.50%
  2547. {6168.80763116057, "ItemWatch"}, // 1.20%
  2548. {6288.80763116057, "ItemRadio"}, // 1.20%
  2549. {6406.4546899841, "Exile_Item_Bandage"}, // 1.18%
  2550. {6487.53577106518, "srifle_DMR_03_F"}, // 0.81%
  2551. {6568.61685214627, "srifle_DMR_06_olive_F"}, // 0.81%
  2552. {6649.69793322735, "srifle_DMR_03_tan_F"}, // 0.81%
  2553. {6730.77901430843, "srifle_DMR_03_woodland_F"}, // 0.81%
  2554. {6811.86009538951, "srifle_DMR_06_camo_F"}, // 0.81%
  2555. {6892.94117647059, "srifle_DMR_03_khaki_F"}, // 0.81%
  2556. {6972.94117647059, "Binocular"}, // 0.80%
  2557. {7052.94117647059, "APERSTripMine_Wire_Mag"}, // 0.80%
  2558. {7132.94117647059, "ItemGPS"}, // 0.80%
  2559. {7212.94117647059, "APERSMine_Range_Mag"}, // 0.80%
  2560. {7292.94117647059, "APERSBoundingMine_Range_Mag"}, // 0.80%
  2561. {7352.94117647059, "U_I_FullGhillie_sard"}, // 0.60%
  2562. {7409.08152734778, "10Rnd_338_Mag"}, // 0.56%
  2563. {7465.22187822497, "10Rnd_93x64_DMR_05_Mag"}, // 0.56%
  2564. {7521.22187822497, "20Rnd_762x51_Mag"}, // 0.56%
  2565. {7577.22187822497, "10Rnd_762x51_Mag"}, // 0.56%
  2566. {7632.3239190413, "optic_DMS"}, // 0.55%
  2567. {7687.3239190413, "U_I_FullGhillie_lsh"}, // 0.55%
  2568. {7742.3239190413, "U_I_FullGhillie_ard"}, // 0.55%
  2569. {7797.3239190413, "U_O_FullGhillie_lsh"}, // 0.55%
  2570. {7852.3239190413, "U_O_FullGhillie_ard"}, // 0.55%
  2571. {7907.3239190413, "U_B_FullGhillie_sard"}, // 0.55%
  2572. {7962.3239190413, "U_B_FullGhillie_lsh"}, // 0.55%
  2573. {8017.3239190413, "U_B_FullGhillie_ard"}, // 0.55%
  2574. {8072.3239190413, "U_O_FullGhillie_sard"}, // 0.55%
  2575. {8125.3851435311, "optic_SOS"}, // 0.53%
  2576. {8178.44636802089, "optic_LRPS"}, // 0.53%
  2577. {8227.56917503844, "10Rnd_127x54_Mag"}, // 0.49%
  2578. {8275.56917503844, "IEDLandSmall_Remote_Mag"}, // 0.48%
  2579. {8323.56917503844, "IEDUrbanSmall_Remote_Mag"}, // 0.48%
  2580. {8371.56917503844, "DemoCharge_Remote_Mag"}, // 0.48%
  2581. {8418.62799856785, "Exile_Item_InstaDoc"}, // 0.47%
  2582. {8458.62799856785, "H_MilCap_oucamo"}, // 0.40%
  2583. {8498.62799856785, "H_MilCap_ocamo"}, // 0.40%
  2584. {8538.62799856785, "H_MilCap_mcamo"}, // 0.40%
  2585. {8578.62799856785, "H_MilCap_blue"}, // 0.40%
  2586. {8618.62799856785, "H_MilCap_rucamo"}, // 0.40%
  2587. {8658.62799856785, "H_MilCap_dgtl"}, // 0.40%
  2588. {8697.40350877193, "muzzle_snds_B"}, // 0.39%
  2589. {8736, "20Rnd_762x51_Mag"}, // 0.39%
  2590. {8770, "7Rnd_408_Mag"}, // 0.34%
  2591. {8804, "5Rnd_127x108_Mag"}, // 0.34%
  2592. {8837.33333333333, "muzzle_snds_93mmg_tan"}, // 0.33%
  2593. {8870.66666666667, "muzzle_snds_338_green"}, // 0.33%
  2594. {8904, "muzzle_snds_B"}, // 0.33%
  2595. {8937.33333333334, "muzzle_snds_338_sand"}, // 0.33%
  2596. {8970.66666666667, "muzzle_snds_93mmg"}, // 0.33%
  2597. {9004, "muzzle_snds_338_black"}, // 0.33%
  2598. {9034, "H_HelmetSpecB_blk"}, // 0.30%
  2599. {9064, "H_HelmetSpecB_paint2"}, // 0.30%
  2600. {9094, "H_HelmetSpecB_paint1"}, // 0.30%
  2601. {9124, "H_HelmetSpecB"}, // 0.30%
  2602. {9154, "H_HelmetIA"}, // 0.30%
  2603. {9184, "H_HelmetB"}, // 0.30%
  2604. {9214, "H_HelmetB_paint"}, // 0.30%
  2605. {9244, "H_HelmetB_light"}, // 0.30%
  2606. {9274, "H_HelmetB_plain_blk"}, // 0.30%
  2607. {9302.57142857143, "optic_KHS_blk"}, // 0.29%
  2608. {9331.14285714286, "optic_AMS_khk"}, // 0.29%
  2609. {9359.71428571429, "optic_AMS"}, // 0.29%
  2610. {9388.28571428572, "optic_KHS_tan"}, // 0.29%
  2611. {9416.85714285715, "optic_KHS_hex"}, // 0.29%
  2612. {9445.42857142858, "optic_KHS_old"}, // 0.29%
  2613. {9474.00000000001, "optic_AMS_snd"}, // 0.29%
  2614. {9494.00000000001, "H_HelmetB_light_sand"}, // 0.20%
  2615. {9514.00000000001, "H_HelmetB_grass"}, // 0.20%
  2616. {9534.00000000001, "H_HelmetB_snakeskin"}, // 0.20%
  2617. {9554.00000000001, "H_HelmetB_desert"}, // 0.20%
  2618. {9574.00000000001, "H_HelmetB_black"}, // 0.20%
  2619. {9594.00000000001, "H_HelmetB_sand"}, // 0.20%
  2620. {9614.00000000001, "H_HelmetB_light_grass"}, // 0.20%
  2621. {9634.00000000001, "H_HelmetB_light_snakeskin"}, // 0.20%
  2622. {9654.00000000001, "H_HelmetB_light_desert"}, // 0.20%
  2623. {9674.00000000001, "H_HelmetB_light_black"}, // 0.20%
  2624. {9694.00000000001, "5Rnd_127x108_APDS_Mag"}, // 0.20%
  2625. {9714.00000000001, "H_BandMask_khk"}, // 0.20%
  2626. {9734.00000000001, "H_BandMask_reaper"}, // 0.20%
  2627. {9754.00000000001, "H_BandMask_demon"}, // 0.20%
  2628. {9774.00000000001, "H_HelmetIA_net"}, // 0.20%
  2629. {9794.00000000001, "H_HelmetIA_camo"}, // 0.20%
  2630. {9810.00000000001, "SatchelCharge_Remote_Mag"}, // 0.16%
  2631. {9820.00000000001, "H_HelmetCrew_B"}, // 0.10%
  2632. {9830.00000000001, "H_HelmetLeaderO_ocamo"}, // 0.10%
  2633. {9840.00000000001, "H_HelmetSpecO_ocamo"}, // 0.10%
  2634. {9850.00000000001, "H_HelmetLeaderO_oucamo"}, // 0.10%
  2635. {9860.00000000001, "H_HelmetO_oucamo"}, // 0.10%
  2636. {9870.00000000001, "H_CrewHelmetHeli_I"}, // 0.10%
  2637. {9880.00000000001, "H_CrewHelmetHeli_O"}, // 0.10%
  2638. {9890.00000000001, "H_CrewHelmetHeli_B"}, // 0.10%
  2639. {9900.00000000001, "H_HelmetSpecO_blk"}, // 0.10%
  2640. {9910.00000000001, "H_HelmetB_camo"}, // 0.10%
  2641. {9920.00000000001, "H_PilotHelmetHeli_O"}, // 0.10%
  2642. {9930.00000000001, "H_PilotHelmetHeli_B"}, // 0.10%
  2643. {9940.00000000001, "H_PilotHelmetFighter_I"}, // 0.10%
  2644. {9950.00000000001, "H_PilotHelmetFighter_O"}, // 0.10%
  2645. {9960.00000000001, "H_PilotHelmetFighter_B"}, // 0.10%
  2646. {9970.00000000001, "H_HelmetCrew_I"}, // 0.10%
  2647. {9980.00000000001, "H_HelmetCrew_O"}, // 0.10%
  2648. {9990.00000000001, "H_PilotHelmetHeli_I"}, // 0.10%
  2649. {10000, "H_HelmetO_ocamo"} // 0.10%
  2650. };
  2651. };
  2652.  
  2653. };
  2654.  
  2655. class CfgSettings
  2656. {
  2657. ///////////////////////////////////////////////////////////////////////
  2658. // GARBAGE COLLECTOR
  2659. ///////////////////////////////////////////////////////////////////////
  2660. class GarbageCollector
  2661. {
  2662. /*
  2663. Remark:
  2664. In 0.9.35 and below, Exile has checked if a player was nearby and then delayed
  2665. the deletion. This check has been removed to save server performance.
  2666.  
  2667. Do NOT touch these if you are not 10000% sure what you do!
  2668. */
  2669. class Ingame
  2670. {
  2671. // Dropped items without fissix
  2672. class GroundWeaponHolder
  2673. {
  2674. lifeTime = 10;
  2675. interval = 5;
  2676. };
  2677.  
  2678. // Dropped items with fissix
  2679. class WeaponHolderSimulated
  2680. {
  2681. lifeTime = 10;
  2682. interval = 5;
  2683. };
  2684.  
  2685. // Corpses and wrecks
  2686. class AllDead
  2687. {
  2688. lifeTime = 15;
  2689. interval = 5;
  2690. };
  2691.  
  2692. // Loot spawned inside a building
  2693. class Loot
  2694. {
  2695. lifeTime = 15;
  2696. interval = 5;
  2697. };
  2698.  
  2699. // Never touch this or you will break your sever!
  2700. class Groups
  2701. {
  2702. interval = 0.5;
  2703. };
  2704. };
  2705.  
  2706. class Database
  2707. {
  2708. // Remove all territories (and contructions + containers in it) that were not paid after X days
  2709. territoryLifeTime = 7;
  2710.  
  2711. // Remove all containers outside of territories that have not been used for X days
  2712. // Example: Tents
  2713. containerLifeTime = 7;
  2714.  
  2715. // Remove all constructions outside of territories that are older than X days or not moved for X days
  2716. // Example: Work Benches
  2717. constructionLifeTime = 2;
  2718.  
  2719. // Remove all vehicles that were not moved/used for X days
  2720. vehicleLifeTime = 3;
  2721. };
  2722. };
  2723.  
  2724. ///////////////////////////////////////////////////////////////////////
  2725. // RESPECT, YO
  2726. ///////////////////////////////////////////////////////////////////////
  2727. class Respect
  2728. {
  2729. /**
  2730. * Defines the factor of respect you gain for every pop tab in revenue
  2731. *
  2732. * Default: Get 1 respect for every 10 pop tabs
  2733. */
  2734. tradingRespectFactor = 0.2;
  2735.  
  2736. /**
  2737. * Defines the amount of respect earned/lost for certain types of frags
  2738. */
  2739. class Frags
  2740. {
  2741. bambi = -500; // Bambi slayers
  2742. friendlyFire = -1000; // For party members
  2743. standard = 100; // Normal kill
  2744. domination = 80; // Keeps killing the same guy
  2745. letItRain = 150; // MG, also vehicle MGs
  2746. humiliation = 300; // Axe
  2747. passenger = 400; // Out of car/chopper/boat
  2748. roadKill = 200; // :)
  2749. bigBird = 600; // Roadkill, but with chopper/plane
  2750. chuteGreaterChopper = 1000; // Someone flies into chute and chopper/plane explodes
  2751. };
  2752.  
  2753. class Handcuffs
  2754. {
  2755. trapping = -50; // A handcuffs B
  2756. breakingFree = 100; // B broke free
  2757. releasedByHero = 100; // C releases B
  2758. releasedByHostageTaker = 50; // A releases B
  2759. };
  2760.  
  2761. class Bonus
  2762. {
  2763. // Bonus per full 100m
  2764. per100mDistance = 10;
  2765.  
  2766. // First blood after server restart
  2767. firstBlood = 100;
  2768.  
  2769. // If you kill someone while you are in your own territory
  2770. homie = 20;
  2771.  
  2772. // If you kill someone who is in his own territory
  2773. raid = 20;
  2774.  
  2775. /*
  2776. Example with killstreak = 50
  2777.  
  2778. Frag Factor Bonus
  2779. 2 * 50 +100
  2780. 3 * 50 +150
  2781. 4 * 50 +200
  2782. 5 * 50 +250
  2783. */
  2784. killStreak = 50;
  2785.  
  2786. // Kills within this amount of seconds stack (default: 2 minutes)
  2787. killStreakTimeout = 120;
  2788. };
  2789. };
  2790.  
  2791. ///////////////////////////////////////////////////////////////////////
  2792. // KILLFEED MAN!
  2793. ///////////////////////////////////////////////////////////////////////
  2794.  
  2795. class KillFeed
  2796. {
  2797. // Shows a kill feed for well kills
  2798. showKillFeed = 1;
  2799. };
  2800.  
  2801. ///////////////////////////////////////////////////////////////////////
  2802. // PLAYER SPAWN CONFIGURATION
  2803. ///////////////////////////////////////////////////////////////////////
  2804. class BambiSettings
  2805. {
  2806. /**
  2807. * Loadout of new bambi players
  2808. *
  2809. * (They will always spawn with a bambi overall - you cannot
  2810. * change the loadout uniform)
  2811. */
  2812. loadOut[] =
  2813. {
  2814. "ItemCompass",
  2815. "ItemMap",
  2816. "Exile_Item_XM8",
  2817. "ItemRadio",
  2818. "Exile_Item_PlasticBottleFreshWater"
  2819. };
  2820.  
  2821. /**
  2822. * Enables or disables parachute spawning.
  2823. *
  2824. * 1 = On
  2825. * 0 = Off
  2826. */
  2827. parachuteSpawning = 1;
  2828.  
  2829. /**
  2830. * Enables or disables halo jumping. Only applies
  2831. * if parachute spawning is enabled.
  2832. *
  2833. * Remember that if you enable halo jump, it is adviced
  2834. * to adjust the parachuteDropHeight to something around
  2835. * 1km or so.
  2836. *
  2837. * 1 = On
  2838. * 0 = Off
  2839. */
  2840. haloJump = 1;
  2841.  
  2842. /**
  2843. * Parachute drop height in meters.
  2844. */
  2845. parachuteDropHeight = 1000;
  2846.  
  2847. /**
  2848. * Number of minutes where a fresh spawned player remains in the
  2849. * bambi state. It will end the bambi state after this timeout
  2850. * expired or when they pick up their first weapon. Whatever
  2851. * happens first.
  2852. */
  2853. protectionDuration = 5;
  2854.  
  2855. /**
  2856. * Radius of spawn zones around the center of spawn zone markers.
  2857. */
  2858. spawnZoneRadius = 500;
  2859.  
  2860. /**
  2861. * These vehicles spawn on server restart close to spawn zones.
  2862. * They are non-persistent and will despawn on server restart.
  2863. * Basically they are just used to get away from the spawn zone
  2864. * faster.
  2865. *
  2866. * {Number of vehicles *per* spawn zone, vehicle class name}
  2867. */
  2868. spawnZoneVehicles[] =
  2869. {
  2870. {3, "Exile_Bike_QuadBike_Black"},
  2871. {10, "Exile_Bike_MountainBike"}
  2872. };
  2873. };
  2874.  
  2875. ///////////////////////////////////////////////////////////////////////
  2876. // LOOT CONFIGURATION
  2877. ///////////////////////////////////////////////////////////////////////
  2878. class LootSettings
  2879. {
  2880. /**
  2881. * Chance in % to spawn loot in a building
  2882. */
  2883. spawnChancePerBuilding = 50;
  2884.  
  2885. /**
  2886. * Chance in % to spawn loot per loot spot per building.
  2887. *
  2888. * 100% = Super high loot
  2889. * 50% = Normal loot spawn rates
  2890. * 20% = You get the point
  2891. */
  2892. spawnChancePerPosition = 75;
  2893.  
  2894. /**
  2895. * Should be self-explanatory :)
  2896. */
  2897. maximumNumberOfLootSpotsPerBuilding = 4;
  2898.  
  2899. /**
  2900. * Exile spawns a random number of items per loot spot. This
  2901. * is the upper cap for that. So 3 means it could spawn 1, 2
  2902. * or 3.
  2903. */
  2904. maximumNumberOfItemsPerLootSpot = 3;
  2905.  
  2906. /**
  2907. * Radius in meter to spawn loot AROUND each player.
  2908. * Do NOT touch this value if you dont know what you do.
  2909. * The higher the number, the higher the drop rates, the
  2910. * easier your server will lag.
  2911. *
  2912. * 50m = Minimum
  2913. * 200m = Maximum
  2914. */
  2915. spawnRadius = 60;
  2916.  
  2917. /**
  2918. * Notify players that loot spawned for them
  2919. *
  2920. * 1 = Yes
  2921. * 0 = No
  2922. */
  2923. notifyPlayer = 1;
  2924.  
  2925. /**
  2926. * Defines the radius around trader cities where the system should
  2927. * not spawn loot. Set this to 0 if you want to have loot spawning
  2928. * in trader citites, ugh.
  2929. */
  2930. minimumDistanceToTraderZones = 500;
  2931.  
  2932. /**
  2933. * Defines the radius around territories where no loot spawns.
  2934. * This does not regard the actual size of a territory. So do not
  2935. * set this to a lower value than the maximum radius of a territory,
  2936. * which is 150m by default.
  2937. */
  2938. minimumDistanceToTerritories = 150;
  2939. };
  2940.  
  2941. ///////////////////////////////////////////////////////////////////////
  2942. // VEHICLE SPAWN CONFIGURATION
  2943. ///////////////////////////////////////////////////////////////////////
  2944.  
  2945. class VehicleSpawn
  2946. {
  2947. /**
  2948. * Grid Size for vehicle spawning,
  2949. * smaller the number more vehicles,
  2950. * you get the point
  2951. */
  2952. vehiclesGridSize = 500;
  2953.  
  2954. /**
  2955. * Vehicle ammount per grid
  2956. * kinda self explanitory
  2957. */
  2958. vehiclesGridAmount = 2;
  2959.  
  2960. /**
  2961. * Creates global markers for vehicle spawn tweeking,
  2962. * after you are satisfied with vehicle ammount and spread set this to 0.
  2963. */
  2964. vehiclesDebugMarkers = 0;
  2965.  
  2966. /**
  2967. * The server will apply random damage up to this value when spawning a vehicle.
  2968. */
  2969. damageChance = 10; // 20% chance for a vehicle HITPOINT to be damaged
  2970. maximumDamage = 0.9;
  2971.  
  2972. // Stuff to spawn on water
  2973. water[] =
  2974. {
  2975. "Exile_Boat_MotorBoat_Police",
  2976. "Exile_Boat_MotorBoat_Orange",
  2977. "Exile_Boat_MotorBoat_White",
  2978. "Exile_Boat_RubberDuck_CSAT",
  2979. "Exile_Boat_RubberDuck_Digital",
  2980. "Exile_Boat_RubberDuck_Orange",
  2981. "Exile_Boat_RubberDuck_Blue",
  2982. "Exile_Boat_RubberDuck_Black",
  2983. "Exile_Boat_SDV_CSAT",
  2984. "Exile_Boat_SDV_Digital",
  2985. "Exile_Boat_SDV_Grey"
  2986. };
  2987.  
  2988. // Stuff to spawn on roads
  2989. ground[] =
  2990. {
  2991. "Exile_Bike_QuadBike_Black",
  2992. "Exile_Bike_QuadBike_Blue",
  2993. "Exile_Bike_QuadBike_Red",
  2994. "Exile_Bike_QuadBike_White",
  2995. "Exile_Bike_QuadBike_Nato",
  2996. "Exile_Bike_QuadBike_Csat",
  2997. "Exile_Bike_QuadBike_Fia",
  2998. "Exile_Bike_QuadBike_Guerilla01",
  2999. "Exile_Bike_QuadBike_Guerilla02",
  3000. "Exile_Car_Volha_Blue",
  3001. "Exile_Car_Volha_White",
  3002. "Exile_Car_Lada_Green",
  3003. "Exile_Car_Lada_Taxi"
  3004. };
  3005.  
  3006. /**
  3007. * Enables or disables nightvision optics on ALL vehicles
  3008. *
  3009. * 0 = off
  3010. * 1 = on
  3011. */
  3012. nightVision = 1;
  3013.  
  3014. /**
  3015. * Enables or disables thermal optics on ALL vehicles
  3016. *
  3017. * 0 = off
  3018. * 1 = on
  3019. */
  3020. thermalVision = 0;
  3021.  
  3022. /**
  3023. * Set this to 1 to unlock vehicles on server boot if they are in safe zones
  3024. *
  3025. * 0 = off
  3026. * 1 = on
  3027. */
  3028. unlockInSafeZonesAfterRestart = 1;
  3029. };
  3030.  
  3031. class Weather
  3032. {
  3033. /*
  3034. You can define multiple "keyframes" for the weather to change. The server will pick
  3035. a keyframe randomly to simulate the weather. It will change the weather-keyframes
  3036. based on the following interval
  3037. */
  3038. interval = 30;
  3039.  
  3040. /*
  3041. Add the keyframes here. The server will pick one random, so if you want one
  3042. weather type of be more dominant compared to others, add it multiple times
  3043. */
  3044. keyframes[] = {"Sunny"};
  3045.  
  3046. /*
  3047. This is a keyframe. Look up the BIKI to get more details about the parameters
  3048.  
  3049. Be sure to design the fog settings at a view distance of 1,600m as this is the
  3050. limit in multiplayer by default
  3051.  
  3052. https://community.bistudio.com/wiki/fogParams
  3053. https://community.bistudio.com/wiki/overcast
  3054. https://community.bistudio.com/wiki/setWaves
  3055. https://community.bistudio.com/wiki/setWindStr
  3056. https://community.bistudio.com/wiki/setGusts
  3057. https://community.bistudio.com/wiki/setRain
  3058. https://community.bistudio.com/wiki/setLightnings
  3059. https://community.bistudio.com/wiki/setRainbow
  3060. */
  3061. class Sunny
  3062. {
  3063. fogValue = 0.1;
  3064. fogDecay = 0.2;
  3065. fogBase = 5;
  3066. overcast = 0.2;
  3067. waves = 0.2;
  3068. wind = 0.25;
  3069. gusts = 0.1;
  3070. rain = 0;
  3071. lightnings = 0;
  3072. rainbows = 0;
  3073. };
  3074.  
  3075. class Cloudy
  3076. {
  3077. fogValue = 0.2;
  3078. fogDecay = 0.1;
  3079. fogBase = 5;
  3080. overcast = 0.4;
  3081. waves = 0.4;
  3082. wind = 0.25;
  3083. gusts = 0.5;
  3084. rain = 0.1;
  3085. lightnings = 0.1;
  3086. rainbows = 1;
  3087. };
  3088.  
  3089. class Thunderstorm
  3090. {
  3091. fogValue = 0.7;
  3092. fogDecay = 0.2;
  3093. fogBase = 5;
  3094. overcast = 1;
  3095. waves = 1;
  3096. wind = 0.25;
  3097. gusts = 0.5;
  3098. rain = 1;
  3099. lightnings = 1;
  3100. rainbows = 0.5;
  3101. };
  3102. };
  3103.  
  3104. class Time
  3105. {
  3106. // Uses Dedicated Server time as ingame Time
  3107. useRealTime = 0;
  3108.  
  3109. // Will overide RealTime
  3110. useStaticTime = 1;
  3111.  
  3112. // time in ARMA FORMAT << CONFIG
  3113. // https://community.bistudio.com/wiki/setDate
  3114.  
  3115. staticTime[] = {2039,10,24,15,30};
  3116. };
  3117.  
  3118.  
  3119. class RCON
  3120. {
  3121. /*
  3122. Note that for this to work you need to have serverCommandPassowrd defined in config.cfg and BE enabled
  3123. */
  3124.  
  3125. // This needs to match config.cfg serverCommandPassword
  3126. serverPassword = "";
  3127.  
  3128. // Autolocks server until its ready to accept players
  3129. useAutoLock = 0;
  3130.  
  3131. // Server will autoLock at that time before restart (minutes)
  3132. restartAutoLock = 3;
  3133.  
  3134. /*
  3135. Number of hours and minutes of your restart period.
  3136.  
  3137. Examples:
  3138.  
  3139. {4, 0} = Every 4 hours
  3140. {1, 30} = Every one and a half hour (who the hell would do this?)
  3141. */
  3142. restartTimer[] = {2, 0};
  3143.  
  3144. /*
  3145. Kicks players before restart to prevent gear loss.
  3146. We strongely recommend to use this!
  3147.  
  3148. 0 = off
  3149. 1 = on
  3150. */
  3151. useAutoKick = 0;
  3152.  
  3153. /*
  3154. Number of minutes before the server kicks players that did
  3155. not disconnect before the restart. Should at least be two
  3156. minutes!
  3157. */
  3158. kickTime = 2;
  3159.  
  3160. /*
  3161. Self-explanatory
  3162.  
  3163. 0 = off
  3164. 1 = on
  3165. */
  3166. useRestartMessages = 1;
  3167.  
  3168. /*
  3169. Number of minutes before the restart to inform your players.
  3170.  
  3171. Only use full minutes here. Value like 5.5 have not been tested.
  3172. */
  3173. restartWarningTime[] = {15, 10, 5, 3};
  3174.  
  3175. /*
  3176. If set to 1 server will execute '#shutdown',
  3177. to try to shutdown the server
  3178. */
  3179.  
  3180. useShutdown = 0;
  3181. };
  3182.  
  3183. class ServerSettings
  3184. {
  3185. /*
  3186. Support for custom server FSM if wanted
  3187. */
  3188. serverFSM = "exile_server\fsm\main.fsm";
  3189.  
  3190. /*
  3191. If this is enabled, Exile developers will spawn with a ton of pop tabs.
  3192. We will have a hard time debugging things if you disable this.
  3193. */
  3194. devFriendyMode = 1;
  3195.  
  3196. devs[] =
  3197. {
  3198. "76561197985241690", // Eichi
  3199. "76561198022879703", // Grim
  3200. "76561197968999666", // Mr.White^ex
  3201. "76561198075905447" // Vishpala
  3202. };
  3203. };
  3204.  
  3205. class SupplyBox // DONT USE IT: WIP BROKEN
  3206. {
  3207. /*
  3208. Drops a supply box on a parachute next to a random airport on the map.
  3209. The box may contain items. The box can be transported to a territory
  3210. and installed to become a normal storage container.
  3211. */
  3212. type = "spawn";
  3213. function = "ExileServer_system_event_supplyBox_start";
  3214. interval = 1; // minutes
  3215. minimumPlayersOnline = 0;
  3216. dropRadius = 500; // 500m around an airport (including the main airport on Altis!)
  3217. dropAltitude = 100; // altitude of the drop
  3218.  
  3219. /*
  3220. These are different types of boxes can be dropped.
  3221. You can specify the cargo a box should contain.
  3222. The type of box is chosen randomly from the following list.
  3223. Add a type multiple times to increase the chance of being used.
  3224. */
  3225. types[] = {"Beer", "Beer", "Tools", "Food", "Food", "RepairParts", "Nades"};
  3226.  
  3227. class BoxTypes
  3228. {
  3229. class Beer
  3230. {
  3231. items[] =
  3232. {
  3233. {"Exile_Item_Beer", 24}
  3234. };
  3235. };
  3236.  
  3237. class Nades
  3238. {
  3239. items[] =
  3240. {
  3241. {"Exile_Item_Beer", 10}
  3242. };
  3243. };
  3244.  
  3245. class Food
  3246. {
  3247. items[] =
  3248. {
  3249. {"Exile_Item_BBQSandwich", 5},
  3250. {"Exile_Item_Catfood", 5},
  3251. {"Exile_Item_ChristmasTinner", 5},
  3252. {"Exile_Item_GloriousKnakworst", 5},
  3253. {"Exile_Item_SausageGravy", 5},
  3254. {"Exile_Item_Surstromming", 5},
  3255. {"Exile_Item_CanOpener", 1},
  3256. {"Exile_Item_CookingPot", 1},
  3257. {"Exile_Item_Matches", 1}
  3258. };
  3259. };
  3260.  
  3261. class Tools
  3262. {
  3263. items[] =
  3264. {
  3265. {"Exile_Item_Wrench", 1},
  3266. {"Exile_Item_Shovel", 1},
  3267. {"Exile_Item_Screwdriver", 1},
  3268. {"Exile_Item_Pliers", 1},
  3269. {"Exile_Item_Handsaw", 1},
  3270. {"Exile_Item_FireExtinguisher", 1},
  3271. {"Exile_Item_DuctTape", 1}
  3272. };
  3273. };
  3274.  
  3275. class RepairParts
  3276. {
  3277. items[] =
  3278. {
  3279. {"Exile_Item_CarWheel", 8},
  3280. {"Exile_Item_FuelCanisterFull", 4},
  3281. {"Exile_Item_OilCanister", 1},
  3282. {"Exile_Item_Grinder", 1},
  3283. {"Exile_Item_CordlessScrewdriver", 1}
  3284. };
  3285. };
  3286. };
  3287. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement