Jump to content

@MAS weapons Lootspawner script (More weapons!)


BlackPlague_81st

Recommended Posts

 

I am seeing this error in my rpt since installing this:

if (({_x == _loot} count exclcontainer_list) > 0) th>
 0:40:28   Error position: <_loot} count exclcontainer_list) > 0) th>
 0:40:28   Error Undefined variable in expression: _loot
 0:40:28 File mpmissions\__cur_mp.Altis\LSpawner\fn_LSgetBuildingstospawnLoot.sqf, line 146
 0:40:28 Error in expression <d", "repairkit", true];
};

I'm running the same files as in the pumpkinpieman git except for some tweaks to the building list and loot list as my server is on A3 epoch Altis and not chernarus....

 

Any ideas anyone? Anyone else getting this? It spams like crazy in my rpt

 

 

I have also been getting this, and i cant figure it out. I goto the fn_LSgetBuildingstospawnLoot.SQF, and i see the line:

if(_loot == "Land_Suitcase_F") then {
   _lootholder setVariable["mf_item_id", "repairkit", true];
};

I've tried searching all over, not sure if i'm missing something. Any help would be appreciated.

Link to comment
Share on other sites

i get aswell its like 80% of the spam in my RPT lol others had the same problem but its was never addressed by anyone and just overlooked.

if (({_x == _loot} count exclcontainer_list) > 0) th>
14:17:07   Error position: <_loot} count exclcontainer_list) > 0) th>
14:17:07   Error Undefined variable in expression: _loot
14:17:07 File mpmissions\__cur_mp.Chernarus\DoubleTap\LSpawner\fn_LSgetBuildingstospawnLoot.sqf, line 136
14:17:07 Error in expression <d", "repairkit", true];
};
Link to comment
Share on other sites

if you want to have weapons always spawn with the correct magazines you could add the following:

 

in fn_LSgetBuildingstospawnLoot.sqf (Line 83)

 

under

_lootholder addWeaponCargoGlobal [_loot, 1];
add:

//Function to add the right magazine for a weapon.
_ammo = [] + getArray (configFile >> "cfgWeapons" >> _loot >> "magazines");
_lootholder addMagazineCargoGlobal [(_ammo select 0),(round(random 2))]; //max 2 magazines per weapon
//end custom funtion
result:

 

attachicon.gifloot1.JPG

 

Works good, had this on my servers for a while.

It does throw a little error whenever the 'weapon' is a rangefinder or binoculars, but that's no biggie ;)

Link to comment
Share on other sites

 

I am seeing this error in my rpt since installing this:

if (({_x == _loot} count exclcontainer_list) > 0) th>
 0:40:28   Error position: <_loot} count exclcontainer_list) > 0) th>
 0:40:28   Error Undefined variable in expression: _loot
 0:40:28 File mpmissions\__cur_mp.Altis\LSpawner\fn_LSgetBuildingstospawnLoot.sqf, line 146
 0:40:28 Error in expression <d", "repairkit", true];
};

I'm running the same files as in the pumpkinpieman git except for some tweaks to the building list and loot list as my server is on A3 epoch Altis and not chernarus....

 

Any ideas anyone? Anyone else getting this? It spams like crazy in my rpt

 

Have you found the fix yet ?

 

I was having the same problem on my server until I found a fix (although I don't remember where) basicall at the very bottom of your LSLootlist there is a section here: 

//here place any other objects(ex.: Land_Basket_F, Box_East_Wps_F, Land_Can_V3_F, ...)
//used with createVehicle directly
//"lootworldObject_list" array of [class, [objectlist]]
//								class		: 0-civil, 1-military, ... (add more as you wish)
//								objectlist	: list of worldobject class names
lootworldObject_list = [
[ 0, [							// CIVIL
"Land_Basket_F", 					// food
"Land_CanisterPlastic_F",			// water
"Land_CanisterFuel_F"				// Jerrycan
]],[ 1, [						// MILITARY
"Box_NATO_Wps_F",
"Box_NATO_Ammo_F",
"Land_CanisterFuel_F",				// jerrycan
"Land_Can_V3_F", 					// energydrink
"Land_Suitcase_F"					// repairkit
]],[ 2, [						// INDUSTRIAL
"Land_CanisterFuel_F",				// jerrycan
"Land_CanisterOil_F", 				// syphon hose
"Land_Suitcase_F"					// repairkit
]],[ 3, [						// RESEARCH
"Land_Can_V3_F", 					// energydrink
"Land_Suitcase_F"					// repairkit
]]];

If that section is left blank it will throw that error you described. 

.

mine had been empty and I had put in those items.. the only problem is it will spawn those items and you can't loot them, NO report error but a few "prop" objects lying about. far better than that HUGE error 

Link to comment
Share on other sites

I followed every step and im getting no Loot at all, im using the the loot list that does not include the @MAS i just added some Optics to the list, i cant seem to find the reason, You all say i should see if im getting a rpt error but i also have no idea how to see that, the server is runing smoothly just no extra spawn.

If someone can help I can send my whole PBO file to see if you find my mistake.

 

Thank you in advance

Link to comment
Share on other sites

Have you found the fix yet ?

 

I was having the same problem on my server until I found a fix (although I don't remember where) basicall at the very bottom of your LSLootlist there is a section here: 

//here place any other objects(ex.: Land_Basket_F, Box_East_Wps_F, Land_Can_V3_F, ...)
//used with createVehicle directly
//"lootworldObject_list" array of [class, [objectlist]]
//								class		: 0-civil, 1-military, ... (add more as you wish)
//								objectlist	: list of worldobject class names
lootworldObject_list = [
[ 0, [							// CIVIL
"Land_Basket_F", 					// food
"Land_CanisterPlastic_F",			// water
"Land_CanisterFuel_F"				// Jerrycan
]],[ 1, [						// MILITARY
"Box_NATO_Wps_F",
"Box_NATO_Ammo_F",
"Land_CanisterFuel_F",				// jerrycan
"Land_Can_V3_F", 					// energydrink
"Land_Suitcase_F"					// repairkit
]],[ 2, [						// INDUSTRIAL
"Land_CanisterFuel_F",				// jerrycan
"Land_CanisterOil_F", 				// syphon hose
"Land_Suitcase_F"					// repairkit
]],[ 3, [						// RESEARCH
"Land_Can_V3_F", 					// energydrink
"Land_Suitcase_F"					// repairkit
]]];

If that section is left blank it will throw that error you described. 

.

mine had been empty and I had put in those items.. the only problem is it will spawn those items and you can't loot them, NO report error but a few "prop" objects lying about. far better than that HUGE error 


lootworldObject_list = [
[ 0, [ // CIVIL
"Land_Photos_V1_F",
"Land_Photos_V2_F",
"Land_Photos_V3_F",
"Land_Photos_V4_F",
"Land_Photos_V5_F",
"Land_Photos_V6_F"
]],[ 1, [ // MILITARY
"Land_Photos_V1_F",
"Land_Photos_V2_F",
"Land_Photos_V3_F",
"Land_Photos_V4_F",
"Land_Photos_V5_F",
"Land_Photos_V6_F"
]],[ 2, [ // INDUSTRIAL
"Land_Photos_V1_F",
"Land_Photos_V2_F",
"Land_Photos_V3_F",
"Land_Photos_V4_F",
"Land_Photos_V5_F",
"Land_Photos_V6_F"
]],[ 3, [ // RESEARCH
"Land_Photos_V1_F",
"Land_Photos_V2_F",
"Land_Photos_V3_F",
"Land_Photos_V4_F",
"Land_Photos_V5_F",
"Land_Photos_V6_F"
]]];

should do the trick :) No worries about not Lootable Items, just a bunch of trash(photos)

Link to comment
Share on other sites

 

Works good, had this on my servers for a while.

It does throw a little error whenever the 'weapon' is a rangefinder or binoculars, but that's no biggie ;)

 

maybe i write a little exception to get away the rpt errors. Its not really an issue but on frequented servers with lots of ppl ruarround it might fill the log and cause disc i/o thats not needed

Link to comment
Share on other sites

maybe i write a little exception to get away the rpt errors. Its not really an issue but on frequented servers with lots of ppl ruarround it might fill the log and cause disc i/o thats not needed

//Function to add the right magazine for a weapon.
_ammo = [] + getArray (configFile >> "cfgWeapons" >> _loot >> "magazines");
_ammoCount = count _ammo;
if(_ammoCount > 0) then {
            _lootholder addMagazineCargoGlobal [(_ammo select 0),(round(random 2))]; //max 2 magazines per weapon
};
//end custom funtion

Should do the job normally :)

Didn't test it tho.

 

Link to comment
Share on other sites

Here is a updated copy of the Loot list  i use which includes mas.

Its been cleaned up and reworked for MAS 1.6 and has some extra goodies this will not work on all servers so use wisely.

 

// Lootspawner junction lists for classes to spawn-/lootable items


// Author: Na_Palm (BIS forums)
//-------------------------------------------------------------------------------------
//here place Weapons an usable items (ex.: Binocular, ...)
//used with addWeaponCargoGlobal
//"lootWeapon_list" array of [class, [weaponlist]]
// class : 0-civil, 1-military, ... (add more as you wish)
// weaponlist : list of weapon class names
lootWeapon_list = [
[ 0, [ // CIVIL
"arifle_mas_hk416", "arifle_mas_hk416_t", "arifle_mas_hk416_h", "arifle_mas_hk416_a", "arifle_mas_hk416_e", "arifle_mas_hk416_sd", "arifle_mas_hk416_gl", "arifle_mas_hk416_gl_t", "arifle_mas_hk416_gl_h", "arifle_mas_hk416_gl_a", "arifle_mas_hk416_gl_e", "arifle_mas_hk416_gl_sd", "arifle_mas_hk416_m203", "arifle_mas_hk416_m203_t", "arifle_mas_hk416_m203_h", "arifle_mas_hk416_m203_a", "arifle_mas_hk416_m203_e", "arifle_mas_hk416_m203_sd", "arifle_mas_hk416_v", "arifle_mas_hk416_v_t", "arifle_mas_hk416_v_h", "arifle_mas_hk416_v_a", "arifle_mas_hk416_v_e", "arifle_mas_hk416_v_sd", "arifle_mas_hk416_gl_v", "arifle_mas_hk416_gl_v_t", "arifle_mas_hk416_gl_v_h", "arifle_mas_hk416_gl_v_a", "arifle_mas_hk416_gl_v_e", "arifle_mas_hk416_gl_v_sd", "arifle_mas_hk416_m203_v", "arifle_mas_hk416_m203_v_t", "arifle_mas_hk416_m203_v_h", "arifle_mas_hk416_m203_v_a", "arifle_mas_hk416_m203_v_e", "arifle_mas_hk416_m203_v_sd", "arifle_mas_hk416_d", "arifle_mas_hk416_d_t", "arifle_mas_hk416_d_h", "arifle_mas_hk416_d_a", "arifle_mas_hk416_d_e", "arifle_mas_hk416_d_sd", "arifle_mas_hk416_gl_d", "arifle_mas_hk416_gl_d_t", "arifle_mas_hk416_gl_d_h", "arifle_mas_hk416_gl_d_a", "arifle_mas_hk416_gl_d_e", "arifle_mas_hk416_gl_d_sd", "arifle_mas_hk416_m203_d", "arifle_mas_hk416_m203_d_t", "arifle_mas_hk416_m203_d_h", "arifle_mas_hk416_m203_d_a", "arifle_mas_hk416_m203_d_e", "arifle_mas_hk416_m203_d_sd", "arifle_mas_hk416c", "arifle_mas_hk416c_h", "arifle_mas_hk416c_e", "arifle_mas_hk416c_sd", "arifle_mas_hk416_m203c",  "arifle_mas_hk416_m203c_h",  "arifle_mas_hk416_m203c_e", "arifle_mas_hk416_m203c_sd", "arifle_mas_hk416c_v",  "arifle_mas_hk416c_v_h",  "arifle_mas_hk416c_v_e", "arifle_mas_hk416c_v_sd", "arifle_mas_hk416_m203c_v",  "arifle_mas_hk416_m203c_v_h",  "arifle_mas_hk416_m203c_v_e", "arifle_mas_hk416_m203c_v_sd", "arifle_mas_hk416c_d",  "arifle_mas_hk416c_d_h",  "arifle_mas_hk416c_d_e", "arifle_mas_hk416c_d_sd", "arifle_mas_hk416_m203c_d",  "arifle_mas_hk416_m203c_d_h", "arifle_mas_hk416_m203c_d_e", "arifle_mas_hk416_m203c_d_sd",
"arifle_mas_hk417c", "arifle_mas_hk417c_h", "arifle_mas_hk417c_e", "arifle_mas_hk417c_sd", "arifle_mas_hk417_m203c",  "arifle_mas_hk417_m203c_h",  "arifle_mas_hk417_m203c_e", "arifle_mas_hk417_m203c_sd", "arifle_mas_hk417c_v",  "arifle_mas_hk417c_v_h",  "arifle_mas_hk417c_v_e", "arifle_mas_hk417c_v_sd", "arifle_mas_hk417_m203c_v",  "arifle_mas_hk417_m203c_v_h",  "arifle_mas_hk417_m203c_v_e", "arifle_mas_hk417_m203c_v_sd", "arifle_mas_hk417c_d",  "arifle_mas_hk417c_d_h",  "arifle_mas_hk417c_d_e", "arifle_mas_hk417c_d_sd", "arifle_mas_hk417_m203c_d",  "arifle_mas_hk417_m203c_d_h", "arifle_mas_hk417_m203c_d_e", "arifle_mas_hk417_m203c_d_sd",
"arifle_mas_m4", "arifle_mas_m4_t", "arifle_mas_m4_ti", "arifle_mas_m4_h", "arifle_mas_m4_a", "arifle_mas_m4_e", "arifle_mas_m4_sd", "arifle_mas_m4_gl", "arifle_mas_m4_gl_t", "arifle_mas_m4_gl_ti", "arifle_mas_m4_gl_h", "arifle_mas_m4_gl_a", "arifle_mas_m4_gl_e", "arifle_mas_m4_gl_sd", "arifle_mas_m4_m203", "arifle_mas_m4_m203_t", "arifle_mas_m4_m203_ti", "arifle_mas_m4_m203_h", "arifle_mas_m4_m203_a", "arifle_mas_m4_m203_e", "arifle_mas_m4_m203_sd", "arifle_mas_m4_v", "arifle_mas_m4_v_t", "arifle_mas_m4_v_ti", "arifle_mas_m4_v_h", "arifle_mas_m4_v_a", "arifle_mas_m4_v_e", "arifle_mas_m4_v_sd", "arifle_mas_m4_gl_v", "arifle_mas_m4_gl_v_t", "arifle_mas_m4_gl_v_ti", "arifle_mas_m4_gl_v_h", "arifle_mas_m4_gl_v_a", "arifle_mas_m4_gl_v_e", "arifle_mas_m4_gl_v_sd", "arifle_mas_m4_m203_v", "arifle_mas_m4_m203_v_t", "arifle_mas_m4_m203_v_ti", "arifle_mas_m4_m203_v_h", "arifle_mas_m4_m203_v_a", "arifle_mas_m4_m203_v_e", "arifle_mas_m4_m203_v_sd", "arifle_mas_m4_d", "arifle_mas_m4_d_t", "arifle_mas_m4_d_ti", "arifle_mas_m4_d_h", "arifle_mas_m4_d_a", "arifle_mas_m4_d_e", "arifle_mas_m4_d_sd", "arifle_mas_m4_gl_d", "arifle_mas_m4_gl_d_t", "arifle_mas_m4_gl_d_ti", "arifle_mas_m4_gl_d_h", "arifle_mas_m4_gl_d_a", "arifle_mas_m4_gl_d_e", "arifle_mas_m4_gl_d_sd", "arifle_mas_m4_m203_d", "arifle_mas_m4_m203_d_t", "arifle_mas_m4_m203_d_ti", "arifle_mas_m4_m203_d_h", "arifle_mas_m4_m203_d_a", "arifle_mas_m4_m203_d_e", "arifle_mas_m4_m203_d_sd", "arifle_mas_m4c", "arifle_mas_m4c_h", "arifle_mas_m4c_e", "arifle_mas_m4c_sd", "arifle_mas_m4_m203c",  "arifle_mas_m4_m203c_h",  "arifle_mas_m4_m203c_e", "arifle_mas_m4_m203c_sd", "arifle_mas_m4c_v",  "arifle_mas_m4c_v_h",  "arifle_mas_m4c_v_e", "arifle_mas_m4c_v_sd", "arifle_mas_m4_m203c_v",  "arifle_mas_m4_m203c_v_h",  "arifle_mas_m4_m203c_v_e", "arifle_mas_m4_m203c_v_sd", "arifle_mas_m4c_d",  "arifle_mas_m4c_d_h",  "arifle_mas_m4c_d_e", "arifle_mas_m4c_d_sd", "arifle_mas_m4_m203c_d",  "arifle_mas_m4_m203c_d_h", "arifle_mas_m4_m203c_d_e", "arifle_mas_m4_m203c_d_sd", "arifle_mas_m16", "arifle_mas_m16_t", "arifle_mas_m16_a", "arifle_mas_m16_e", "arifle_mas_m16_sd", "arifle_mas_m16_gl", "arifle_mas_m16_gl_t", "arifle_mas_m16_gl_a", "arifle_mas_m16_gl_e", "arifle_mas_m16_gl_sd",
"arifle_mas_l119", "arifle_mas_l119_t", "arifle_mas_l119_ti", "arifle_mas_l119_h", "arifle_mas_l119_a", "arifle_mas_l119_e", "arifle_mas_l119_sd", "arifle_mas_l119_gl", "arifle_mas_l119_gl_t", "arifle_mas_l119_gl_ti", "arifle_mas_l119_gl_h", "arifle_mas_l119_gl_a", "arifle_mas_l119_gl_e", "arifle_mas_l119_gl_sd", "arifle_mas_l119_m203", "arifle_mas_l119_m203_t", "arifle_mas_l119_m203_ti", "arifle_mas_l119_m203_h", "arifle_mas_l119_m203_a", "arifle_mas_l119_m203_e", "arifle_mas_l119_m203_sd", "arifle_mas_l119_v", "arifle_mas_l119_v_t", "arifle_mas_l119_v_ti", "arifle_mas_l119_v_h", "arifle_mas_l119_v_a", "arifle_mas_l119_v_e", "arifle_mas_l119_v_sd", "arifle_mas_l119_gl_v", "arifle_mas_l119_gl_v_t", "arifle_mas_l119_gl_v_ti", "arifle_mas_l119_gl_v_h", "arifle_mas_l119_gl_v_a", "arifle_mas_l119_gl_v_e", "arifle_mas_l119_gl_v_sd", "arifle_mas_l119_m203_v", "arifle_mas_l119_m203_v_t", "arifle_mas_l119_m203_v_ti", "arifle_mas_l119_m203_v_h", "arifle_mas_l119_m203_v_a", "arifle_mas_l119_m203_v_e", "arifle_mas_l119_m203_v_sd", "arifle_mas_l119_d", "arifle_mas_l119_d_t", "arifle_mas_l119_d_ti", "arifle_mas_l119_d_h", "arifle_mas_l119_d_a", "arifle_mas_l119_d_e", "arifle_mas_l119_d_sd", "arifle_mas_l119_gl_d", "arifle_mas_l119_gl_d_t", "arifle_mas_l119_gl_d_ti", "arifle_mas_l119_gl_d_h", "arifle_mas_l119_gl_d_a", "arifle_mas_l119_gl_d_e", "arifle_mas_l119_gl_d_sd", "arifle_mas_l119_m203_d", "arifle_mas_l119_m203_d_t", "arifle_mas_l119_m203_d_ti", "arifle_mas_l119_m203_d_h", "arifle_mas_l119_m203_d_a", "arifle_mas_l119_m203_d_e", "arifle_mas_l119_m203_d_sd",
"arifle_mas_g36c", "arifle_mas_g36c_h", "arifle_mas_g36c_a", "arifle_mas_g36c_e", "arifle_mas_g36c_sd",
"arifle_mas_mk16", "arifle_mas_mk16_h", "arifle_mas_mk16_e", "arifle_mas_mk16_sd", "arifle_mas_mk16_gl", "arifle_mas_mk16_gl_h", "arifle_mas_mk16_gl_e", "arifle_mas_mk16_gl_sd", "arifle_mas_mk16_l", "arifle_mas_mk16_l_h", "arifle_mas_mk16_l_e", "arifle_mas_mk16_l_sd", "arifle_mas_mk16_l_gl", "arifle_mas_mk16_l_gl_h", "arifle_mas_mk16_l_gl_e", "arifle_mas_mk16_l_gl_sd",
"arifle_mas_mk17", "arifle_mas_mk17_h", "arifle_mas_mk17_e", "arifle_mas_mk17_sd", "arifle_mas_mk17_gl", "arifle_mas_mk17_gl_h", "arifle_mas_mk17_gl_e", "arifle_mas_mk17_gl_sd",
"arifle_mas_g3", "arifle_mas_g3_h", "arifle_mas_g3_a", "arifle_mas_g3_m203", "arifle_mas_g3_m203_h", "arifle_mas_g3_m203_a", "arifle_mas_g3s", "arifle_mas_g3s_h", "arifle_mas_g3s_a", "arifle_mas_g3s_m203", "arifle_mas_g3s_m203_h", "arifle_mas_g3s_m203_a",
"arifle_mas_fal", "arifle_mas_fal_h", "arifle_mas_fal_a", "arifle_mas_fal_m203", "arifle_mas_fal_m203_h", "arifle_mas_fal_m203_a",
"arifle_mas_m14", "arifle_mas_m14_h", "arifle_mas_m14_a", "arifle_mas_m14_l",
"arifle_mas_lee", "arifle_mas_lee_l",
"arifle_mas_m1014",
"srifle_mas_hk417", "srifle_mas_hk417_h", "srifle_mas_hk417_sd", "srifle_mas_hk417_v", "srifle_mas_hk417_v_h", "srifle_mas_hk417_v_sd", "srifle_mas_hk417_d", "srifle_mas_hk417_d_h", "srifle_mas_hk417_d_sd", "srifle_mas_sr25", "srifle_mas_sr25_h", "srifle_mas_sr25_sd", "srifle_mas_sr25_v", "srifle_mas_sr25_v_h", "srifle_mas_sr25_v_sd", "srifle_mas_sr25_d", "srifle_mas_sr25_d_h", "srifle_mas_sr25_d_sd", "srifle_mas_ebr", "srifle_mas_ebr_a", "srifle_mas_ebr_t", "srifle_mas_ebr_h", "srifle_mas_ebr_sd", "srifle_mas_mk17s", "srifle_mas_mk17s_h", "srifle_mas_mk17s_sd", "srifle_mas_m110", "srifle_mas_m110_h", "srifle_mas_m110_sd",
"srifle_mas_m107", "srifle_mas_m107_h", "srifle_mas_m107_sd", "srifle_mas_m107_v", "srifle_mas_m107_v_h", "srifle_mas_m107_v_sd", "srifle_mas_m107_d", "srifle_mas_m107_d_h", "srifle_mas_m107_d_sd",
"srifle_mas_m24", "srifle_mas_m24_h", "srifle_mas_m24_v", "srifle_mas_m24_v_h", "srifle_mas_m24_d", "srifle_mas_m24_d_h",
"srifle_mas_lrr", "srifle_mas_lrr_h", "srifle_mas_lrr_sd",
"arifle_mas_mp5", "arifle_mas_mp5_a", "arifle_mas_mp5_e", "arifle_mas_mp5_sd", "arifle_mas_mp5_v", "arifle_mas_mp5_v_a", "arifle_mas_mp5_v_e", "arifle_mas_mp5_v_sd", "arifle_mas_mp5_d", "arifle_mas_mp5_d_a", "arifle_mas_mp5_d_e", "arifle_mas_mp5_d_sd", "arifle_mas_mp5sd", "arifle_mas_mp5sd_a", "arifle_mas_mp5sd_e", "arifle_mas_mp5sd_ds",
"hgun_mas_mp7_F", "hgun_mas_mp7_F_a", "hgun_mas_mp7_F_sd",
"LMG_mas_Mk200_F", "LMG_mas_Mk200_F_t", "LMG_mas_Mk200_F_h", "LMG_mas_Mk200_F_a", "LMG_mas_Mk200_F_sd", "LMG_mas_M249_F", "LMG_mas_M249_F_t", "LMG_mas_M249_F_h", "LMG_mas_M249_F_a", "LMG_mas_M249_F_sd", "LMG_mas_M249_F_v", "LMG_mas_M249_F_v_t", "LMG_mas_M249_F_v_h", "LMG_mas_M249_F_v_a", "LMG_mas_M249_F_v_sd", "LMG_mas_M249_F_d", "LMG_mas_M249_F_d_t", "LMG_mas_M249_F_d_h", "LMG_mas_M249_F_d_a", "LMG_mas_M249_F_d_sd", "LMG_mas_M249a_F", "LMG_mas_M249a_F_t", "LMG_mas_M249a_F_a",
"LMG_mas_Mk48_F", "LMG_mas_Mk48_F_t", "LMG_mas_Mk48_F_h", "LMG_mas_Mk48_F_a", "LMG_mas_Mk48_F_v", "LMG_mas_Mk48_F_v_t", "LMG_mas_Mk48_F_v_h", "LMG_mas_Mk48_F_v_a", "LMG_mas_Mk48_F_d", "LMG_mas_Mk48_F_d_t", "LMG_mas_Mk48_F_d_h", "LMG_mas_Mk48_F_d_a", "LMG_mas_M240_F", "LMG_mas_M240_F_h", "LMG_mas_M240_F_a", "LMG_mas_mg3_F", "LMG_mas_mg3_F_h", "LMG_mas_M60_F", "LMG_mas_M60_F_h", "LMG_mas_M60_F_a",
"arifle_mas_ak_74m", "arifle_mas_ak_74m_h", "arifle_mas_ak_74m_ti", "arifle_mas_ak_74m_a", "arifle_mas_ak_74m_sd", "arifle_mas_ak_74m_gl", "arifle_mas_ak_74m_gl_h", "arifle_mas_ak_74m_gl_ti", "arifle_mas_ak_74m_gl_a", "arifle_mas_ak_74m_gl_sd", "arifle_mas_ak_74m_c", "arifle_mas_ak_74m_c_h", "arifle_mas_ak_74m_c_ti", "arifle_mas_ak_74m_c_a", "arifle_mas_ak_74m_c_sd", "arifle_mas_ak_74m_gl_c", "arifle_mas_ak_74m_gl_c_h", "arifle_mas_ak_74m_gl_c_ti", "arifle_mas_ak_74m_gl_c_a", "arifle_mas_ak_74m_gl_c_sd", "arifle_mas_aks74", "arifle_mas_aks74_h", "arifle_mas_aks74_a", "arifle_mas_aks74_gl", "arifle_mas_aks74_gl_h", "arifle_mas_aks74_gl_a", "arifle_mas_ak74", "arifle_mas_ak74_h", "arifle_mas_ak74_a", "arifle_mas_ak74_l", "arifle_mas_ak74_gl", "arifle_mas_ak74_gl_h", "arifle_mas_ak74_gl_a", "arifle_mas_ak74_gl_l",
"arifle_mas_akms", "arifle_mas_akms_h", "arifle_mas_akms_a", "arifle_mas_akms_sd", "arifle_mas_akms_gl", "arifle_mas_akms_gl_h", "arifle_mas_akms_gl_a", "arifle_mas_akms_gl_sd", "arifle_mas_akms_c", "arifle_mas_akms_c_h", "arifle_mas_akms_c_a", "arifle_mas_akms_c_sd", "arifle_mas_akms_gl_c", "arifle_mas_akms_gl_c_h", "arifle_mas_akms_gl_c_a", "arifle_mas_akms_gl_c_sd", "arifle_mas_akm", "arifle_mas_akm_h", "arifle_mas_akm_a", "arifle_mas_akm_gl", "arifle_mas_akm_gl_h", "arifle_mas_akm_gl_a",
"arifle_mas_bizon", "arifle_mas_bizon_h", "arifle_mas_bizon_a", "arifle_mas_bizon_sd",
"arifle_mas_saiga",
"arifle_mas_m70", "arifle_mas_m70_gl", "arifle_mas_m70ab", "arifle_mas_m70ab_gl",
"srifle_mas_m91", "srifle_mas_m91_l",
"LMG_mas_m72_F",
"srifle_mas_svd", "srifle_mas_svd_h", "srifle_mas_svd_sd", "srifle_mas_svd_l",
"srifle_mas_vss", "srifle_mas_vss_h",
"arifle_mas_asval", "arifle_mas_asval_h", "arifle_mas_asval_a", "arifle_mas_asval_ds",
"srifle_mas_ksvk", "srifle_mas_ksvk_h", "srifle_mas_ksvk_sd", "srifle_mas_ksvk_c", "srifle_mas_ksvk_c_h", "srifle_mas_ksvk_c_sd",
"arifle_mas_aks74u", "arifle_mas_aks74u_h", "arifle_mas_aks74u_a", "arifle_mas_aks74u_sd", "arifle_mas_aks74u_c", "arifle_mas_aks74u_c_h", "arifle_mas_aks74u_c_a", "arifle_mas_aks74u_c_sd",
"LMG_mas_rpk_F", "LMG_mas_rpk_F_h", "LMG_mas_rpk_F_a", "LMG_mas_rpk_F_sd",
"LMG_mas_pkm_F", "LMG_mas_pkm_F_h", "LMG_mas_pkm_F_a",
"hgun_mas_uzi_F", "hgun_mas_uzi_F_sd",
"hgun_mas_m9_F", "hgun_mas_bhp_F", "hgun_mas_glock_F", "hgun_mas_m9_F_sd", "hgun_mas_bhp_F_sd", "hgun_mas_glock_F_sd",
"hgun_mas_grach_F", "hgun_mas_grach_F_sd",
"hgun_mas_mak_F", "hgun_mas_mak_F_sd"
]],[ 1, [ // MILITARY
"arifle_mas_hk416", "arifle_mas_hk416_t", "arifle_mas_hk416_h", "arifle_mas_hk416_a", "arifle_mas_hk416_e", "arifle_mas_hk416_sd", "arifle_mas_hk416_gl", "arifle_mas_hk416_gl_t", "arifle_mas_hk416_gl_h", "arifle_mas_hk416_gl_a", "arifle_mas_hk416_gl_e", "arifle_mas_hk416_gl_sd", "arifle_mas_hk416_m203", "arifle_mas_hk416_m203_t", "arifle_mas_hk416_m203_h", "arifle_mas_hk416_m203_a", "arifle_mas_hk416_m203_e", "arifle_mas_hk416_m203_sd", "arifle_mas_hk416_v", "arifle_mas_hk416_v_t", "arifle_mas_hk416_v_h", "arifle_mas_hk416_v_a", "arifle_mas_hk416_v_e", "arifle_mas_hk416_v_sd", "arifle_mas_hk416_gl_v", "arifle_mas_hk416_gl_v_t", "arifle_mas_hk416_gl_v_h", "arifle_mas_hk416_gl_v_a", "arifle_mas_hk416_gl_v_e", "arifle_mas_hk416_gl_v_sd", "arifle_mas_hk416_m203_v", "arifle_mas_hk416_m203_v_t", "arifle_mas_hk416_m203_v_h", "arifle_mas_hk416_m203_v_a", "arifle_mas_hk416_m203_v_e", "arifle_mas_hk416_m203_v_sd", "arifle_mas_hk416_d", "arifle_mas_hk416_d_t", "arifle_mas_hk416_d_h", "arifle_mas_hk416_d_a", "arifle_mas_hk416_d_e", "arifle_mas_hk416_d_sd", "arifle_mas_hk416_gl_d", "arifle_mas_hk416_gl_d_t", "arifle_mas_hk416_gl_d_h", "arifle_mas_hk416_gl_d_a", "arifle_mas_hk416_gl_d_e", "arifle_mas_hk416_gl_d_sd", "arifle_mas_hk416_m203_d", "arifle_mas_hk416_m203_d_t", "arifle_mas_hk416_m203_d_h", "arifle_mas_hk416_m203_d_a", "arifle_mas_hk416_m203_d_e", "arifle_mas_hk416_m203_d_sd", "arifle_mas_hk416c", "arifle_mas_hk416c_h", "arifle_mas_hk416c_e", "arifle_mas_hk416c_sd", "arifle_mas_hk416_m203c",  "arifle_mas_hk416_m203c_h",  "arifle_mas_hk416_m203c_e", "arifle_mas_hk416_m203c_sd", "arifle_mas_hk416c_v",  "arifle_mas_hk416c_v_h",  "arifle_mas_hk416c_v_e", "arifle_mas_hk416c_v_sd", "arifle_mas_hk416_m203c_v",  "arifle_mas_hk416_m203c_v_h",  "arifle_mas_hk416_m203c_v_e", "arifle_mas_hk416_m203c_v_sd", "arifle_mas_hk416c_d",  "arifle_mas_hk416c_d_h",  "arifle_mas_hk416c_d_e", "arifle_mas_hk416c_d_sd", "arifle_mas_hk416_m203c_d",  "arifle_mas_hk416_m203c_d_h", "arifle_mas_hk416_m203c_d_e", "arifle_mas_hk416_m203c_d_sd",
"arifle_mas_hk417c", "arifle_mas_hk417c_h", "arifle_mas_hk417c_e", "arifle_mas_hk417c_sd", "arifle_mas_hk417_m203c",  "arifle_mas_hk417_m203c_h",  "arifle_mas_hk417_m203c_e", "arifle_mas_hk417_m203c_sd", "arifle_mas_hk417c_v",  "arifle_mas_hk417c_v_h",  "arifle_mas_hk417c_v_e", "arifle_mas_hk417c_v_sd", "arifle_mas_hk417_m203c_v",  "arifle_mas_hk417_m203c_v_h",  "arifle_mas_hk417_m203c_v_e", "arifle_mas_hk417_m203c_v_sd", "arifle_mas_hk417c_d",  "arifle_mas_hk417c_d_h",  "arifle_mas_hk417c_d_e", "arifle_mas_hk417c_d_sd", "arifle_mas_hk417_m203c_d",  "arifle_mas_hk417_m203c_d_h", "arifle_mas_hk417_m203c_d_e", "arifle_mas_hk417_m203c_d_sd",
"arifle_mas_m4", "arifle_mas_m4_t", "arifle_mas_m4_ti", "arifle_mas_m4_h", "arifle_mas_m4_a", "arifle_mas_m4_e", "arifle_mas_m4_sd", "arifle_mas_m4_gl", "arifle_mas_m4_gl_t", "arifle_mas_m4_gl_ti", "arifle_mas_m4_gl_h", "arifle_mas_m4_gl_a", "arifle_mas_m4_gl_e", "arifle_mas_m4_gl_sd", "arifle_mas_m4_m203", "arifle_mas_m4_m203_t", "arifle_mas_m4_m203_ti", "arifle_mas_m4_m203_h", "arifle_mas_m4_m203_a", "arifle_mas_m4_m203_e", "arifle_mas_m4_m203_sd", "arifle_mas_m4_v", "arifle_mas_m4_v_t", "arifle_mas_m4_v_ti", "arifle_mas_m4_v_h", "arifle_mas_m4_v_a", "arifle_mas_m4_v_e", "arifle_mas_m4_v_sd", "arifle_mas_m4_gl_v", "arifle_mas_m4_gl_v_t", "arifle_mas_m4_gl_v_ti", "arifle_mas_m4_gl_v_h", "arifle_mas_m4_gl_v_a", "arifle_mas_m4_gl_v_e", "arifle_mas_m4_gl_v_sd", "arifle_mas_m4_m203_v", "arifle_mas_m4_m203_v_t", "arifle_mas_m4_m203_v_ti", "arifle_mas_m4_m203_v_h", "arifle_mas_m4_m203_v_a", "arifle_mas_m4_m203_v_e", "arifle_mas_m4_m203_v_sd", "arifle_mas_m4_d", "arifle_mas_m4_d_t", "arifle_mas_m4_d_ti", "arifle_mas_m4_d_h", "arifle_mas_m4_d_a", "arifle_mas_m4_d_e", "arifle_mas_m4_d_sd", "arifle_mas_m4_gl_d", "arifle_mas_m4_gl_d_t", "arifle_mas_m4_gl_d_ti", "arifle_mas_m4_gl_d_h", "arifle_mas_m4_gl_d_a", "arifle_mas_m4_gl_d_e", "arifle_mas_m4_gl_d_sd", "arifle_mas_m4_m203_d", "arifle_mas_m4_m203_d_t", "arifle_mas_m4_m203_d_ti", "arifle_mas_m4_m203_d_h", "arifle_mas_m4_m203_d_a", "arifle_mas_m4_m203_d_e", "arifle_mas_m4_m203_d_sd", "arifle_mas_m4c", "arifle_mas_m4c_h", "arifle_mas_m4c_e", "arifle_mas_m4c_sd", "arifle_mas_m4_m203c",  "arifle_mas_m4_m203c_h",  "arifle_mas_m4_m203c_e", "arifle_mas_m4_m203c_sd", "arifle_mas_m4c_v",  "arifle_mas_m4c_v_h",  "arifle_mas_m4c_v_e", "arifle_mas_m4c_v_sd", "arifle_mas_m4_m203c_v",  "arifle_mas_m4_m203c_v_h",  "arifle_mas_m4_m203c_v_e", "arifle_mas_m4_m203c_v_sd", "arifle_mas_m4c_d",  "arifle_mas_m4c_d_h",  "arifle_mas_m4c_d_e", "arifle_mas_m4c_d_sd", "arifle_mas_m4_m203c_d",  "arifle_mas_m4_m203c_d_h", "arifle_mas_m4_m203c_d_e", "arifle_mas_m4_m203c_d_sd", "arifle_mas_m16", "arifle_mas_m16_t", "arifle_mas_m16_a", "arifle_mas_m16_e", "arifle_mas_m16_sd", "arifle_mas_m16_gl", "arifle_mas_m16_gl_t", "arifle_mas_m16_gl_a", "arifle_mas_m16_gl_e", "arifle_mas_m16_gl_sd",
"arifle_mas_l119", "arifle_mas_l119_t", "arifle_mas_l119_ti", "arifle_mas_l119_h", "arifle_mas_l119_a", "arifle_mas_l119_e", "arifle_mas_l119_sd", "arifle_mas_l119_gl", "arifle_mas_l119_gl_t", "arifle_mas_l119_gl_ti", "arifle_mas_l119_gl_h", "arifle_mas_l119_gl_a", "arifle_mas_l119_gl_e", "arifle_mas_l119_gl_sd", "arifle_mas_l119_m203", "arifle_mas_l119_m203_t", "arifle_mas_l119_m203_ti", "arifle_mas_l119_m203_h", "arifle_mas_l119_m203_a", "arifle_mas_l119_m203_e", "arifle_mas_l119_m203_sd", "arifle_mas_l119_v", "arifle_mas_l119_v_t", "arifle_mas_l119_v_ti", "arifle_mas_l119_v_h", "arifle_mas_l119_v_a", "arifle_mas_l119_v_e", "arifle_mas_l119_v_sd", "arifle_mas_l119_gl_v", "arifle_mas_l119_gl_v_t", "arifle_mas_l119_gl_v_ti", "arifle_mas_l119_gl_v_h", "arifle_mas_l119_gl_v_a", "arifle_mas_l119_gl_v_e", "arifle_mas_l119_gl_v_sd", "arifle_mas_l119_m203_v", "arifle_mas_l119_m203_v_t", "arifle_mas_l119_m203_v_ti", "arifle_mas_l119_m203_v_h", "arifle_mas_l119_m203_v_a", "arifle_mas_l119_m203_v_e", "arifle_mas_l119_m203_v_sd", "arifle_mas_l119_d", "arifle_mas_l119_d_t", "arifle_mas_l119_d_ti", "arifle_mas_l119_d_h", "arifle_mas_l119_d_a", "arifle_mas_l119_d_e", "arifle_mas_l119_d_sd", "arifle_mas_l119_gl_d", "arifle_mas_l119_gl_d_t", "arifle_mas_l119_gl_d_ti", "arifle_mas_l119_gl_d_h", "arifle_mas_l119_gl_d_a", "arifle_mas_l119_gl_d_e", "arifle_mas_l119_gl_d_sd", "arifle_mas_l119_m203_d", "arifle_mas_l119_m203_d_t", "arifle_mas_l119_m203_d_ti", "arifle_mas_l119_m203_d_h", "arifle_mas_l119_m203_d_a", "arifle_mas_l119_m203_d_e", "arifle_mas_l119_m203_d_sd",
"arifle_mas_g36c", "arifle_mas_g36c_h", "arifle_mas_g36c_a", "arifle_mas_g36c_e", "arifle_mas_g36c_sd",
"arifle_mas_mk16", "arifle_mas_mk16_h", "arifle_mas_mk16_e", "arifle_mas_mk16_sd", "arifle_mas_mk16_gl", "arifle_mas_mk16_gl_h", "arifle_mas_mk16_gl_e", "arifle_mas_mk16_gl_sd", "arifle_mas_mk16_l", "arifle_mas_mk16_l_h", "arifle_mas_mk16_l_e", "arifle_mas_mk16_l_sd", "arifle_mas_mk16_l_gl", "arifle_mas_mk16_l_gl_h", "arifle_mas_mk16_l_gl_e", "arifle_mas_mk16_l_gl_sd",
"arifle_mas_mk17", "arifle_mas_mk17_h", "arifle_mas_mk17_e", "arifle_mas_mk17_sd", "arifle_mas_mk17_gl", "arifle_mas_mk17_gl_h", "arifle_mas_mk17_gl_e", "arifle_mas_mk17_gl_sd",
"arifle_mas_g3", "arifle_mas_g3_h", "arifle_mas_g3_a", "arifle_mas_g3_m203", "arifle_mas_g3_m203_h", "arifle_mas_g3_m203_a", "arifle_mas_g3s", "arifle_mas_g3s_h", "arifle_mas_g3s_a", "arifle_mas_g3s_m203", "arifle_mas_g3s_m203_h", "arifle_mas_g3s_m203_a",
"arifle_mas_fal", "arifle_mas_fal_h", "arifle_mas_fal_a", "arifle_mas_fal_m203", "arifle_mas_fal_m203_h", "arifle_mas_fal_m203_a",
"arifle_mas_m14", "arifle_mas_m14_h", "arifle_mas_m14_a", "arifle_mas_m14_l",
"arifle_mas_lee", "arifle_mas_lee_l",
"arifle_mas_m1014",
"srifle_mas_hk417", "srifle_mas_hk417_h", "srifle_mas_hk417_sd", "srifle_mas_hk417_v", "srifle_mas_hk417_v_h", "srifle_mas_hk417_v_sd", "srifle_mas_hk417_d", "srifle_mas_hk417_d_h", "srifle_mas_hk417_d_sd", "srifle_mas_sr25", "srifle_mas_sr25_h", "srifle_mas_sr25_sd", "srifle_mas_sr25_v", "srifle_mas_sr25_v_h", "srifle_mas_sr25_v_sd", "srifle_mas_sr25_d", "srifle_mas_sr25_d_h", "srifle_mas_sr25_d_sd", "srifle_mas_ebr", "srifle_mas_ebr_a", "srifle_mas_ebr_t", "srifle_mas_ebr_h", "srifle_mas_ebr_sd", "srifle_mas_mk17s", "srifle_mas_mk17s_h", "srifle_mas_mk17s_sd", "srifle_mas_m110", "srifle_mas_m110_h", "srifle_mas_m110_sd",
"srifle_mas_m107", "srifle_mas_m107_h", "srifle_mas_m107_sd", "srifle_mas_m107_v", "srifle_mas_m107_v_h", "srifle_mas_m107_v_sd", "srifle_mas_m107_d", "srifle_mas_m107_d_h", "srifle_mas_m107_d_sd",
"srifle_mas_m24", "srifle_mas_m24_h", "srifle_mas_m24_v", "srifle_mas_m24_v_h", "srifle_mas_m24_d", "srifle_mas_m24_d_h",
"srifle_mas_lrr", "srifle_mas_lrr_h", "srifle_mas_lrr_sd",
"arifle_mas_mp5", "arifle_mas_mp5_a", "arifle_mas_mp5_e", "arifle_mas_mp5_sd", "arifle_mas_mp5_v", "arifle_mas_mp5_v_a", "arifle_mas_mp5_v_e", "arifle_mas_mp5_v_sd", "arifle_mas_mp5_d", "arifle_mas_mp5_d_a", "arifle_mas_mp5_d_e", "arifle_mas_mp5_d_sd", "arifle_mas_mp5sd", "arifle_mas_mp5sd_a", "arifle_mas_mp5sd_e", "arifle_mas_mp5sd_ds",
"hgun_mas_mp7_F", "hgun_mas_mp7_F_a", "hgun_mas_mp7_F_sd",
"LMG_mas_Mk200_F", "LMG_mas_Mk200_F_t", "LMG_mas_Mk200_F_h", "LMG_mas_Mk200_F_a", "LMG_mas_Mk200_F_sd", "LMG_mas_M249_F", "LMG_mas_M249_F_t", "LMG_mas_M249_F_h", "LMG_mas_M249_F_a", "LMG_mas_M249_F_sd", "LMG_mas_M249_F_v", "LMG_mas_M249_F_v_t", "LMG_mas_M249_F_v_h", "LMG_mas_M249_F_v_a", "LMG_mas_M249_F_v_sd", "LMG_mas_M249_F_d", "LMG_mas_M249_F_d_t", "LMG_mas_M249_F_d_h", "LMG_mas_M249_F_d_a", "LMG_mas_M249_F_d_sd", "LMG_mas_M249a_F", "LMG_mas_M249a_F_t", "LMG_mas_M249a_F_a",
"LMG_mas_Mk48_F", "LMG_mas_Mk48_F_t", "LMG_mas_Mk48_F_h", "LMG_mas_Mk48_F_a", "LMG_mas_Mk48_F_v", "LMG_mas_Mk48_F_v_t", "LMG_mas_Mk48_F_v_h", "LMG_mas_Mk48_F_v_a", "LMG_mas_Mk48_F_d", "LMG_mas_Mk48_F_d_t", "LMG_mas_Mk48_F_d_h", "LMG_mas_Mk48_F_d_a", "LMG_mas_M240_F", "LMG_mas_M240_F_h", "LMG_mas_M240_F_a", "LMG_mas_mg3_F", "LMG_mas_mg3_F_h", "LMG_mas_M60_F", "LMG_mas_M60_F_h", "LMG_mas_M60_F_a",
"arifle_mas_ak_74m", "arifle_mas_ak_74m_h", "arifle_mas_ak_74m_ti", "arifle_mas_ak_74m_a", "arifle_mas_ak_74m_sd", "arifle_mas_ak_74m_gl", "arifle_mas_ak_74m_gl_h", "arifle_mas_ak_74m_gl_ti", "arifle_mas_ak_74m_gl_a", "arifle_mas_ak_74m_gl_sd", "arifle_mas_ak_74m_c", "arifle_mas_ak_74m_c_h", "arifle_mas_ak_74m_c_ti", "arifle_mas_ak_74m_c_a", "arifle_mas_ak_74m_c_sd", "arifle_mas_ak_74m_gl_c", "arifle_mas_ak_74m_gl_c_h", "arifle_mas_ak_74m_gl_c_ti", "arifle_mas_ak_74m_gl_c_a", "arifle_mas_ak_74m_gl_c_sd", "arifle_mas_aks74", "arifle_mas_aks74_h", "arifle_mas_aks74_a", "arifle_mas_aks74_gl", "arifle_mas_aks74_gl_h", "arifle_mas_aks74_gl_a", "arifle_mas_ak74", "arifle_mas_ak74_h", "arifle_mas_ak74_a", "arifle_mas_ak74_l", "arifle_mas_ak74_gl", "arifle_mas_ak74_gl_h", "arifle_mas_ak74_gl_a", "arifle_mas_ak74_gl_l",
"arifle_mas_akms", "arifle_mas_akms_h", "arifle_mas_akms_a", "arifle_mas_akms_sd", "arifle_mas_akms_gl", "arifle_mas_akms_gl_h", "arifle_mas_akms_gl_a", "arifle_mas_akms_gl_sd", "arifle_mas_akms_c", "arifle_mas_akms_c_h", "arifle_mas_akms_c_a", "arifle_mas_akms_c_sd", "arifle_mas_akms_gl_c", "arifle_mas_akms_gl_c_h", "arifle_mas_akms_gl_c_a", "arifle_mas_akms_gl_c_sd", "arifle_mas_akm", "arifle_mas_akm_h", "arifle_mas_akm_a", "arifle_mas_akm_gl", "arifle_mas_akm_gl_h", "arifle_mas_akm_gl_a",
"arifle_mas_bizon", "arifle_mas_bizon_h", "arifle_mas_bizon_a", "arifle_mas_bizon_sd",
"arifle_mas_saiga",
"arifle_mas_m70", "arifle_mas_m70_gl", "arifle_mas_m70ab", "arifle_mas_m70ab_gl",
"srifle_mas_m91", "srifle_mas_m91_l",
"LMG_mas_m72_F",
"srifle_mas_svd", "srifle_mas_svd_h", "srifle_mas_svd_sd", "srifle_mas_svd_l",
"srifle_mas_vss", "srifle_mas_vss_h",
"arifle_mas_asval", "arifle_mas_asval_h", "arifle_mas_asval_a", "arifle_mas_asval_ds",
"srifle_mas_ksvk", "srifle_mas_ksvk_h", "srifle_mas_ksvk_sd", "srifle_mas_ksvk_c", "srifle_mas_ksvk_c_h", "srifle_mas_ksvk_c_sd",
"arifle_mas_aks74u", "arifle_mas_aks74u_h", "arifle_mas_aks74u_a", "arifle_mas_aks74u_sd", "arifle_mas_aks74u_c", "arifle_mas_aks74u_c_h", "arifle_mas_aks74u_c_a", "arifle_mas_aks74u_c_sd",
"LMG_mas_rpk_F", "LMG_mas_rpk_F_h", "LMG_mas_rpk_F_a", "LMG_mas_rpk_F_sd",
"LMG_mas_pkm_F", "LMG_mas_pkm_F_h", "LMG_mas_pkm_F_a",
"hgun_mas_uzi_F", "hgun_mas_uzi_F_sd",
"hgun_mas_m9_F", "hgun_mas_bhp_F", "hgun_mas_glock_F", "hgun_mas_m9_F_sd", "hgun_mas_bhp_F_sd", "hgun_mas_glock_F_sd",
"hgun_mas_grach_F", "hgun_mas_grach_F_sd",
"hgun_mas_mak_F", "hgun_mas_mak_F_sd"
]],[ 2, [ // INDUSTRIAL
"arifle_mas_hk416", "arifle_mas_hk416_t", "arifle_mas_hk416_h", "arifle_mas_hk416_a", "arifle_mas_hk416_e", "arifle_mas_hk416_sd", "arifle_mas_hk416_gl", "arifle_mas_hk416_gl_t", "arifle_mas_hk416_gl_h", "arifle_mas_hk416_gl_a", "arifle_mas_hk416_gl_e", "arifle_mas_hk416_gl_sd", "arifle_mas_hk416_m203", "arifle_mas_hk416_m203_t", "arifle_mas_hk416_m203_h", "arifle_mas_hk416_m203_a", "arifle_mas_hk416_m203_e", "arifle_mas_hk416_m203_sd", "arifle_mas_hk416_v", "arifle_mas_hk416_v_t", "arifle_mas_hk416_v_h", "arifle_mas_hk416_v_a", "arifle_mas_hk416_v_e", "arifle_mas_hk416_v_sd", "arifle_mas_hk416_gl_v", "arifle_mas_hk416_gl_v_t", "arifle_mas_hk416_gl_v_h", "arifle_mas_hk416_gl_v_a", "arifle_mas_hk416_gl_v_e", "arifle_mas_hk416_gl_v_sd", "arifle_mas_hk416_m203_v", "arifle_mas_hk416_m203_v_t", "arifle_mas_hk416_m203_v_h", "arifle_mas_hk416_m203_v_a", "arifle_mas_hk416_m203_v_e", "arifle_mas_hk416_m203_v_sd", "arifle_mas_hk416_d", "arifle_mas_hk416_d_t", "arifle_mas_hk416_d_h", "arifle_mas_hk416_d_a", "arifle_mas_hk416_d_e", "arifle_mas_hk416_d_sd", "arifle_mas_hk416_gl_d", "arifle_mas_hk416_gl_d_t", "arifle_mas_hk416_gl_d_h", "arifle_mas_hk416_gl_d_a", "arifle_mas_hk416_gl_d_e", "arifle_mas_hk416_gl_d_sd", "arifle_mas_hk416_m203_d", "arifle_mas_hk416_m203_d_t", "arifle_mas_hk416_m203_d_h", "arifle_mas_hk416_m203_d_a", "arifle_mas_hk416_m203_d_e", "arifle_mas_hk416_m203_d_sd", "arifle_mas_hk416c", "arifle_mas_hk416c_h", "arifle_mas_hk416c_e", "arifle_mas_hk416c_sd", "arifle_mas_hk416_m203c",  "arifle_mas_hk416_m203c_h",  "arifle_mas_hk416_m203c_e", "arifle_mas_hk416_m203c_sd", "arifle_mas_hk416c_v",  "arifle_mas_hk416c_v_h",  "arifle_mas_hk416c_v_e", "arifle_mas_hk416c_v_sd", "arifle_mas_hk416_m203c_v",  "arifle_mas_hk416_m203c_v_h",  "arifle_mas_hk416_m203c_v_e", "arifle_mas_hk416_m203c_v_sd", "arifle_mas_hk416c_d",  "arifle_mas_hk416c_d_h",  "arifle_mas_hk416c_d_e", "arifle_mas_hk416c_d_sd", "arifle_mas_hk416_m203c_d",  "arifle_mas_hk416_m203c_d_h", "arifle_mas_hk416_m203c_d_e", "arifle_mas_hk416_m203c_d_sd",
"arifle_mas_hk417c", "arifle_mas_hk417c_h", "arifle_mas_hk417c_e", "arifle_mas_hk417c_sd", "arifle_mas_hk417_m203c",  "arifle_mas_hk417_m203c_h",  "arifle_mas_hk417_m203c_e", "arifle_mas_hk417_m203c_sd", "arifle_mas_hk417c_v",  "arifle_mas_hk417c_v_h",  "arifle_mas_hk417c_v_e", "arifle_mas_hk417c_v_sd", "arifle_mas_hk417_m203c_v",  "arifle_mas_hk417_m203c_v_h",  "arifle_mas_hk417_m203c_v_e", "arifle_mas_hk417_m203c_v_sd", "arifle_mas_hk417c_d",  "arifle_mas_hk417c_d_h",  "arifle_mas_hk417c_d_e", "arifle_mas_hk417c_d_sd", "arifle_mas_hk417_m203c_d",  "arifle_mas_hk417_m203c_d_h", "arifle_mas_hk417_m203c_d_e", "arifle_mas_hk417_m203c_d_sd",
"arifle_mas_m4", "arifle_mas_m4_t", "arifle_mas_m4_ti", "arifle_mas_m4_h", "arifle_mas_m4_a", "arifle_mas_m4_e", "arifle_mas_m4_sd", "arifle_mas_m4_gl", "arifle_mas_m4_gl_t", "arifle_mas_m4_gl_ti", "arifle_mas_m4_gl_h", "arifle_mas_m4_gl_a", "arifle_mas_m4_gl_e", "arifle_mas_m4_gl_sd", "arifle_mas_m4_m203", "arifle_mas_m4_m203_t", "arifle_mas_m4_m203_ti", "arifle_mas_m4_m203_h", "arifle_mas_m4_m203_a", "arifle_mas_m4_m203_e", "arifle_mas_m4_m203_sd", "arifle_mas_m4_v", "arifle_mas_m4_v_t", "arifle_mas_m4_v_ti", "arifle_mas_m4_v_h", "arifle_mas_m4_v_a", "arifle_mas_m4_v_e", "arifle_mas_m4_v_sd", "arifle_mas_m4_gl_v", "arifle_mas_m4_gl_v_t", "arifle_mas_m4_gl_v_ti", "arifle_mas_m4_gl_v_h", "arifle_mas_m4_gl_v_a", "arifle_mas_m4_gl_v_e", "arifle_mas_m4_gl_v_sd", "arifle_mas_m4_m203_v", "arifle_mas_m4_m203_v_t", "arifle_mas_m4_m203_v_ti", "arifle_mas_m4_m203_v_h", "arifle_mas_m4_m203_v_a", "arifle_mas_m4_m203_v_e", "arifle_mas_m4_m203_v_sd", "arifle_mas_m4_d", "arifle_mas_m4_d_t", "arifle_mas_m4_d_ti", "arifle_mas_m4_d_h", "arifle_mas_m4_d_a", "arifle_mas_m4_d_e", "arifle_mas_m4_d_sd", "arifle_mas_m4_gl_d", "arifle_mas_m4_gl_d_t", "arifle_mas_m4_gl_d_ti", "arifle_mas_m4_gl_d_h", "arifle_mas_m4_gl_d_a", "arifle_mas_m4_gl_d_e", "arifle_mas_m4_gl_d_sd", "arifle_mas_m4_m203_d", "arifle_mas_m4_m203_d_t", "arifle_mas_m4_m203_d_ti", "arifle_mas_m4_m203_d_h", "arifle_mas_m4_m203_d_a", "arifle_mas_m4_m203_d_e", "arifle_mas_m4_m203_d_sd", "arifle_mas_m4c", "arifle_mas_m4c_h", "arifle_mas_m4c_e", "arifle_mas_m4c_sd", "arifle_mas_m4_m203c",  "arifle_mas_m4_m203c_h",  "arifle_mas_m4_m203c_e", "arifle_mas_m4_m203c_sd", "arifle_mas_m4c_v",  "arifle_mas_m4c_v_h",  "arifle_mas_m4c_v_e", "arifle_mas_m4c_v_sd", "arifle_mas_m4_m203c_v",  "arifle_mas_m4_m203c_v_h",  "arifle_mas_m4_m203c_v_e", "arifle_mas_m4_m203c_v_sd", "arifle_mas_m4c_d",  "arifle_mas_m4c_d_h",  "arifle_mas_m4c_d_e", "arifle_mas_m4c_d_sd", "arifle_mas_m4_m203c_d",  "arifle_mas_m4_m203c_d_h", "arifle_mas_m4_m203c_d_e", "arifle_mas_m4_m203c_d_sd", "arifle_mas_m16", "arifle_mas_m16_t", "arifle_mas_m16_a", "arifle_mas_m16_e", "arifle_mas_m16_sd", "arifle_mas_m16_gl", "arifle_mas_m16_gl_t", "arifle_mas_m16_gl_a", "arifle_mas_m16_gl_e", "arifle_mas_m16_gl_sd",
"arifle_mas_l119", "arifle_mas_l119_t", "arifle_mas_l119_ti", "arifle_mas_l119_h", "arifle_mas_l119_a", "arifle_mas_l119_e", "arifle_mas_l119_sd", "arifle_mas_l119_gl", "arifle_mas_l119_gl_t", "arifle_mas_l119_gl_ti", "arifle_mas_l119_gl_h", "arifle_mas_l119_gl_a", "arifle_mas_l119_gl_e", "arifle_mas_l119_gl_sd", "arifle_mas_l119_m203", "arifle_mas_l119_m203_t", "arifle_mas_l119_m203_ti", "arifle_mas_l119_m203_h", "arifle_mas_l119_m203_a", "arifle_mas_l119_m203_e", "arifle_mas_l119_m203_sd", "arifle_mas_l119_v", "arifle_mas_l119_v_t", "arifle_mas_l119_v_ti", "arifle_mas_l119_v_h", "arifle_mas_l119_v_a", "arifle_mas_l119_v_e", "arifle_mas_l119_v_sd", "arifle_mas_l119_gl_v", "arifle_mas_l119_gl_v_t", "arifle_mas_l119_gl_v_ti", "arifle_mas_l119_gl_v_h", "arifle_mas_l119_gl_v_a", "arifle_mas_l119_gl_v_e", "arifle_mas_l119_gl_v_sd", "arifle_mas_l119_m203_v", "arifle_mas_l119_m203_v_t", "arifle_mas_l119_m203_v_ti", "arifle_mas_l119_m203_v_h", "arifle_mas_l119_m203_v_a", "arifle_mas_l119_m203_v_e", "arifle_mas_l119_m203_v_sd", "arifle_mas_l119_d", "arifle_mas_l119_d_t", "arifle_mas_l119_d_ti", "arifle_mas_l119_d_h", "arifle_mas_l119_d_a", "arifle_mas_l119_d_e", "arifle_mas_l119_d_sd", "arifle_mas_l119_gl_d", "arifle_mas_l119_gl_d_t", "arifle_mas_l119_gl_d_ti", "arifle_mas_l119_gl_d_h", "arifle_mas_l119_gl_d_a", "arifle_mas_l119_gl_d_e", "arifle_mas_l119_gl_d_sd", "arifle_mas_l119_m203_d", "arifle_mas_l119_m203_d_t", "arifle_mas_l119_m203_d_ti", "arifle_mas_l119_m203_d_h", "arifle_mas_l119_m203_d_a", "arifle_mas_l119_m203_d_e", "arifle_mas_l119_m203_d_sd",
"arifle_mas_g36c", "arifle_mas_g36c_h", "arifle_mas_g36c_a", "arifle_mas_g36c_e", "arifle_mas_g36c_sd",
"arifle_mas_mk16", "arifle_mas_mk16_h", "arifle_mas_mk16_e", "arifle_mas_mk16_sd", "arifle_mas_mk16_gl", "arifle_mas_mk16_gl_h", "arifle_mas_mk16_gl_e", "arifle_mas_mk16_gl_sd", "arifle_mas_mk16_l", "arifle_mas_mk16_l_h", "arifle_mas_mk16_l_e", "arifle_mas_mk16_l_sd", "arifle_mas_mk16_l_gl", "arifle_mas_mk16_l_gl_h", "arifle_mas_mk16_l_gl_e", "arifle_mas_mk16_l_gl_sd",
"arifle_mas_mk17", "arifle_mas_mk17_h", "arifle_mas_mk17_e", "arifle_mas_mk17_sd", "arifle_mas_mk17_gl", "arifle_mas_mk17_gl_h", "arifle_mas_mk17_gl_e", "arifle_mas_mk17_gl_sd",
"arifle_mas_g3", "arifle_mas_g3_h", "arifle_mas_g3_a", "arifle_mas_g3_m203", "arifle_mas_g3_m203_h", "arifle_mas_g3_m203_a", "arifle_mas_g3s", "arifle_mas_g3s_h", "arifle_mas_g3s_a", "arifle_mas_g3s_m203", "arifle_mas_g3s_m203_h", "arifle_mas_g3s_m203_a",
"arifle_mas_fal", "arifle_mas_fal_h", "arifle_mas_fal_a", "arifle_mas_fal_m203", "arifle_mas_fal_m203_h", "arifle_mas_fal_m203_a",
"arifle_mas_m14", "arifle_mas_m14_h", "arifle_mas_m14_a", "arifle_mas_m14_l",
"arifle_mas_lee", "arifle_mas_lee_l",
"arifle_mas_m1014",
"srifle_mas_hk417", "srifle_mas_hk417_h", "srifle_mas_hk417_sd", "srifle_mas_hk417_v", "srifle_mas_hk417_v_h", "srifle_mas_hk417_v_sd", "srifle_mas_hk417_d", "srifle_mas_hk417_d_h", "srifle_mas_hk417_d_sd", "srifle_mas_sr25", "srifle_mas_sr25_h", "srifle_mas_sr25_sd", "srifle_mas_sr25_v", "srifle_mas_sr25_v_h", "srifle_mas_sr25_v_sd", "srifle_mas_sr25_d", "srifle_mas_sr25_d_h", "srifle_mas_sr25_d_sd", "srifle_mas_ebr", "srifle_mas_ebr_a", "srifle_mas_ebr_t", "srifle_mas_ebr_h", "srifle_mas_ebr_sd", "srifle_mas_mk17s", "srifle_mas_mk17s_h", "srifle_mas_mk17s_sd", "srifle_mas_m110", "srifle_mas_m110_h", "srifle_mas_m110_sd",
"srifle_mas_m107", "srifle_mas_m107_h", "srifle_mas_m107_sd", "srifle_mas_m107_v", "srifle_mas_m107_v_h", "srifle_mas_m107_v_sd", "srifle_mas_m107_d", "srifle_mas_m107_d_h", "srifle_mas_m107_d_sd",
"srifle_mas_m24", "srifle_mas_m24_h", "srifle_mas_m24_v", "srifle_mas_m24_v_h", "srifle_mas_m24_d", "srifle_mas_m24_d_h",
"srifle_mas_lrr", "srifle_mas_lrr_h", "srifle_mas_lrr_sd",
"arifle_mas_mp5", "arifle_mas_mp5_a", "arifle_mas_mp5_e", "arifle_mas_mp5_sd", "arifle_mas_mp5_v", "arifle_mas_mp5_v_a", "arifle_mas_mp5_v_e", "arifle_mas_mp5_v_sd", "arifle_mas_mp5_d", "arifle_mas_mp5_d_a", "arifle_mas_mp5_d_e", "arifle_mas_mp5_d_sd", "arifle_mas_mp5sd", "arifle_mas_mp5sd_a", "arifle_mas_mp5sd_e", "arifle_mas_mp5sd_ds",
"hgun_mas_mp7_F", "hgun_mas_mp7_F_a", "hgun_mas_mp7_F_sd",
"LMG_mas_Mk200_F", "LMG_mas_Mk200_F_t", "LMG_mas_Mk200_F_h", "LMG_mas_Mk200_F_a", "LMG_mas_Mk200_F_sd", "LMG_mas_M249_F", "LMG_mas_M249_F_t", "LMG_mas_M249_F_h", "LMG_mas_M249_F_a", "LMG_mas_M249_F_sd", "LMG_mas_M249_F_v", "LMG_mas_M249_F_v_t", "LMG_mas_M249_F_v_h", "LMG_mas_M249_F_v_a", "LMG_mas_M249_F_v_sd", "LMG_mas_M249_F_d", "LMG_mas_M249_F_d_t", "LMG_mas_M249_F_d_h", "LMG_mas_M249_F_d_a", "LMG_mas_M249_F_d_sd", "LMG_mas_M249a_F", "LMG_mas_M249a_F_t", "LMG_mas_M249a_F_a",
"LMG_mas_Mk48_F", "LMG_mas_Mk48_F_t", "LMG_mas_Mk48_F_h", "LMG_mas_Mk48_F_a", "LMG_mas_Mk48_F_v", "LMG_mas_Mk48_F_v_t", "LMG_mas_Mk48_F_v_h", "LMG_mas_Mk48_F_v_a", "LMG_mas_Mk48_F_d", "LMG_mas_Mk48_F_d_t", "LMG_mas_Mk48_F_d_h", "LMG_mas_Mk48_F_d_a", "LMG_mas_M240_F", "LMG_mas_M240_F_h", "LMG_mas_M240_F_a", "LMG_mas_mg3_F", "LMG_mas_mg3_F_h", "LMG_mas_M60_F", "LMG_mas_M60_F_h", "LMG_mas_M60_F_a",
"arifle_mas_ak_74m", "arifle_mas_ak_74m_h", "arifle_mas_ak_74m_ti", "arifle_mas_ak_74m_a", "arifle_mas_ak_74m_sd", "arifle_mas_ak_74m_gl", "arifle_mas_ak_74m_gl_h", "arifle_mas_ak_74m_gl_ti", "arifle_mas_ak_74m_gl_a", "arifle_mas_ak_74m_gl_sd", "arifle_mas_ak_74m_c", "arifle_mas_ak_74m_c_h", "arifle_mas_ak_74m_c_ti", "arifle_mas_ak_74m_c_a", "arifle_mas_ak_74m_c_sd", "arifle_mas_ak_74m_gl_c", "arifle_mas_ak_74m_gl_c_h", "arifle_mas_ak_74m_gl_c_ti", "arifle_mas_ak_74m_gl_c_a", "arifle_mas_ak_74m_gl_c_sd", "arifle_mas_aks74", "arifle_mas_aks74_h", "arifle_mas_aks74_a", "arifle_mas_aks74_gl", "arifle_mas_aks74_gl_h", "arifle_mas_aks74_gl_a", "arifle_mas_ak74", "arifle_mas_ak74_h", "arifle_mas_ak74_a", "arifle_mas_ak74_l", "arifle_mas_ak74_gl", "arifle_mas_ak74_gl_h", "arifle_mas_ak74_gl_a", "arifle_mas_ak74_gl_l",
"arifle_mas_akms", "arifle_mas_akms_h", "arifle_mas_akms_a", "arifle_mas_akms_sd", "arifle_mas_akms_gl", "arifle_mas_akms_gl_h", "arifle_mas_akms_gl_a", "arifle_mas_akms_gl_sd", "arifle_mas_akms_c", "arifle_mas_akms_c_h", "arifle_mas_akms_c_a", "arifle_mas_akms_c_sd", "arifle_mas_akms_gl_c", "arifle_mas_akms_gl_c_h", "arifle_mas_akms_gl_c_a", "arifle_mas_akms_gl_c_sd", "arifle_mas_akm", "arifle_mas_akm_h", "arifle_mas_akm_a", "arifle_mas_akm_gl", "arifle_mas_akm_gl_h", "arifle_mas_akm_gl_a",
"arifle_mas_bizon", "arifle_mas_bizon_h", "arifle_mas_bizon_a", "arifle_mas_bizon_sd",
"arifle_mas_saiga",
"arifle_mas_m70", "arifle_mas_m70_gl", "arifle_mas_m70ab", "arifle_mas_m70ab_gl",
"srifle_mas_m91", "srifle_mas_m91_l",
"LMG_mas_m72_F",
"srifle_mas_svd", "srifle_mas_svd_h", "srifle_mas_svd_sd", "srifle_mas_svd_l",
"srifle_mas_vss", "srifle_mas_vss_h",
"arifle_mas_asval", "arifle_mas_asval_h", "arifle_mas_asval_a", "arifle_mas_asval_ds",
"srifle_mas_ksvk", "srifle_mas_ksvk_h", "srifle_mas_ksvk_sd", "srifle_mas_ksvk_c", "srifle_mas_ksvk_c_h", "srifle_mas_ksvk_c_sd",
"arifle_mas_aks74u", "arifle_mas_aks74u_h", "arifle_mas_aks74u_a", "arifle_mas_aks74u_sd", "arifle_mas_aks74u_c", "arifle_mas_aks74u_c_h", "arifle_mas_aks74u_c_a", "arifle_mas_aks74u_c_sd",
"LMG_mas_rpk_F", "LMG_mas_rpk_F_h", "LMG_mas_rpk_F_a", "LMG_mas_rpk_F_sd",
"LMG_mas_pkm_F", "LMG_mas_pkm_F_h", "LMG_mas_pkm_F_a",
"hgun_mas_uzi_F", "hgun_mas_uzi_F_sd",
"hgun_mas_m9_F", "hgun_mas_bhp_F", "hgun_mas_glock_F", "hgun_mas_m9_F_sd", "hgun_mas_bhp_F_sd", "hgun_mas_glock_F_sd",
"hgun_mas_grach_F", "hgun_mas_grach_F_sd",
"hgun_mas_mak_F", "hgun_mas_mak_F_sd"
]],[ 3, [ // RESEARCH
"arifle_mas_hk416", "arifle_mas_hk416_t", "arifle_mas_hk416_h", "arifle_mas_hk416_a", "arifle_mas_hk416_e", "arifle_mas_hk416_sd", "arifle_mas_hk416_gl", "arifle_mas_hk416_gl_t", "arifle_mas_hk416_gl_h", "arifle_mas_hk416_gl_a", "arifle_mas_hk416_gl_e", "arifle_mas_hk416_gl_sd", "arifle_mas_hk416_m203", "arifle_mas_hk416_m203_t", "arifle_mas_hk416_m203_h", "arifle_mas_hk416_m203_a", "arifle_mas_hk416_m203_e", "arifle_mas_hk416_m203_sd", "arifle_mas_hk416_v", "arifle_mas_hk416_v_t", "arifle_mas_hk416_v_h", "arifle_mas_hk416_v_a", "arifle_mas_hk416_v_e", "arifle_mas_hk416_v_sd", "arifle_mas_hk416_gl_v", "arifle_mas_hk416_gl_v_t", "arifle_mas_hk416_gl_v_h", "arifle_mas_hk416_gl_v_a", "arifle_mas_hk416_gl_v_e", "arifle_mas_hk416_gl_v_sd", "arifle_mas_hk416_m203_v", "arifle_mas_hk416_m203_v_t", "arifle_mas_hk416_m203_v_h", "arifle_mas_hk416_m203_v_a", "arifle_mas_hk416_m203_v_e", "arifle_mas_hk416_m203_v_sd", "arifle_mas_hk416_d", "arifle_mas_hk416_d_t", "arifle_mas_hk416_d_h", "arifle_mas_hk416_d_a", "arifle_mas_hk416_d_e", "arifle_mas_hk416_d_sd", "arifle_mas_hk416_gl_d", "arifle_mas_hk416_gl_d_t", "arifle_mas_hk416_gl_d_h", "arifle_mas_hk416_gl_d_a", "arifle_mas_hk416_gl_d_e", "arifle_mas_hk416_gl_d_sd", "arifle_mas_hk416_m203_d", "arifle_mas_hk416_m203_d_t", "arifle_mas_hk416_m203_d_h", "arifle_mas_hk416_m203_d_a", "arifle_mas_hk416_m203_d_e", "arifle_mas_hk416_m203_d_sd", "arifle_mas_hk416c", "arifle_mas_hk416c_h", "arifle_mas_hk416c_e", "arifle_mas_hk416c_sd", "arifle_mas_hk416_m203c",  "arifle_mas_hk416_m203c_h",  "arifle_mas_hk416_m203c_e", "arifle_mas_hk416_m203c_sd", "arifle_mas_hk416c_v",  "arifle_mas_hk416c_v_h",  "arifle_mas_hk416c_v_e", "arifle_mas_hk416c_v_sd", "arifle_mas_hk416_m203c_v",  "arifle_mas_hk416_m203c_v_h",  "arifle_mas_hk416_m203c_v_e", "arifle_mas_hk416_m203c_v_sd", "arifle_mas_hk416c_d",  "arifle_mas_hk416c_d_h",  "arifle_mas_hk416c_d_e", "arifle_mas_hk416c_d_sd", "arifle_mas_hk416_m203c_d",  "arifle_mas_hk416_m203c_d_h", "arifle_mas_hk416_m203c_d_e", "arifle_mas_hk416_m203c_d_sd",
"arifle_mas_hk417c", "arifle_mas_hk417c_h", "arifle_mas_hk417c_e", "arifle_mas_hk417c_sd", "arifle_mas_hk417_m203c",  "arifle_mas_hk417_m203c_h",  "arifle_mas_hk417_m203c_e", "arifle_mas_hk417_m203c_sd", "arifle_mas_hk417c_v",  "arifle_mas_hk417c_v_h",  "arifle_mas_hk417c_v_e", "arifle_mas_hk417c_v_sd", "arifle_mas_hk417_m203c_v",  "arifle_mas_hk417_m203c_v_h",  "arifle_mas_hk417_m203c_v_e", "arifle_mas_hk417_m203c_v_sd", "arifle_mas_hk417c_d",  "arifle_mas_hk417c_d_h",  "arifle_mas_hk417c_d_e", "arifle_mas_hk417c_d_sd", "arifle_mas_hk417_m203c_d",  "arifle_mas_hk417_m203c_d_h", "arifle_mas_hk417_m203c_d_e", "arifle_mas_hk417_m203c_d_sd",
"arifle_mas_m4", "arifle_mas_m4_t", "arifle_mas_m4_ti", "arifle_mas_m4_h", "arifle_mas_m4_a", "arifle_mas_m4_e", "arifle_mas_m4_sd", "arifle_mas_m4_gl", "arifle_mas_m4_gl_t", "arifle_mas_m4_gl_ti", "arifle_mas_m4_gl_h", "arifle_mas_m4_gl_a", "arifle_mas_m4_gl_e", "arifle_mas_m4_gl_sd", "arifle_mas_m4_m203", "arifle_mas_m4_m203_t", "arifle_mas_m4_m203_ti", "arifle_mas_m4_m203_h", "arifle_mas_m4_m203_a", "arifle_mas_m4_m203_e", "arifle_mas_m4_m203_sd", "arifle_mas_m4_v", "arifle_mas_m4_v_t", "arifle_mas_m4_v_ti", "arifle_mas_m4_v_h", "arifle_mas_m4_v_a", "arifle_mas_m4_v_e", "arifle_mas_m4_v_sd", "arifle_mas_m4_gl_v", "arifle_mas_m4_gl_v_t", "arifle_mas_m4_gl_v_ti", "arifle_mas_m4_gl_v_h", "arifle_mas_m4_gl_v_a", "arifle_mas_m4_gl_v_e", "arifle_mas_m4_gl_v_sd", "arifle_mas_m4_m203_v", "arifle_mas_m4_m203_v_t", "arifle_mas_m4_m203_v_ti", "arifle_mas_m4_m203_v_h", "arifle_mas_m4_m203_v_a", "arifle_mas_m4_m203_v_e", "arifle_mas_m4_m203_v_sd", "arifle_mas_m4_d", "arifle_mas_m4_d_t", "arifle_mas_m4_d_ti", "arifle_mas_m4_d_h", "arifle_mas_m4_d_a", "arifle_mas_m4_d_e", "arifle_mas_m4_d_sd", "arifle_mas_m4_gl_d", "arifle_mas_m4_gl_d_t", "arifle_mas_m4_gl_d_ti", "arifle_mas_m4_gl_d_h", "arifle_mas_m4_gl_d_a", "arifle_mas_m4_gl_d_e", "arifle_mas_m4_gl_d_sd", "arifle_mas_m4_m203_d", "arifle_mas_m4_m203_d_t", "arifle_mas_m4_m203_d_ti", "arifle_mas_m4_m203_d_h", "arifle_mas_m4_m203_d_a", "arifle_mas_m4_m203_d_e", "arifle_mas_m4_m203_d_sd", "arifle_mas_m4c", "arifle_mas_m4c_h", "arifle_mas_m4c_e", "arifle_mas_m4c_sd", "arifle_mas_m4_m203c",  "arifle_mas_m4_m203c_h",  "arifle_mas_m4_m203c_e", "arifle_mas_m4_m203c_sd", "arifle_mas_m4c_v",  "arifle_mas_m4c_v_h",  "arifle_mas_m4c_v_e", "arifle_mas_m4c_v_sd", "arifle_mas_m4_m203c_v",  "arifle_mas_m4_m203c_v_h",  "arifle_mas_m4_m203c_v_e", "arifle_mas_m4_m203c_v_sd", "arifle_mas_m4c_d",  "arifle_mas_m4c_d_h",  "arifle_mas_m4c_d_e", "arifle_mas_m4c_d_sd", "arifle_mas_m4_m203c_d",  "arifle_mas_m4_m203c_d_h", "arifle_mas_m4_m203c_d_e", "arifle_mas_m4_m203c_d_sd", "arifle_mas_m16", "arifle_mas_m16_t", "arifle_mas_m16_a", "arifle_mas_m16_e", "arifle_mas_m16_sd", "arifle_mas_m16_gl", "arifle_mas_m16_gl_t", "arifle_mas_m16_gl_a", "arifle_mas_m16_gl_e", "arifle_mas_m16_gl_sd",
"arifle_mas_l119", "arifle_mas_l119_t", "arifle_mas_l119_ti", "arifle_mas_l119_h", "arifle_mas_l119_a", "arifle_mas_l119_e", "arifle_mas_l119_sd", "arifle_mas_l119_gl", "arifle_mas_l119_gl_t", "arifle_mas_l119_gl_ti", "arifle_mas_l119_gl_h", "arifle_mas_l119_gl_a", "arifle_mas_l119_gl_e", "arifle_mas_l119_gl_sd", "arifle_mas_l119_m203", "arifle_mas_l119_m203_t", "arifle_mas_l119_m203_ti", "arifle_mas_l119_m203_h", "arifle_mas_l119_m203_a", "arifle_mas_l119_m203_e", "arifle_mas_l119_m203_sd", "arifle_mas_l119_v", "arifle_mas_l119_v_t", "arifle_mas_l119_v_ti", "arifle_mas_l119_v_h", "arifle_mas_l119_v_a", "arifle_mas_l119_v_e", "arifle_mas_l119_v_sd", "arifle_mas_l119_gl_v", "arifle_mas_l119_gl_v_t", "arifle_mas_l119_gl_v_ti", "arifle_mas_l119_gl_v_h", "arifle_mas_l119_gl_v_a", "arifle_mas_l119_gl_v_e", "arifle_mas_l119_gl_v_sd", "arifle_mas_l119_m203_v", "arifle_mas_l119_m203_v_t", "arifle_mas_l119_m203_v_ti", "arifle_mas_l119_m203_v_h", "arifle_mas_l119_m203_v_a", "arifle_mas_l119_m203_v_e", "arifle_mas_l119_m203_v_sd", "arifle_mas_l119_d", "arifle_mas_l119_d_t", "arifle_mas_l119_d_ti", "arifle_mas_l119_d_h", "arifle_mas_l119_d_a", "arifle_mas_l119_d_e", "arifle_mas_l119_d_sd", "arifle_mas_l119_gl_d", "arifle_mas_l119_gl_d_t", "arifle_mas_l119_gl_d_ti", "arifle_mas_l119_gl_d_h", "arifle_mas_l119_gl_d_a", "arifle_mas_l119_gl_d_e", "arifle_mas_l119_gl_d_sd", "arifle_mas_l119_m203_d", "arifle_mas_l119_m203_d_t", "arifle_mas_l119_m203_d_ti", "arifle_mas_l119_m203_d_h", "arifle_mas_l119_m203_d_a", "arifle_mas_l119_m203_d_e", "arifle_mas_l119_m203_d_sd",
"arifle_mas_g36c", "arifle_mas_g36c_h", "arifle_mas_g36c_a", "arifle_mas_g36c_e", "arifle_mas_g36c_sd",
"arifle_mas_mk16", "arifle_mas_mk16_h", "arifle_mas_mk16_e", "arifle_mas_mk16_sd", "arifle_mas_mk16_gl", "arifle_mas_mk16_gl_h", "arifle_mas_mk16_gl_e", "arifle_mas_mk16_gl_sd", "arifle_mas_mk16_l", "arifle_mas_mk16_l_h", "arifle_mas_mk16_l_e", "arifle_mas_mk16_l_sd", "arifle_mas_mk16_l_gl", "arifle_mas_mk16_l_gl_h", "arifle_mas_mk16_l_gl_e", "arifle_mas_mk16_l_gl_sd",
"arifle_mas_mk17", "arifle_mas_mk17_h", "arifle_mas_mk17_e", "arifle_mas_mk17_sd", "arifle_mas_mk17_gl", "arifle_mas_mk17_gl_h", "arifle_mas_mk17_gl_e", "arifle_mas_mk17_gl_sd",
"arifle_mas_g3", "arifle_mas_g3_h", "arifle_mas_g3_a", "arifle_mas_g3_m203", "arifle_mas_g3_m203_h", "arifle_mas_g3_m203_a", "arifle_mas_g3s", "arifle_mas_g3s_h", "arifle_mas_g3s_a", "arifle_mas_g3s_m203", "arifle_mas_g3s_m203_h", "arifle_mas_g3s_m203_a",
"arifle_mas_fal", "arifle_mas_fal_h", "arifle_mas_fal_a", "arifle_mas_fal_m203", "arifle_mas_fal_m203_h", "arifle_mas_fal_m203_a",
"arifle_mas_m14", "arifle_mas_m14_h", "arifle_mas_m14_a", "arifle_mas_m14_l",
"arifle_mas_lee", "arifle_mas_lee_l",
"arifle_mas_m1014",
"srifle_mas_hk417", "srifle_mas_hk417_h", "srifle_mas_hk417_sd", "srifle_mas_hk417_v", "srifle_mas_hk417_v_h", "srifle_mas_hk417_v_sd", "srifle_mas_hk417_d", "srifle_mas_hk417_d_h", "srifle_mas_hk417_d_sd", "srifle_mas_sr25", "srifle_mas_sr25_h", "srifle_mas_sr25_sd", "srifle_mas_sr25_v", "srifle_mas_sr25_v_h", "srifle_mas_sr25_v_sd", "srifle_mas_sr25_d", "srifle_mas_sr25_d_h", "srifle_mas_sr25_d_sd", "srifle_mas_ebr", "srifle_mas_ebr_a", "srifle_mas_ebr_t", "srifle_mas_ebr_h", "srifle_mas_ebr_sd", "srifle_mas_mk17s", "srifle_mas_mk17s_h", "srifle_mas_mk17s_sd", "srifle_mas_m110", "srifle_mas_m110_h", "srifle_mas_m110_sd",
"srifle_mas_m107", "srifle_mas_m107_h", "srifle_mas_m107_sd", "srifle_mas_m107_v", "srifle_mas_m107_v_h", "srifle_mas_m107_v_sd", "srifle_mas_m107_d", "srifle_mas_m107_d_h", "srifle_mas_m107_d_sd",
"srifle_mas_m24", "srifle_mas_m24_h", "srifle_mas_m24_v", "srifle_mas_m24_v_h", "srifle_mas_m24_d", "srifle_mas_m24_d_h",
"srifle_mas_lrr", "srifle_mas_lrr_h", "srifle_mas_lrr_sd",
"arifle_mas_mp5", "arifle_mas_mp5_a", "arifle_mas_mp5_e", "arifle_mas_mp5_sd", "arifle_mas_mp5_v", "arifle_mas_mp5_v_a", "arifle_mas_mp5_v_e", "arifle_mas_mp5_v_sd", "arifle_mas_mp5_d", "arifle_mas_mp5_d_a", "arifle_mas_mp5_d_e", "arifle_mas_mp5_d_sd", "arifle_mas_mp5sd", "arifle_mas_mp5sd_a", "arifle_mas_mp5sd_e", "arifle_mas_mp5sd_ds",
"hgun_mas_mp7_F", "hgun_mas_mp7_F_a", "hgun_mas_mp7_F_sd",
"LMG_mas_Mk200_F", "LMG_mas_Mk200_F_t", "LMG_mas_Mk200_F_h", "LMG_mas_Mk200_F_a", "LMG_mas_Mk200_F_sd", "LMG_mas_M249_F", "LMG_mas_M249_F_t", "LMG_mas_M249_F_h", "LMG_mas_M249_F_a", "LMG_mas_M249_F_sd", "LMG_mas_M249_F_v", "LMG_mas_M249_F_v_t", "LMG_mas_M249_F_v_h", "LMG_mas_M249_F_v_a", "LMG_mas_M249_F_v_sd", "LMG_mas_M249_F_d", "LMG_mas_M249_F_d_t", "LMG_mas_M249_F_d_h", "LMG_mas_M249_F_d_a", "LMG_mas_M249_F_d_sd", "LMG_mas_M249a_F", "LMG_mas_M249a_F_t", "LMG_mas_M249a_F_a",
"LMG_mas_Mk48_F", "LMG_mas_Mk48_F_t", "LMG_mas_Mk48_F_h", "LMG_mas_Mk48_F_a", "LMG_mas_Mk48_F_v", "LMG_mas_Mk48_F_v_t", "LMG_mas_Mk48_F_v_h", "LMG_mas_Mk48_F_v_a", "LMG_mas_Mk48_F_d", "LMG_mas_Mk48_F_d_t", "LMG_mas_Mk48_F_d_h", "LMG_mas_Mk48_F_d_a", "LMG_mas_M240_F", "LMG_mas_M240_F_h", "LMG_mas_M240_F_a", "LMG_mas_mg3_F", "LMG_mas_mg3_F_h", "LMG_mas_M60_F", "LMG_mas_M60_F_h", "LMG_mas_M60_F_a",
"arifle_mas_ak_74m", "arifle_mas_ak_74m_h", "arifle_mas_ak_74m_ti", "arifle_mas_ak_74m_a", "arifle_mas_ak_74m_sd", "arifle_mas_ak_74m_gl", "arifle_mas_ak_74m_gl_h", "arifle_mas_ak_74m_gl_ti", "arifle_mas_ak_74m_gl_a", "arifle_mas_ak_74m_gl_sd", "arifle_mas_ak_74m_c", "arifle_mas_ak_74m_c_h", "arifle_mas_ak_74m_c_ti", "arifle_mas_ak_74m_c_a", "arifle_mas_ak_74m_c_sd", "arifle_mas_ak_74m_gl_c", "arifle_mas_ak_74m_gl_c_h", "arifle_mas_ak_74m_gl_c_ti", "arifle_mas_ak_74m_gl_c_a", "arifle_mas_ak_74m_gl_c_sd", "arifle_mas_aks74", "arifle_mas_aks74_h", "arifle_mas_aks74_a", "arifle_mas_aks74_gl", "arifle_mas_aks74_gl_h", "arifle_mas_aks74_gl_a", "arifle_mas_ak74", "arifle_mas_ak74_h", "arifle_mas_ak74_a", "arifle_mas_ak74_l", "arifle_mas_ak74_gl", "arifle_mas_ak74_gl_h", "arifle_mas_ak74_gl_a", "arifle_mas_ak74_gl_l",
"arifle_mas_akms", "arifle_mas_akms_h", "arifle_mas_akms_a", "arifle_mas_akms_sd", "arifle_mas_akms_gl", "arifle_mas_akms_gl_h", "arifle_mas_akms_gl_a", "arifle_mas_akms_gl_sd", "arifle_mas_akms_c", "arifle_mas_akms_c_h", "arifle_mas_akms_c_a", "arifle_mas_akms_c_sd", "arifle_mas_akms_gl_c", "arifle_mas_akms_gl_c_h", "arifle_mas_akms_gl_c_a", "arifle_mas_akms_gl_c_sd", "arifle_mas_akm", "arifle_mas_akm_h", "arifle_mas_akm_a", "arifle_mas_akm_gl", "arifle_mas_akm_gl_h", "arifle_mas_akm_gl_a",
"arifle_mas_bizon", "arifle_mas_bizon_h", "arifle_mas_bizon_a", "arifle_mas_bizon_sd",
"arifle_mas_saiga",
"arifle_mas_m70", "arifle_mas_m70_gl", "arifle_mas_m70ab", "arifle_mas_m70ab_gl",
"srifle_mas_m91", "srifle_mas_m91_l",
"LMG_mas_m72_F",
"srifle_mas_svd", "srifle_mas_svd_h", "srifle_mas_svd_sd", "srifle_mas_svd_l",
"srifle_mas_vss", "srifle_mas_vss_h",
"arifle_mas_asval", "arifle_mas_asval_h", "arifle_mas_asval_a", "arifle_mas_asval_ds",
"srifle_mas_ksvk", "srifle_mas_ksvk_h", "srifle_mas_ksvk_sd", "srifle_mas_ksvk_c", "srifle_mas_ksvk_c_h", "srifle_mas_ksvk_c_sd",
"arifle_mas_aks74u", "arifle_mas_aks74u_h", "arifle_mas_aks74u_a", "arifle_mas_aks74u_sd", "arifle_mas_aks74u_c", "arifle_mas_aks74u_c_h", "arifle_mas_aks74u_c_a", "arifle_mas_aks74u_c_sd",
"LMG_mas_rpk_F", "LMG_mas_rpk_F_h", "LMG_mas_rpk_F_a", "LMG_mas_rpk_F_sd",
"LMG_mas_pkm_F", "LMG_mas_pkm_F_h", "LMG_mas_pkm_F_a",
"hgun_mas_uzi_F", "hgun_mas_uzi_F_sd",
"hgun_mas_m9_F", "hgun_mas_bhp_F", "hgun_mas_glock_F", "hgun_mas_m9_F_sd", "hgun_mas_bhp_F_sd", "hgun_mas_glock_F_sd",
"hgun_mas_grach_F", "hgun_mas_grach_F_sd",
"hgun_mas_mak_F", "hgun_mas_mak_F_sd"
]]];
 
//-------------------------------------------------------------------------------------
//here place magazines, weaponattachments and bodyitems(ex.: ItemGPS, ItemMap, Medikit, FAK, Binoculars, ...)
//used with addMagazineCargoGlobal
//"lootMagazine_list" array of [class, [magazinelist]]
// class : 0-civil, 1-military, ... (add more as you wish)
// magazinelist: list of magazine class names
lootMagazine_list = [
[ 0, [ // CIVIL
//Ammo
"30Rnd_mas_556x45_Stanag", "30Rnd_mas_556x45_T_Stanag",
"30Rnd_mas_762x39_mag", "30Rnd_mas_762x39_T_mag",  
"30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", 
"30Rnd_556x45_Stanag_Tracer_Green", "30Rnd_556x45_Stanag_Tracer_Yellow",
"30Rnd_mas_545x39_mag", "30Rnd_mas_545x39_T_mag",
"30Rnd_mas_9x21_Stanag", "30Rnd_mas_9x21d_Stanag", "30Rnd_9x21_Mag",
"30Rnd_mas_9x39_mag","20Rnd_mas_9x39_mag",
"20Rnd_556x45_UW_mag",
"20Rnd_mas_762x51_Stanag","20Rnd_mas_762x51_T_Stanag", "20Rnd_762x51_Mag",
"200Rnd_mas_556x45_Stanag", "200Rnd_mas_556x45_T_Stanag",  
"100Rnd_mas_762x51_Stanag", "100Rnd_mas_762x51_T_Stanag", 
"150Rnd_762x51_Box", "150Rnd_762x51_Box_Tracer",
"64Rnd_mas_9x18_mag",
"10Rnd_mas_12Gauge_Slug", "10Rnd_mas_12Gauge_Pellets",
"100Rnd_mas_762x39_mag", "100Rnd_mas_762x39_T_mag",
"10Rnd_mas_762x54_mag", "10Rnd_mas_762x54_T_mag", 
"100Rnd_mas_545x39_mag", "100Rnd_mas_545x39_T_mag",
"100Rnd_mas_762x54_mag", "100Rnd_mas_762x54_T_mag",
"25Rnd_mas_9x19_Mag", "17Rnd_mas_9x21_Mag", "16Rnd_9x21_Mag", "15Rnd_mas_9x21_Mag", "13Rnd_mas_9x21_Mag",
"20Rnd_mas_765x17_Mag",
"12Rnd_mas_45acp_Mag","10Rnd_mas_45acp_Mag","8Rnd_mas_45acp_Mag", 
"8Rnd_mas_9x18_Mag",
"5rnd_mas_762x51_Stanag", "5rnd_mas_762x51_T_Stanag",
"5Rnd_mas_127x108_mag", "5Rnd_mas_127x108_dem_mag", 
"5Rnd_mas_127x108_T_mag", "5Rnd_127x108_Mag",
"10Rnd_mas_338_Stanag", "10Rnd_mas_338_T_Stanag",
 
//GL ROUNDS
"1Rnd_HE_Grenade_shell", 
"UGL_FlareWhite_F", "UGL_FlareGreen_F", "UGL_FlareRed_F", "UGL_FlareYellow_F", "UGL_FlareCIR_F", 
"1Rnd_Smoke_Grenade_shell", "1Rnd_SmokeRed_Grenade_shell", 
"1Rnd_SmokeGreen_Grenade_shell", "1Rnd_SmokeYellow_Grenade_shell",
"1Rnd_SmokePurple_Grenade_shell", "1Rnd_SmokeBlue_Grenade_shell",
"1Rnd_SmokeOrange_Grenade_shell",
"3Rnd_HE_Grenade_shell", "3Rnd_UGL_FlareWhite_F",
"3Rnd_UGL_FlareGreen_F", "3Rnd_UGL_FlareRed_F",
"3Rnd_UGL_FlareYellow_F", "3Rnd_UGL_FlareCIR_F",
"3Rnd_Smoke_Grenade_shell",
"3Rnd_SmokeRed_Grenade_shell", "3Rnd_SmokeGreen_Grenade_shell",
"3Rnd_SmokeYellow_Grenade_shell", "3Rnd_SmokePurple_Grenade_shell",
"3Rnd_SmokeBlue_Grenade_shell", "3Rnd_SmokeOrange_Grenade_shell",
 
//Food & Drink
"FoodSnooter","FoodWalkNSons","FoodBioMeat",
"ItemSodaOrangeSherbet","ItemSodaPurple","ItemSodaMocha","ItemSodaBurst","ItemSodaRbull","WhiskeyNoodle",
"honey_epoch","emptyjar_epoch","sardines_epoch","meatballs_epoch","scam_epoch","sweetcorn_epoch", "ItemCoolerE",
 
//Building Supply's
"MortarBucket","ItemCorrugated","CinderBlocks","ItemLockbox",
"jerrycan_epoch","VehicleRepair","JackKit","CircuitParts","ItemCoolerE","ItemScraps",
 
//Gems & Valuables 
"ItemRuby","ItemTopaz","ItemOnyx","ItemQuartz",
"ItemJade","ItemGarnet","ItemSapphire",
"ItemCitrine","ItemAmethyst","ItemEmerald",
"ItemSilverBar","ItemGoldBar"
 
]],[ 1, [ // MILITARY
//Ammo
"30Rnd_mas_556x45_Stanag", "30Rnd_mas_556x45_T_Stanag",
"30Rnd_mas_762x39_mag", "30Rnd_mas_762x39_T_mag",  
"30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", 
"30Rnd_556x45_Stanag_Tracer_Green", "30Rnd_556x45_Stanag_Tracer_Yellow",
"30Rnd_mas_545x39_mag", "30Rnd_mas_545x39_T_mag",
"30Rnd_mas_9x21_Stanag", "30Rnd_mas_9x21d_Stanag", "30Rnd_9x21_Mag",
"30Rnd_mas_9x39_mag","20Rnd_mas_9x39_mag",
"20Rnd_556x45_UW_mag",
"20Rnd_mas_762x51_Stanag","20Rnd_mas_762x51_T_Stanag", "20Rnd_762x51_Mag",
"200Rnd_mas_556x45_Stanag", "200Rnd_mas_556x45_T_Stanag",  
"100Rnd_mas_762x51_Stanag", "100Rnd_mas_762x51_T_Stanag", 
"150Rnd_762x51_Box", "150Rnd_762x51_Box_Tracer",
"64Rnd_mas_9x18_mag",
"10Rnd_mas_12Gauge_Slug", "10Rnd_mas_12Gauge_Pellets",
"100Rnd_mas_762x39_mag", "100Rnd_mas_762x39_T_mag",
"10Rnd_mas_762x54_mag", "10Rnd_mas_762x54_T_mag", 
"100Rnd_mas_545x39_mag", "100Rnd_mas_545x39_T_mag",
"100Rnd_mas_762x54_mag", "100Rnd_mas_762x54_T_mag",
"25Rnd_mas_9x19_Mag", "17Rnd_mas_9x21_Mag", "16Rnd_9x21_Mag", "15Rnd_mas_9x21_Mag", "13Rnd_mas_9x21_Mag",
"20Rnd_mas_765x17_Mag",
"12Rnd_mas_45acp_Mag","10Rnd_mas_45acp_Mag","8Rnd_mas_45acp_Mag", 
"8Rnd_mas_9x18_Mag",
"5rnd_mas_762x51_Stanag", "5rnd_mas_762x51_T_Stanag",
"5Rnd_mas_127x108_mag", "5Rnd_mas_127x108_dem_mag", 
"5Rnd_mas_127x108_T_mag", "5Rnd_127x108_Mag",
"10Rnd_mas_338_Stanag", "10Rnd_mas_338_T_Stanag",
 
//GL ROUNDS
"1Rnd_HE_Grenade_shell", 
"UGL_FlareWhite_F", "UGL_FlareGreen_F", "UGL_FlareRed_F", "UGL_FlareYellow_F", "UGL_FlareCIR_F", 
"1Rnd_Smoke_Grenade_shell", "1Rnd_SmokeRed_Grenade_shell", 
"1Rnd_SmokeGreen_Grenade_shell", "1Rnd_SmokeYellow_Grenade_shell",
"1Rnd_SmokePurple_Grenade_shell", "1Rnd_SmokeBlue_Grenade_shell",
"1Rnd_SmokeOrange_Grenade_shell",
"3Rnd_HE_Grenade_shell", "3Rnd_UGL_FlareWhite_F",
"3Rnd_UGL_FlareGreen_F", "3Rnd_UGL_FlareRed_F",
"3Rnd_UGL_FlareYellow_F", "3Rnd_UGL_FlareCIR_F",
"3Rnd_Smoke_Grenade_shell",
"3Rnd_SmokeRed_Grenade_shell", "3Rnd_SmokeGreen_Grenade_shell",
"3Rnd_SmokeYellow_Grenade_shell", "3Rnd_SmokePurple_Grenade_shell",
"3Rnd_SmokeBlue_Grenade_shell", "3Rnd_SmokeOrange_Grenade_shell",
 
//Food & Drink
"FoodSnooter","FoodWalkNSons","FoodBioMeat",
"ItemSodaOrangeSherbet","ItemSodaPurple","ItemSodaMocha","ItemSodaBurst","ItemSodaRbull","WhiskeyNoodle",
"honey_epoch","emptyjar_epoch","sardines_epoch","meatballs_epoch","scam_epoch","sweetcorn_epoch", "ItemCoolerE",
 
//Building Supply's
"MortarBucket","ItemCorrugated","CinderBlocks","ItemLockbox",
"jerrycan_epoch","VehicleRepair","JackKit","CircuitParts","ItemCoolerE","ItemScraps",
 
//Gems & Valuables 
"ItemRuby","ItemTopaz","ItemOnyx","ItemQuartz",
"ItemJade","ItemGarnet","ItemSapphire",
"ItemCitrine","ItemAmethyst","ItemEmerald",
"ItemSilverBar","ItemGoldBar"
]],[ 2, [ // INDUSTRIAL
//Ammo
"30Rnd_mas_556x45_Stanag", "30Rnd_mas_556x45_T_Stanag",
"30Rnd_mas_762x39_mag", "30Rnd_mas_762x39_T_mag",  
"30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", 
"30Rnd_556x45_Stanag_Tracer_Green", "30Rnd_556x45_Stanag_Tracer_Yellow",
"30Rnd_mas_545x39_mag", "30Rnd_mas_545x39_T_mag",
"30Rnd_mas_9x21_Stanag", "30Rnd_mas_9x21d_Stanag", "30Rnd_9x21_Mag",
"30Rnd_mas_9x39_mag","20Rnd_mas_9x39_mag",
"20Rnd_556x45_UW_mag",
"20Rnd_mas_762x51_Stanag","20Rnd_mas_762x51_T_Stanag", "20Rnd_762x51_Mag",
"200Rnd_mas_556x45_Stanag", "200Rnd_mas_556x45_T_Stanag",  
"100Rnd_mas_762x51_Stanag", "100Rnd_mas_762x51_T_Stanag", 
"150Rnd_762x51_Box", "150Rnd_762x51_Box_Tracer",
"64Rnd_mas_9x18_mag",
"10Rnd_mas_12Gauge_Slug", "10Rnd_mas_12Gauge_Pellets",
"100Rnd_mas_762x39_mag", "100Rnd_mas_762x39_T_mag",
"10Rnd_mas_762x54_mag", "10Rnd_mas_762x54_T_mag", 
"100Rnd_mas_545x39_mag", "100Rnd_mas_545x39_T_mag",
"100Rnd_mas_762x54_mag", "100Rnd_mas_762x54_T_mag",
"25Rnd_mas_9x19_Mag", "17Rnd_mas_9x21_Mag", "16Rnd_9x21_Mag", "15Rnd_mas_9x21_Mag", "13Rnd_mas_9x21_Mag",
"20Rnd_mas_765x17_Mag",
"12Rnd_mas_45acp_Mag","10Rnd_mas_45acp_Mag","8Rnd_mas_45acp_Mag", 
"8Rnd_mas_9x18_Mag",
"5rnd_mas_762x51_Stanag", "5rnd_mas_762x51_T_Stanag",
"5Rnd_mas_127x108_mag", "5Rnd_mas_127x108_dem_mag", 
"5Rnd_mas_127x108_T_mag", "5Rnd_127x108_Mag",
"10Rnd_mas_338_Stanag", "10Rnd_mas_338_T_Stanag",
 
//GL ROUNDS
"1Rnd_HE_Grenade_shell", 
"UGL_FlareWhite_F", "UGL_FlareGreen_F", "UGL_FlareRed_F", "UGL_FlareYellow_F", "UGL_FlareCIR_F", 
"1Rnd_Smoke_Grenade_shell", "1Rnd_SmokeRed_Grenade_shell", 
"1Rnd_SmokeGreen_Grenade_shell", "1Rnd_SmokeYellow_Grenade_shell",
"1Rnd_SmokePurple_Grenade_shell", "1Rnd_SmokeBlue_Grenade_shell",
"1Rnd_SmokeOrange_Grenade_shell",
"3Rnd_HE_Grenade_shell", "3Rnd_UGL_FlareWhite_F",
"3Rnd_UGL_FlareGreen_F", "3Rnd_UGL_FlareRed_F",
"3Rnd_UGL_FlareYellow_F", "3Rnd_UGL_FlareCIR_F",
"3Rnd_Smoke_Grenade_shell",
"3Rnd_SmokeRed_Grenade_shell", "3Rnd_SmokeGreen_Grenade_shell",
"3Rnd_SmokeYellow_Grenade_shell", "3Rnd_SmokePurple_Grenade_shell",
"3Rnd_SmokeBlue_Grenade_shell", "3Rnd_SmokeOrange_Grenade_shell",
 
//Food & Drink
"FoodSnooter","FoodWalkNSons","FoodBioMeat",
"ItemSodaOrangeSherbet","ItemSodaPurple","ItemSodaMocha","ItemSodaBurst","ItemSodaRbull","WhiskeyNoodle",
"honey_epoch","emptyjar_epoch","sardines_epoch","meatballs_epoch","scam_epoch","sweetcorn_epoch", "ItemCoolerE",
 
//Building Supply's
"MortarBucket","ItemCorrugated","CinderBlocks","ItemLockbox",
"jerrycan_epoch","VehicleRepair","JackKit","CircuitParts","ItemCoolerE","ItemScraps",
 
//Gems & Valuables 
"ItemRuby","ItemTopaz","ItemOnyx","ItemQuartz",
"ItemJade","ItemGarnet","ItemSapphire",
"ItemCitrine","ItemAmethyst","ItemEmerald",
"ItemSilverBar","ItemGoldBar"
]],[ 3, [ // RESEARCH
//Ammo
"30Rnd_mas_556x45_Stanag", "30Rnd_mas_556x45_T_Stanag",
"30Rnd_mas_762x39_mag", "30Rnd_mas_762x39_T_mag",  
"30Rnd_556x45_Stanag", "30Rnd_556x45_Stanag_Tracer_Red", 
"30Rnd_556x45_Stanag_Tracer_Green", "30Rnd_556x45_Stanag_Tracer_Yellow",
"30Rnd_mas_545x39_mag", "30Rnd_mas_545x39_T_mag",
"30Rnd_mas_9x21_Stanag", "30Rnd_mas_9x21d_Stanag", "30Rnd_9x21_Mag",
"30Rnd_mas_9x39_mag","20Rnd_mas_9x39_mag",
"20Rnd_556x45_UW_mag",
"20Rnd_mas_762x51_Stanag","20Rnd_mas_762x51_T_Stanag", "20Rnd_762x51_Mag",
"200Rnd_mas_556x45_Stanag", "200Rnd_mas_556x45_T_Stanag",  
"100Rnd_mas_762x51_Stanag", "100Rnd_mas_762x51_T_Stanag", 
"150Rnd_762x51_Box", "150Rnd_762x51_Box_Tracer",
"64Rnd_mas_9x18_mag",
"10Rnd_mas_12Gauge_Slug", "10Rnd_mas_12Gauge_Pellets",
"100Rnd_mas_762x39_mag", "100Rnd_mas_762x39_T_mag",
"10Rnd_mas_762x54_mag", "10Rnd_mas_762x54_T_mag", 
"100Rnd_mas_545x39_mag", "100Rnd_mas_545x39_T_mag",
"100Rnd_mas_762x54_mag", "100Rnd_mas_762x54_T_mag",
"25Rnd_mas_9x19_Mag", "17Rnd_mas_9x21_Mag", "16Rnd_9x21_Mag", "15Rnd_mas_9x21_Mag", "13Rnd_mas_9x21_Mag",
"20Rnd_mas_765x17_Mag",
"12Rnd_mas_45acp_Mag","10Rnd_mas_45acp_Mag","8Rnd_mas_45acp_Mag", 
"8Rnd_mas_9x18_Mag",
"5rnd_mas_762x51_Stanag", "5rnd_mas_762x51_T_Stanag",
"5Rnd_mas_127x108_mag", "5Rnd_mas_127x108_dem_mag", 
"5Rnd_mas_127x108_T_mag", "5Rnd_127x108_Mag",
"10Rnd_mas_338_Stanag", "10Rnd_mas_338_T_Stanag",
 
//GL ROUNDS
"1Rnd_HE_Grenade_shell", 
"UGL_FlareWhite_F", "UGL_FlareGreen_F", "UGL_FlareRed_F", "UGL_FlareYellow_F", "UGL_FlareCIR_F", 
"1Rnd_Smoke_Grenade_shell", "1Rnd_SmokeRed_Grenade_shell", 
"1Rnd_SmokeGreen_Grenade_shell", "1Rnd_SmokeYellow_Grenade_shell",
"1Rnd_SmokePurple_Grenade_shell", "1Rnd_SmokeBlue_Grenade_shell",
"1Rnd_SmokeOrange_Grenade_shell",
"3Rnd_HE_Grenade_shell", "3Rnd_UGL_FlareWhite_F",
"3Rnd_UGL_FlareGreen_F", "3Rnd_UGL_FlareRed_F",
"3Rnd_UGL_FlareYellow_F", "3Rnd_UGL_FlareCIR_F",
"3Rnd_Smoke_Grenade_shell",
"3Rnd_SmokeRed_Grenade_shell", "3Rnd_SmokeGreen_Grenade_shell",
"3Rnd_SmokeYellow_Grenade_shell", "3Rnd_SmokePurple_Grenade_shell",
"3Rnd_SmokeBlue_Grenade_shell", "3Rnd_SmokeOrange_Grenade_shell",
 
//Food & Drink
"FoodSnooter","FoodWalkNSons","FoodBioMeat",
"ItemSodaOrangeSherbet","ItemSodaPurple","ItemSodaMocha","ItemSodaBurst","ItemSodaRbull","WhiskeyNoodle",
"honey_epoch","emptyjar_epoch","sardines_epoch","meatballs_epoch","scam_epoch","sweetcorn_epoch", "ItemCoolerE",
 
//Building Supply's
"MortarBucket","ItemCorrugated","CinderBlocks","ItemLockbox",
"jerrycan_epoch","VehicleRepair","JackKit","CircuitParts","ItemCoolerE","ItemScraps",
 
//Gems & Valuables 
"ItemRuby","ItemTopaz","ItemOnyx","ItemQuartz",
"ItemJade","ItemGarnet","ItemSapphire",
"ItemCitrine","ItemAmethyst","ItemEmerald",
"ItemSilverBar","ItemGoldBar"
]]];
 
//-------------------------------------------------------------------------------------
//here place hats, glasses, clothes, uniforms, vests
//used with addItemCargoGlobal
//"lootItem_list" array of [class, [itemlist]]
// class : 0-civil, 1-military, ... (add more as you wish)
// itemlist : list of item class names
lootItem_list = [
[ 0, [ // CIVIL
"muzzle_mas_snds_L", "muzzle_mas_snds_LM", "muzzle_mas_snds_C", "muzzle_mas_snds_M", "muzzle_mas_snds_Mc", "muzzle_mas_snds_AK", "muzzle_mas_snds_SM","muzzle_mas_snds_SMc","muzzle_mas_snds_SH", "muzzle_mas_snds_SHc", "muzzle_mas_snds_SV", "muzzle_mas_snds_SVc", "muzzle_mas_snds_SVD", "muzzle_mas_snds_KSVK", "optic_mas_zeiss", "optic_mas_zeiss_c", "optic_mas_zeiss_eo", "optic_mas_zeiss_eo_c", "optic_mas_acog", "optic_mas_acog_c", "optic_mas_acog_eo", "optic_mas_acog_eo_c", "optic_mas_acog_rd", "optic_mas_acog_rd_c", "optic_mas_handle", "optic_mas_aim", "optic_mas_aim_c", "optic_mas_pso", "optic_mas_pso_c", "optic_mas_pso_eo", "optic_mas_pso_eo_c", "optic_mas_pso_nv", "optic_mas_pso_nv_c", "optic_mas_pso_nv_eo", "optic_mas_pso_nv_eo_c", "optic_mas_term", "acc_mas_pointer_IR", "optic_mas_DMS", "optic_mas_DMS_c", "optic_mas_Holosight_blk", "optic_mas_Holosight_camo", "optic_mas_Arco_blk", "optic_mas_Arco_camo", "optic_mas_Hamr_camo", "optic_mas_Aco_camo", "optic_mas_ACO_grn_camo", "optic_mas_MRCO_camo"
]],[ 1, [ // MILITARY
"G_mas_wpn_gog", "G_mas_wpn_gog_d", "G_mas_wpn_gog_m", "G_mas_wpn_gog_md", "G_mas_wpn_gog_g", "G_mas_wpn_gog_gd", "G_mas_wpn_mask", "G_mas_wpn_mask_b", "G_mas_wpn_wrap", "G_mas_wpn_wrap_f", "G_mas_wpn_wrap_t", "G_mas_wpn_wrap_b", "G_mas_wpn_wrap_c", "G_mas_wpn_wrap_g", "G_mas_wpn_wrap_gog", "G_mas_wpn_wrap_gog_f", "G_mas_wpn_wrap_gog_t", "G_mas_wpn_wrap_gog_b", "G_mas_wpn_wrap_gog_c", "G_mas_wpn_wrap_gog_g", "G_mas_wpn_wrap_mask", "G_mas_wpn_wrap_mask_t", "G_mas_wpn_wrap_mask_f", "G_mas_wpn_wrap_mask_b", "G_mas_wpn_wrap_mask_c", "G_mas_wpn_wrap_mask_g", "G_mas_wpn_bala", "G_mas_wpn_bala_b", "G_mas_wpn_bala_t", "G_mas_wpn_bala_gog", "G_mas_wpn_bala_gog_b", "G_mas_wpn_bala_gog_t", "G_mas_wpn_bala_mask", "G_mas_wpn_bala_mask_b", "G_mas_wpn_bala_mask_t", "G_mas_wpn_shemag", "G_mas_wpn_shemag_r", "G_mas_wpn_shemag_w", "G_mas_wpn_shemag_gog", "G_mas_wpn_shemag_mask"
]],[ 2, [ // INDUSTRIAL
"PartPlankPack",
"CinderBlocks",
"MortarBucket",
"ItemScraps",
"ItemCorrugated",
"ItemCorrugatedLg",
"jerrycan_epoch",
"ItemMixOil",
"ItemKiloHemp"
]],[ 3, [ // RESEARCH
"muzzle_mas_snds_L", "muzzle_mas_snds_LM", "muzzle_mas_snds_C", "muzzle_mas_snds_M", "muzzle_mas_snds_Mc", "muzzle_mas_snds_AK", "muzzle_mas_snds_SM","muzzle_mas_snds_SMc","muzzle_mas_snds_SH", "muzzle_mas_snds_SHc", "muzzle_mas_snds_SV", "muzzle_mas_snds_SVc", "muzzle_mas_snds_SVD", "muzzle_mas_snds_KSVK", "optic_mas_zeiss", "optic_mas_zeiss_c", "optic_mas_zeiss_eo", "optic_mas_zeiss_eo_c", "optic_mas_acog", "optic_mas_acog_c", "optic_mas_acog_eo", "optic_mas_acog_eo_c", "optic_mas_acog_rd", "optic_mas_acog_rd_c", "optic_mas_handle", "optic_mas_aim", "optic_mas_aim_c", "optic_mas_pso", "optic_mas_pso_c", "optic_mas_pso_eo", "optic_mas_pso_eo_c", "optic_mas_pso_nv", "optic_mas_pso_nv_c", "optic_mas_pso_nv_eo", "optic_mas_pso_nv_eo_c", "optic_mas_term", "acc_mas_pointer_IR", "optic_mas_DMS", "optic_mas_DMS_c", "optic_mas_Holosight_blk", "optic_mas_Holosight_camo", "optic_mas_Arco_blk", "optic_mas_Arco_camo", "optic_mas_Hamr_camo", "optic_mas_Aco_camo", "optic_mas_ACO_grn_camo", "optic_mas_MRCO_camo"
]]];
 
//-------------------------------------------------------------------------------------
//here place backpacks, parachutes and packed drones/stationary
//used with addBackpackCargoGlobal
//"lootBackpack_list" array of [class, [backpacklist]]
// class : 0-civil, 1-military, ... (add more as you wish)
// backpacklist: list of backpack class names
lootBackpack_list = [
[ 0, [ // CIVIL
"B_mas_AssaultPack_mul", "B_mas_Kitbag_mul", "B_mas_Bergen_mul", 
"B_mas_AssaultPack_des", "B_mas_Kitbag_des", "B_mas_Bergen_des", 
"B_mas_AssaultPack_black", "B_mas_Kitbag_black", "B_mas_Bergen_black"
]],[ 1, [ // MILITARY
"B_mas_AssaultPack_wint", "B_mas_Kitbag_wint", "B_mas_Bergen_wint", 
"B_mas_AssaultPack_rng", "B_mas_Kitbag_rng", "B_mas_Bergen_rng",
"O_mas_Bergen_flo", "O_mas_Bergen_blk","O_mas_Bergen_rtan"
]],[ 2, [ // INDUSTRIAL
"B_mas_AssaultPack_mul", "B_mas_Kitbag_mul", "B_mas_Bergen_mul", 
"B_mas_AssaultPack_des", "B_mas_Kitbag_des", "B_mas_Bergen_des", 
"B_mas_AssaultPack_black", "B_mas_Kitbag_black", "B_mas_Bergen_black"
]],[ 3, [ // RESEARCH
"B_mas_AssaultPack_wint", "B_mas_Kitbag_wint", "B_mas_Bergen_wint", 
"B_mas_AssaultPack_rng", "B_mas_Kitbag_rng", "B_mas_Bergen_rng",
"O_mas_Bergen_flo", "O_mas_Bergen_blk","O_mas_Bergen_rtan"
]]];
 
//-------------------------------------------------------------------------------------
//here place any other objects(ex.: Land_Basket_F, Box_East_Wps_F, Land_Can_V3_F, ...)
//used with createVehicle directly
//"lootworldObject_list" array of [class, [objectlist]]
// class : 0-civil, 1-military, ... (add more as you wish)
// objectlist : list of worldobject class names
lootworldObject_list = [
[ 0, [ // CIVIL
"Land_Basket_F", // Food
"Land_CanisterPlastic_F", // Water
"Land_CanisterFuel_F", // Jerrycan
"Land_Laptop_unfolded_F", // Laptop
"Land_HandyCam_F", // Camera
"Land_FMradio_F"
]],[ 1, [ // MILITARY
"Land_CanisterFuel_F",
"Land_SurvivalRadio_F",
"Land_SatellitePhone_F",
"Land_BucketNavy_F"
]],[ 2, [ // INDUSTRIAL
"Land_CanisterFuel_F",
"Land_Meter3m_F",
"Land_Hammer_F",
"Land_Grinder_F",
"Land_DrillAku_F"
]],[ 3, [ // RESEARCH
"Land_CanisterFuel_F",
"Land_MultiMeter_F",
"Land_PenRed_F",
"Land_PencilGreen_F",
"Land_PencilRed_F",
"Land_PenBlack_F",
"Land_Wrench_F"
]]];

Link to comment
Share on other sites

This are the only  errors i can find in the log and they dont seem to have anything to do with the Loot problem

 

11:52:55 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
 
Plz help I realy want this to work
Link to comment
Share on other sites

 

This are the only  errors i can find in the log and they dont seem to have anything to do with the Loot problem

 

11:52:55 Error: Bone cheek_lf doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone nose_tip doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_uplb doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone jaw_ls doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_uplf doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_lc doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_lwlb doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_lwlf doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone jaw_lm doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone zig_lb doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_lwm doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_upm doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone ear_l doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone corr doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone tongue_m doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone tongue_f doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone eyebrow_lb doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone eyebrow_lf doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone eyebrow_lm doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone zig_lm doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone eye_upl doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone eye_lwl doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone cheek_l doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone cheek_lb doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone zig_lt doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone nose_l doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone cheek_lm doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone nose_r doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone forehead_r doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone forehead_m doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone forehead_l doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone cheek_rb doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone eye_lwr doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone cheek_r doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone zig_rt doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone zig_rm doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone cheek_rf doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone cheek_rm doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone eyebrow_rm doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone eyebrow_rf doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone eye_upr doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone eyebrow_rb doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone tongue_b doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone ear_r doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone neck_l doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_uprf doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone neck_r doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_uprb doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_rc doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_lwrb doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone lip_lwrf doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone neck_b doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone zig_rb doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone neck_t doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone jaw_rf doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone jaw_lf doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone chin doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone jaw_rm doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone jaw_rs doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone jaw doesn't exist in skeleton OFP2_ManSkeleton
11:52:55 Error: Bone headcutscene doesn't exist in skeleton OFP2_ManSkeleton
 
Plz help I realy want this to work

 

This is a common error and should not worry about it

 

 

now for my error lol

 

anyone know what this is to?

CWeaponSlotsManager::DeleteWeapon: wrong weaponID!

its going like mad in my logs

 

 

Update: Found out this is unrelated to this script.

Link to comment
Share on other sites

You guys are just putting every weapon in the game in all the areas like that monstrous list above ? O.o  That makes looting way too easy and boring as hell. there is a reason why the lootlist.sqf exists in segregated sections per zone type... to add variety and an initiative to hunt to the looting process.

 

you guys are never going to get players just throwing a dictionary sized list of classnames in an sqf and tell everyone to watch their step, as to not trip over the piles of guns every 5 feet. /facepalm

Link to comment
Share on other sites

this is in the lootpawner.sqf and its pretty simple to figure out how to adjust loot rates hope this helps.

 

 

//"spawnClassChance_list" array of [class, %weapon, %magazine, %ICV, %backpack, %object]


// class : same classname as used in "Buildingstoloot_list"
// %weapon : % chance to spawn a weapon on spot
// %magazine : % chance to spawn magazines on spot
// %ICV : % chance to spawn item/cloth/vests on spot
// %backpack : % chance to spawn a backpack on spot
// %object : % chance to spawn an world object on spot
//-------------- A VALUE OF '-1' RESULTS IN NO LOOT FOR THIS CLASS AND TYPE ----------------
spawnClassChance_list = [
[0, 25, 20, 15, 10, 3], // civil
[1, 25, 20, 15, 10, 3], // military
[2, 25, 20, 15, 10, 5], // industrial
[3, 25, 20, 15, 10, 5] // research
];

Link to comment
Share on other sites

I know how i can implement this lootspawner but i have a question.

What if i already have The SEM (simple epoch Missions Kiloswiss) code inside de init.sqf

How can i succesfully combine the code of Napalm and kiloswiss inside the init.sqf?

I tried to combine them but the server gave me an error and could not load/find the lootspawner files while it was inside the PBO

Thx in advance

code init.sqf

if (isServer) then {

fn_getBuildingstospawnLoot = compile preProcessFileLineNumbers "fn_LSgetBuildingstospawnLoot.sqf";

LSdeleter = compile preProcessFileLineNumbers "LSdeleter.sqf";

execVM "Lootspawner.sqf";

}:

if(isDedicated)exitWith{}; //Everything below this line is only executed on the client (player or local host)

//Wait until these variables are broadcasted to the client (usually happens before the init gets executed)

waitUntil{!isNil {SEM_AIdropGearChance}};

waitUntil{!isNil {SEM_removeWeaponsFromDeadAI}};

waitUntil{!isNil {SEM_removeMagazinesFromDeadAI}};

//diag_log format["#SEM DEBUG: variables received: Weapons %1 - Magazines %2", SEM_removeWeaponsFromDeadAI, SEM_removeMagazinesFromDeadAI];

SEM_client_createMissionMarker = { private["_create","_markerPos","_markerName","_marker"];

_create = _this select 0;

if(!_create)then[{ //delete marker

if (getMarkerColor "MissionMarker" != "")then{ //Only delete existing Marker

deleteMarkerLocal "MissionMarker";

};

},{ //else create marker

_markerPos = _this select 1;

_markerName = _this select 2;

_marker = createMarkerLocal ["MissionMarker", _markerPos];

_marker setMarkerPosLocal _markerPos;

_marker setMarkerTypeLocal "hd_destroy";

_marker setMarkerTextLocal format["%1",_markerName];

_marker setMarkerColorLocal "ColorRed";

_marker setMarkerDirLocal -37;

_marker setMarkerSizeLocal [0.8,0.8];

}];

};

SEM_client_removeGear = {

removeVest _this;

//removeHeadgear _this;

removeGoggles _this;

removeAllItems _this;

removeAllWeapons _this;

removeBackpackGlobal _this;

{_this removeMagazine _x}count magazines _this;

};

SEM_client_AIfiredEH = {

if(isPlayer _this || !local _this)exitWith{systemChat "NEIN!"};

call compile format["

_this addEventHandler ['Fired',{

if(_this select 2 in %1)then{

_this select 0 addMagazines [_this select 5, 1];

};

}];

", ["launch_RPG32_F","launch_NLAW_F","launch_Titan_short_F","launch_Titan_F"]];

};

SEM_client_AIaddKilledEH = {

if(isPlayer _this || !local _this)exitWith{systemChat "NEIN!"};

/* Remove Weapons when killed */

call compile format["

_this addEventHandler ['Killed',{ private ['_unit','_z','_ran'];

_unit = _this select 0;

{_unit removeWeaponGlobal _x}count (%1 + ['EpochRadio0','ItemMap','ItemRadio','ItemWatch','ItemCompass','ItemGPS']);

{if(_x in (magazines _unit))then{_unit removeMagazines _x}}count %2;

if(SEM_AIdropGearChance < ceil(random 100))then{

_unit call SEM_client_removeGear;

{deleteVehicle _x}forEach nearestObjects [(getPosATL _unit), ['GroundWeaponHolder','WeaponHolderSimulated','WeaponHolder'], 1];

};

_unit spawn{

sleep .1;

{_z = _x;

if(_x in (getweaponcargo _z))exitWith{deleteVehicle _z}count %1;

if(_x in (getmagazinecargo _z))exitWith{deleteVehicle _z}count %2;

}forEach nearestObjects [(getPos _this), ['GroundWeaponHolder','WeaponHolderSimulated','WeaponHolder'], 12];

};

}];

", SEM_removeWeaponsFromDeadAI, SEM_removeMagazinesFromDeadAI];

/* AI run over by vehicle */

_this addEventHandler ["killed", { private["_u","_k","_vk","_s"];

_u = _this select 0;

_k = _this select 1;

_vk = vehicle _k;

if(_vk isKindOf "Car")then{

if(abs speed _vk > 0)then{

if(_vk distance _u < 10)then{

if(isEngineOn _vk || !isNull (driver _vk))then{

_u call SEM_client_removeGear;

{deleteVehicle _x}forEach nearestObjects [(getPosATL _u), ['GroundWeaponHolder','WeaponHolderSimulated','WeaponHolder'], 3];

if({alive _x}count units group _u < 1)then[{

"R_PG32V_F" createVehicle (position _u);

},{

//_vk setVelocity [(velocity _vk select 0)*.25, (velocity _vk select 1)*.25, 2];

_s = [ "wheel_1_1_steering","wheel_2_1_steering","wheel_1_2_steering","wheel_2_2_steering",

"wheel_1_3_steering","wheel_2_3_steering","wheel_1_4_steering","wheel_2_4_steering",

"MOTOR","glass1","glass2","glass3","door1","door2","door3","door4"];

{_vk setHit [_x,(_vk getHit _x)+(.3+(random .2))]}count _s;

}];

}}}};

}];

};

/* DO NOT CALL "fn_animateAI" because the sleep commands will cause errors when used in a non-scheduled environment */

SEM_client_animateAI = { private["_group","_pos","_checkPos","_firstLoop","_nearThreads","_doMove","_dir","_dist","_posX","_posY","_oldPos","_newPos","_z"];

_group = _this select 0;

_pos = _this select 1;

_checkPos = _pos; _checkPos set [2,3];

waitUntil{{owner _x == owner player}forEach units _group}; //Wait until the server gives You the ownership of the AI

diag_log format["#SEM: Client taking over AI ownership at Pos %1, Distance %2, Units: (%3/%4)", _pos, (vehicle player) distance _pos, {alive _x}count units _group, count units _group];

{

_x call SEM_client_AIfiredEH;

_x call SEM_client_AIaddKilledEH;

_x enableAI "AUTOTARGET";

//_x enableAI "TARGET";

_x enableAI "MOVE";

_x enableAI "ANIM";

_x enableAI "FSM";

_x stop false;

_x setUnitPos "Middle"; //"Auto"

}count units _group;

_group setCombatMode "YELLOW";

_group setBehaviour "COMBAT"; //"AWARE";

//waitUntil{{alive _x}count units _group < 1 || ({owner _x != owner player}forEach units _group)};

while{{alive _x}count units _group > 0 && ({owner _x == owner player}forEach units _group)}do{

_nearThreads = _pos nearEntities [["Epoch_Man_base_F","Epoch_Female_base_F","Helicopter","Car","Motorcycle"], 1200]; //"Epoch_Man_base_F","Epoch_Female_base_F"

{if(alive _x && isPlayer _x)then{ _z = _x;

{if !(lineIntersects [eyePos _x, eyePos _z, (vehicle _x), (vehicle _z)] || terrainIntersectASL [eyePos _x, eyePos _z])then{

_group reveal [_z,4];

if((secondaryWeapon _x) == "")then[{

_x doWatch _z; _x doTarget _z;

_x commandFire _z; _x suppressFor 3;

},{

if !(_z isKindOf "Epoch_Man_base_F" || _z isKindOf "Epoch_Female_base_F")then{

_x doWatch _z; _x doTarget _z; _x commandFire _z;

};

}];

}}forEach units _group;

UIsleep (3+(random 2));

}}forEach _nearThreads;

UIsleep 3;

};

diag_log format["#SEM: AI ownership lost - Remaining AIs: (%1/%2)", {alive _x}count units _group, count units _group];

};

"SEM_globalHint" addPublicVariableEventHandler { private "_sound";

_sound = (_this select 1) select 0;

switch(_sound)do{

case 0:{playSound "UAV_05"}; //Mission start

case 1:{playSound "UAV_01"}; //Mission fail (object destroyed)

case 2:{playSound "UAV_04"}; //Mission fail (time out)

case 3:{playsound "UAV_03"}; //Mission success

};

hint parseText format["%1", (_this select 1) select 1]

};

if(!isNil "SEM_globalMissionMarker")then{SEM_globalMissionMarker call SEM_client_createMissionMarker};

"SEM_globalMissionMarker" addPublicVariableEventHandler {_this select 1 call SEM_client_createMissionMarker};

if(!isNil "SEM_takeAIownership")then{SEM_takeAIownership call SEM_client_animateAI};

"SEM_takeAIownership" addPublicVariableEventHandler {_this select 1 spawn SEM_client_animateAI}; //DO NOT CALL!

[] spawn { /* This is the advertisement. If You don't like it, remove it */

waitUntil{vehicle player == player && time > 5};

systemChat format["Welcome to EPOCH %1 survivor %2", str(toUpper worldName), name player];

systemChat format["This server is running %1 v0.7", str "Simple Epoch Missions"];

}; /* End of advertisement */

if(toLower worldName in ["chernarus","chernarus_summer"])then{

([4654.62,9593.63,0] nearestObject 145259) setDamage 1;

([4654.62,9593.63,0] nearestObject 145260) setDamage 1;

}; //Fix for something, find out ;)

Link to comment
Share on other sites

//Function to add the right magazine for a weapon.
_ammo = [] + getArray (configFile >> "cfgWeapons" >> _loot >> "magazines");
_ammoCount = count _ammo;
if(_ammoCount > 0) then {
            _lootholder addMagazineCargoGlobal [(_ammo select 0),(round(random 2))]; //max 2 magazines per weapon
};
//end custom funtion

Should do the job normally :)

Didn't test it tho.

 

 

are you actually running that from a functions.sqf and then calling to it, or u placing it inside the spawner script ?

Link to comment
Share on other sites

i have mine in fn_LSgetBuildingstospawnLoot.SQF

                //special for weapons
                if (_lootType == 1) exitWith {
                  _lootholder = createVehicle["weaponHolderSimulated", _spwnPos, [], 0, "CAN_COLLIDE"];
                  _selecteditem = (floor(random(count((lootWeapon_list select _lootClass) select 1))));
                  _loot = (((lootWeapon_list select _lootClass) select 1) select _selecteditem);
                  _lootholder addWeaponCargoGlobal[_loot, 1];

                  //Function to add the right magazine for a weapon.
                  _ammo = [] + getArray(configFile >> "cfgWeapons" >> _loot >> "magazines");
                  _ammoCount = count _ammo;
                  if (_ammoCount > 0) then {
                    _lootholder addMagazineCargoGlobal[(_ammo select 0), (round(random 2))]; //max 2 magazines per weapon
                  };
                  //end custom funtion
                  //_lootholder setPosATL _spwnPos;
                };

working fine.

 

____________________________________________________________________________________________________

 
 

I know how i can implement this lootspawner but i have a question.
What if i already have The SEM (simple epoch Missions Kiloswiss) code inside de init.sqf
How can i succesfully combine the code of Napalm and kiloswiss inside the init.sqf?
I tried to combine them but the server gave me an error and could not load/find the lootspawner files while it was inside the PBO
Thx in advance

code init.sqf

 

 

Here 

 

Take all of the SEM Script and put it into a New file called SEM.sqf

 

then in your init.sqf make it look like this 

[] execVM "SEM.sqf"; 

if (isServer) then 
{
	fn_getBuildingstospawnLoot = compile preProcessFileLineNumbers "fn_LSgetBuildingstospawnLoot.sqf"; 
	LSdeleter = compile preProcessFileLineNumbers "LSdeleter.sqf";
	execVM "Lootspawner.sqf";
};

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Advertisement
×
×
  • Create New...