EMS add illegal weapons to fillBoxes.sqf

Total

Member
Hey guys so I customized the fillBoxes.sqf in EMS and some of the weapons weren't in. I'm assuming they're not legal. I'm running Epoch on HFB. Here's one of my fillBoxes.sqf

Code:
_crate3 = _this select 0;

clearWeaponCargoGlobal _crate3;
clearMagazineCargoGlobal _crate3;

// SNIPERRIFLES
_crate3 addWeaponCargoGlobal ["M40A3", 1];
_crate3 addWeaponCargoGlobal ["M24_NSPU_EP1", 1];
_crate3 addWeaponCargoGlobal ["SVD_CAMO", 1];
_crate3 addWeaponCargoGlobal ["DMR_DZ", 1];
_crate3 addWeaponCargoGlobal ["SVD_des_EP1", 1];
_crate3 addWeaponCargoGlobal ["VSS_Vintorez", 1];

// PISTOLS
_crate3 addWeaponCargoGlobal ["UZI_SD_EP1", 1];
_crate3 addWeaponCargoGlobal ["M9", 1];

// AMMUNITION
_crate3 addMagazineCargoGlobal ["15Rnd_9x19_M9", 2];
_crate3 addMagazineCargoGlobal ["30Rnd_9x19_UZI_SD", 1];
_crate3 addMagazineCargoGlobal ["10Rnd_762x54_SVD", 10];
_crate3 addMagazineCargoGlobal [20Rnd_762x51_DMR", 5];
_crate3 addMagazineCargoGlobal [20Rnd_9x39_SP5_VSS", 5];
_crate3 addMagazineCargoGlobal ["20Rnd_762x51_B_SCAR", 5];

// CLOTHING
_crate3 addMagazineCargoGlobal ["Skin_Sniper1_DZ", 2];

// BACKPACKS
_crate3 addBackpackCargoGlobal ['DZ_CivilBackpack_EP1', 1];

So most of these are in, the SVD_des_EP1 seems to turn into SVD_Camo and the M24_NSPU_EP1 doesn't even show up.
 
The NSPU is a russian sight, and can be on the AK or the SVD so they must have the class wrong. There's no M24 NSPU.

The SVD classname I'd just change to a legal one as they may have just used the wrong classname.
 
Ok makes sense lol, didnt think to swap them for something legal. I was looking for a way to just make them legal lol. was way to tired lastnight just thought I mangled the code somehow. Anyways thanks for the help Vampire!
 
Wow yea just looked it over and was def tired lol the SVD_des_EP1 is the SVD_Camo lol so i dont think any of them were illegal just me not paying attention lol. Thanks again Vampire.
 
Back
Top