Jump to content
Sign in to follow this  
spirit6

MCC Sandbox - Mission making the easy way

Recommended Posts

Hi there thank you for the great ability to create missions that easy!

But how do I get the sandbox on new maps? So you already have many maps where the sandbox works on, but I want a different map to work on that has no working Sandbox on it.

Thanks,

Jani

Sorry forgot you.

It's easy:

1. Unpbo one of the MCC missions.

2. Open the mission.sqm

3. Change all the old island name to the new one (use replace function on your default edit tool). Like Chernarus to Panthera.

4. Change the name of the island after the dot in the mission folder. Example old: "CO_MCC_Sandbox_V158.Chernarus" to something like "CO_MCC_Sandbox_V158.Panthera".

5. Now open the mission from ingame using the editor.

6. Re-place the units.

7. Save the mission.

8. Pbo it again.

A more easier method is:

Tell which island and i'll do it for you.

Share this post


Link to post
Share on other sites

jeez - shay is one of the calmest guys of creating some community loved tools I've seen - he answers quick and concrete without telling ppl off for being dumb like me :)

If you ever spawn a Donate Button within ur signature - I'll press that button :P

Share this post


Link to post
Share on other sites

If you put the LHD off-map (or at least close to it), some actions may occasionally (or always) not work. If those maps you may want to try relocate the LHD.

Share this post


Link to post
Share on other sites

Made a few missions since adding it to the server, absolutely loving it atm, one question how do I get the units to have the ACRE radio's by default? doesnt seem to be an option for a drop box. Short of opening up that is, about to start a game now I saw that acre was working except for the fact we didn't have the radio's on us. (for lingor island btw tora bora seemed to be fine)

Share this post


Link to post
Share on other sites

ACRE should automatically replace the itemRadio with PRC-343 radio in any mission. If it doesn't then it might not be running correctly (either on the client or on the server). ACE radios should work in ACRE (though radios that currently not included in ACRE act like a PRC-119 or PRC-117, forgot which one it was). This should work in any mission as well.

If you want specific ACRE radios you'll have to modify the gear assignment script.

Share this post


Link to post
Share on other sites

Yeah its strange it is working now, only thing is after updating ace today, when calling for an air drop the c130 flys past but never drops anything..... using lingor.

Share this post


Link to post
Share on other sites
;1944958']Yeah its strange it is working now' date=' only thing is after updating ace today, when calling for an air drop the c130 flys past but never drops anything..... using lingor.[/quote']

Did you use it properly? Did you added all the vehicles you wanted to the array then presedexexute?

Share this post


Link to post
Share on other sites

I added the ACE Ammo\ US Army Weapons Crate to the Array, Call then clicked the location I want the drop on the map, the plane comes after some time and then just fly's around, its the same for air support they circle so many times at the target location, then eventually just fly away, I think there might be a problem with the altitude they fly at lingor, as for me and my clans experience last night the AI pilots were acting crazy with there fly routine's...

In the end I had to simulate there had been ammo drops by placing a new zone and adding an ammobox there.

Share this post


Link to post
Share on other sites

Well I tried adding my own preset scripts to init.sqf:

,['Vehicle Respawn', '0 = [this, 30, 300] execVM "scripts\vehicle.sqf";']
,{'Ammobox', 'null0 = this execVM "scripts\ammocrate.sqf"; this allowdamage false;']

I put these at the end of the mccPresets list and then the script files into the scripts folder but the Mission Generator wouldn't enable. Not sure what I did wrong :/

Share this post


Link to post
Share on other sites
[ and {

Ah ok! DOH!

EDIT: Nvm! Got it working! Thanks! :D

For anyone who's interested, here's my ammoscript:

in MCC init.sqf, add this to the "mccPresets" at the end:

,['Ammobox', '0 = this execVM "scripts\ammocrate.sqf";']

in scripts\ammocrate.sqf, have this:

while {alive _this} do
{
clearweaponcargo _this;
clearmagazinecargo _this;

// AR
// Weapons
_this addWeaponCargo ["ACE_M249_AIM", 4];

_this addWeaponCargo ["ACE_M249_PIP_ACOG", 4];

_this addWeaponCargo ["ACE_RPK", 4];

_this addWeaponCargo ["ACE_RPK74M", 4];

_this addWeaponCargo ["ACE_RPK74M_1P29", 4];

_this addWeaponCargo ["BAF_L110A1_Aim", 4];

_this addWeaponCargo ["M249", 4];

_this addWeaponCargo ["M249_EP1", 4];

_this addWeaponCargo ["M249_m145_EP1", 4];

_this addWeaponCargo ["M249_TWS_EP1", 4];

_this addWeaponCargo ["m8_SAW", 4];

_this addWeaponCargo ["MG36", 4];

_this addWeaponCargo ["MG36_camo", 4];

_this addWeaponCargo ["RPK_74", 4];

// Magazines
_this addMagazineCargo ["100Rnd_556x45_BetaCMag", 32];

_this addMagazineCargo ["100Rnd_556x45_M249", 32];

_this addMagazineCargo ["200Rnd_556x45_L110A1", 32];

_this addMagazineCargo ["200Rnd_556x45_M249", 32];

_this addMagazineCargo ["20Rnd_556x45_Stanag", 32];

_this addMagazineCargo ["30Rnd_556x45_Stanag", 32];

_this addMagazineCargo ["30Rnd_556x45_StanagSD", 32];

_this addMagazineCargo ["ACE_100Rnd_556x45_T_M249", 32];

_this addMagazineCargo ["ACE_200Rnd_556x45_T_M249", 32];

_this addMagazineCargo ["ACE_30Rnd_556x45_SB_Stanag", 32];

_this addMagazineCargo ["ACE_30Rnd_556x45_T_Stanag", 32];

_this addMagazineCargo ["30Rnd_762x39_AK47", 32];

_this addMagazineCargo ["ACE_30Rnd_762x39_T_AK47", 32];

_this addMagazineCargo ["ACE_40Rnd_762x39_B_AK47", 32];

_this addMagazineCargo ["ACE_40Rnd_762x39_T_AK47", 32];

_this addMagazineCargo ["ACE_75Rnd_762x39_B_AK47", 32];

_this addMagazineCargo ["30Rnd_545x39_AK", 32];

_this addMagazineCargo ["30Rnd_545x39_AKSD", 32];

_this addMagazineCargo ["75Rnd_545x39_RPK", 32];

_this addMagazineCargo ["ACE_30Rnd_545x39_T_AK", 32];

_this addMagazineCargo ["ACE_45Rnd_545x39_B_AK", 32];

_this addMagazineCargo ["ACE_75Rnd_545x39_T_RPK", 32];

_this addMagazineCargo ["30Rnd_556x45_G36", 32];

_this addMagazineCargo ["30Rnd_556x45_G36SD", 32];

_this addMagazineCargo ["ACE_30Rnd_556x45_T_G36", 32];

// Equip
// Weapons
_this addWeaponCargo ["ACE_Laserdesignator_D", 4];

_this addWeaponCargo ["ACE_MX2A", 4];

_this addWeaponCargo ["ACE_Rangefinder_OD", 4];

_this addWeaponCargo ["ACE_YardAge450", 4];

_this addWeaponCargo ["Binocular", 4];

_this addWeaponCargo ["Binocular_Vector", 4];

_this addWeaponCargo ["Laserdesignator", 4];

_this addWeaponCargo ["NVGoggles", 4];

// Magazines
_this addMagazineCargo ["ACE_Battery_Rangefinder", 32];

_this addMagazineCargo ["Laserbatteries", 32];

// Item
// Weapons
_this addWeaponCargo ["ace_arty_rangeTable_2b14_legacy", 4];

_this addWeaponCargo ["ace_arty_rangeTable_d30_legacy", 4];

_this addWeaponCargo ["ace_arty_rangeTable_m119", 4];

_this addWeaponCargo ["ace_arty_rangeTable_m119_legacy", 4];

_this addWeaponCargo ["ace_arty_rangeTable_m224_legacy", 4];

_this addWeaponCargo ["ace_arty_rangeTable_m252_legacy", 4];

_this addWeaponCargo ["ACE_DAGR", 4];

_this addWeaponCargo ["ACE_Earplugs", 4];

_this addWeaponCargo ["ACE_GlassesBalaklava", 4];

_this addWeaponCargo ["ACE_GlassesBalaklavaGray", 4];

_this addWeaponCargo ["ACE_GlassesBalaklavaOlive", 4];

_this addWeaponCargo ["ACE_GlassesGasMask_RU", 4];

_this addWeaponCargo ["ACE_GlassesGasMask_US", 4];

_this addWeaponCargo ["ACE_GlassesLHD_glasses", 4];

_this addWeaponCargo ["ACE_GlassesSunglasses", 4];

_this addWeaponCargo ["ACE_GlassesTactical", 4];

_this addWeaponCargo ["ACE_HuntIR_monitor", 4];

_this addWeaponCargo ["ACE_Kestrel4500", 4];

_this addWeaponCargo ["ACE_KeyCuffs", 4];

_this addWeaponCargo ["ACE_Map", 4];

_this addWeaponCargo ["ACE_Map_Tools", 4];

_this addWeaponCargo ["ACE_SpottingScope", 4];

_this addWeaponCargo ["ACE_WireCutter", 4];

_this addWeaponCargo ["ItemCompass", 4];

_this addWeaponCargo ["ItemGPS", 4];

_this addWeaponCargo ["ItemMap", 4];

_this addWeaponCargo ["ItemRadio", 4];

_this addWeaponCargo ["ItemWatch", 4];

// Magazines

// Launcher
// Weapons
_this addWeaponCargo ["ACE_Arty_AimingPost_M1A2_M58", 4];

_this addWeaponCargo ["ACE_Arty_AimingPost_M1A2_M59", 4];

_this addWeaponCargo ["ACE_Javelin_CLU", 4];

_this addWeaponCargo ["ACE_Javelin_Direct", 4];

_this addWeaponCargo ["ACE_JerryCan_Dummy_15", 4];

_this addWeaponCargo ["ACE_M136_CSRS", 4];

_this addWeaponCargo ["ACE_M72", 4];

_this addWeaponCargo ["ACE_M72A2", 4];

_this addWeaponCargo ["ACE_ParachutePack", 4];

_this addWeaponCargo ["ACE_ParachuteRoundPack", 4];

_this addWeaponCargo ["ACE_RMG", 4];

_this addWeaponCargo ["ACE_RPG22", 4];

_this addWeaponCargo ["ACE_RPG27", 4];

_this addWeaponCargo ["ACE_RPG29", 4];

_this addWeaponCargo ["ACE_RPG7V_PGO7", 4];

_this addWeaponCargo ["ACE_RPOM", 4];

_this addWeaponCargo ["ACE_RSHG1", 4];

_this addWeaponCargo ["BAF_NLAW_Launcher", 4];

_this addWeaponCargo ["Igla", 4];

_this addWeaponCargo ["Javelin", 4];

_this addWeaponCargo ["M136", 4];

_this addWeaponCargo ["M47Launcher_EP1", 4];

_this addWeaponCargo ["MAAWS", 4];

_this addWeaponCargo ["MetisLauncher", 4];

_this addWeaponCargo ["RPG18", 4];

_this addWeaponCargo ["RPG7V", 4];

_this addWeaponCargo ["SMAW", 4];

_this addWeaponCargo ["Stinger", 4];

_this addWeaponCargo ["Strela", 4];

// Magazines
_this addMagazineCargo ["ACE_RPG29_PG29", 32];

_this addMagazineCargo ["ACE_RPG29_TBG29", 32];

_this addMagazineCargo ["ACE_PG7VM", 32];

_this addMagazineCargo ["ACE_TBG7V", 32];

_this addMagazineCargo ["OG7", 32];

_this addMagazineCargo ["PG7V", 32];

_this addMagazineCargo ["PG7VL", 32];

_this addMagazineCargo ["PG7VR", 32];

_this addMagazineCargo ["Igla", 32];

_this addMagazineCargo ["Dragon_EP1", 32];

_this addMagazineCargo ["ACE_MAAWS_HE", 32];

_this addMagazineCargo ["MAAWS_HEAT", 32];

_this addMagazineCargo ["MAAWS_HEDP", 32];

_this addMagazineCargo ["ACE_AT13TB", 32];

_this addMagazineCargo ["AT13", 32];

_this addMagazineCargo ["ACE_SMAW_NE", 32];

_this addMagazineCargo ["SMAW_HEAA", 32];

_this addMagazineCargo ["SMAW_HEDP", 32];

_this addMagazineCargo ["ACE_SMAW_Spotting", 32];

_this addMagazineCargo ["Stinger", 32];

_this addMagazineCargo ["Strela", 32];

// MG
// Weapons
_this addWeaponCargo ["ACE_BAF_L7A2_GPMG", 4];

_this addWeaponCargo ["ACE_M240B", 4];

_this addWeaponCargo ["ACE_M240L", 4];

_this addWeaponCargo ["ACE_M240L_M145", 4];

_this addWeaponCargo ["ACE_M60", 4];

_this addWeaponCargo ["BAF_L7A2_GPMG", 4];

_this addWeaponCargo ["M240", 4];

_this addWeaponCargo ["m240_scoped_EP1", 4];

_this addWeaponCargo ["M60A4_EP1", 4];

_this addWeaponCargo ["Mk_48", 4];

_this addWeaponCargo ["Mk_48_DES_EP1", 4];

_this addWeaponCargo ["Pecheneg", 4];

_this addWeaponCargo ["PK", 4];

// Magazines
_this addMagazineCargo ["100Rnd_762x51_M240", 32];

_this addMagazineCargo ["100Rnd_762x54_PK", 32];

// Pistol
// Weapons
_this addWeaponCargo ["ACE_APS", 4];

_this addWeaponCargo ["ACE_APSB", 4];

_this addWeaponCargo ["ACE_Flaregun", 4];

_this addWeaponCargo ["ACE_Glock18", 4];

_this addWeaponCargo ["ACE_Knicklicht_Proxy", 4];

_this addWeaponCargo ["ACE_L9A1", 4];

_this addWeaponCargo ["ACE_MugLite", 4];

_this addWeaponCargo ["ACE_P226", 4];

_this addWeaponCargo ["ACE_P8", 4];

_this addWeaponCargo ["ACE_TT", 4];

_this addWeaponCargo ["ACE_USP", 4];

_this addWeaponCargo ["ACE_USPSD", 4];

_this addWeaponCargo ["Colt1911", 4];

_this addWeaponCargo ["glock17_EP1", 4];

_this addWeaponCargo ["M9", 4];

_this addWeaponCargo ["M9SD", 4];

_this addWeaponCargo ["Makarov", 4];

_this addWeaponCargo ["MakarovSD", 4];

_this addWeaponCargo ["revolver_EP1", 4];

_this addWeaponCargo ["revolver_gold_EP1", 4];

_this addWeaponCargo ["Sa61_EP1", 4];

_this addWeaponCargo ["UZI_EP1", 4];

_this addWeaponCargo ["UZI_SD_EP1", 4];

// Magazines
_this addMagazineCargo ["ACE_20Rnd_9x18_APS", 32];

_this addMagazineCargo ["ACE_20Rnd_9x18_APSB", 32];

_this addMagazineCargo ["ACE_SSGreen_FG", 32];

_this addMagazineCargo ["ACE_SSRed_FG", 32];

_this addMagazineCargo ["ACE_SSWhite_FG", 32];

_this addMagazineCargo ["ACE_SSYellow_FG", 32];

_this addMagazineCargo ["17Rnd_9x19_glock17", 32];

_this addMagazineCargo ["ACE_33Rnd_9x19_G18", 32];

_this addMagazineCargo ["ACE_13Rnd_9x19_L9A1", 32];

_this addMagazineCargo ["ACE_15Rnd_9x19_P226", 32];

_this addMagazineCargo ["ACE_15Rnd_9x19_P8", 32];

_this addMagazineCargo ["ACE_8Rnd_762x25_B_Tokarev", 32];

_this addMagazineCargo ["ACE_12Rnd_45ACP_USP", 32];

_this addMagazineCargo ["7Rnd_45ACP_1911", 32];

_this addMagazineCargo ["15Rnd_9x19_M9", 32];

_this addMagazineCargo ["15Rnd_9x19_M9SD", 32];

_this addMagazineCargo ["8Rnd_9x18_Makarov", 32];

_this addMagazineCargo ["8Rnd_9x18_MakarovSD", 32];

_this addMagazineCargo ["6Rnd_45ACP", 32];

_this addMagazineCargo ["10Rnd_B_765x17_Ball", 32];

_this addMagazineCargo ["20Rnd_B_765x17_Ball", 32];

_this addMagazineCargo ["30Rnd_9x19_UZI", 32];

_this addMagazineCargo ["30Rnd_9x19_UZI_SD", 32];

// Rifle
// Weapons
_this addWeaponCargo ["AA12_PMC", 4];

_this addWeaponCargo ["ACE_AK103", 4];

_this addWeaponCargo ["ACE_AK103_1P29", 4];

_this addWeaponCargo ["ACE_AK103_GL", 4];

_this addWeaponCargo ["ACE_AK103_GL_1P29", 4];

_this addWeaponCargo ["ACE_AK103_GL_Kobra", 4];

_this addWeaponCargo ["ACE_AK103_GL_PSO", 4];

_this addWeaponCargo ["ACE_AK103_Kobra", 4];

_this addWeaponCargo ["ACE_AK103_PSO", 4];

_this addWeaponCargo ["ACE_AK104", 4];

_this addWeaponCargo ["ACE_AK104_1P29", 4];

_this addWeaponCargo ["ACE_AK104_Kobra", 4];

_this addWeaponCargo ["ACE_AK104_PSO", 4];

_this addWeaponCargo ["ACE_AK105", 4];

_this addWeaponCargo ["ACE_AK105_1P29", 4];

_this addWeaponCargo ["ACE_AK105_Kobra", 4];

_this addWeaponCargo ["ACE_AK105_PSO", 4];

_this addWeaponCargo ["ACE_AK74M", 4];

_this addWeaponCargo ["ACE_AK74M_1P29", 4];

_this addWeaponCargo ["ACE_AK74M_GL", 4];

_this addWeaponCargo ["ACE_AK74M_GL_1P29", 4];

_this addWeaponCargo ["ACE_AK74M_GL_Kobra", 4];

_this addWeaponCargo ["ACE_AK74M_GL_PSO", 4];

_this addWeaponCargo ["ACE_AK74M_Kobra", 4];

_this addWeaponCargo ["ACE_AK74M_PSO", 4];

_this addWeaponCargo ["ACE_AKM", 4];

_this addWeaponCargo ["ACE_AKM_GL", 4];

_this addWeaponCargo ["ACE_AKMS", 4];

_this addWeaponCargo ["ACE_AKMS_SD", 4];

_this addWeaponCargo ["ACE_AKS74_GP25", 4];

_this addWeaponCargo ["ACE_AKS74_UN", 4];

_this addWeaponCargo ["ACE_AKS74P", 4];

_this addWeaponCargo ["ACE_AKS74P_1P29", 4];

_this addWeaponCargo ["ACE_AKS74P_GL", 4];

_this addWeaponCargo ["ACE_AKS74P_GL_1P29", 4];

_this addWeaponCargo ["ACE_AKS74P_GL_Kobra", 4];

_this addWeaponCargo ["ACE_AKS74P_GL_PSO", 4];

_this addWeaponCargo ["ACE_AKS74P_Kobra", 4];

_this addWeaponCargo ["ACE_AKS74P_PSO", 4];

_this addWeaponCargo ["ACE_G36A1_AG36A1", 4];

_this addWeaponCargo ["ACE_G36A1_AG36A1_D", 4];

_this addWeaponCargo ["ACE_G36A1_AG36A1_D_UP", 4];

_this addWeaponCargo ["ACE_G36A1_AG36A1_UP", 4];

_this addWeaponCargo ["ACE_G36A2", 4];

_this addWeaponCargo ["ACE_G36A2_Bipod", 4];

_this addWeaponCargo ["ACE_G36A2_Bipod_D", 4];

_this addWeaponCargo ["ACE_G36A2_D", 4];

_this addWeaponCargo ["ACE_G36K_EOTech", 4];

_this addWeaponCargo ["ACE_G36K_EOTech_D", 4];

_this addWeaponCargo ["ACE_G36K_iron", 4];

_this addWeaponCargo ["ACE_G36K_iron_D", 4];

_this addWeaponCargo ["ACE_G3A3", 4];

_this addWeaponCargo ["ACE_G3A3_RSAS", 4];

_this addWeaponCargo ["ACE_G3SG1", 4];

_this addWeaponCargo ["ACE_gr1", 4];

_this addWeaponCargo ["ACE_gr1sd", 4];

_this addWeaponCargo ["ACE_gr1sdsp", 4];

_this addWeaponCargo ["ACE_gr1sp", 4];

_this addWeaponCargo ["ACE_HK416_D10", 4];

_this addWeaponCargo ["ACE_HK416_D10_AIM", 4];

_this addWeaponCargo ["ACE_HK416_D10_COMPM3", 4];

_this addWeaponCargo ["ACE_HK416_D10_COMPM3_SD", 4];

_this addWeaponCargo ["ACE_HK416_D10_Holo", 4];

_this addWeaponCargo ["ACE_HK416_D10_M320", 4];

_this addWeaponCargo ["ACE_HK416_D10_M320_UP", 4];

_this addWeaponCargo ["ACE_HK416_D10_SD", 4];

_this addWeaponCargo ["ACE_HK416_D14", 4];

_this addWeaponCargo ["ACE_HK416_D14_ACOG_PVS14", 4];

_this addWeaponCargo ["ACE_HK416_D14_COMPM3", 4];

_this addWeaponCargo ["ACE_HK416_D14_COMPM3_M320", 4];

_this addWeaponCargo ["ACE_HK416_D14_COMPM3_M320_UP", 4];

_this addWeaponCargo ["ACE_HK416_D14_SD", 4];

_this addWeaponCargo ["ACE_HK416_D14_TWS", 4];

_this addWeaponCargo ["ACE_HK417_Eotech_4x", 4];

_this addWeaponCargo ["ACE_HK417_leupold", 4];

_this addWeaponCargo ["ACE_HK417_micro", 4];

_this addWeaponCargo ["ACE_HK417_Shortdot", 4];

_this addWeaponCargo ["ACE_KAC_PDW", 4];

_this addWeaponCargo ["ACE_M1014_Eotech", 4];

_this addWeaponCargo ["ACE_M14_ACOG", 4];

_this addWeaponCargo ["ACE_m16a2_scope", 4];

_this addWeaponCargo ["ACE_m16a2gl_scope", 4];

_this addWeaponCargo ["ACE_m16a2gl_scope_UP", 4];

_this addWeaponCargo ["ACE_M16A2GL_UP", 4];

_this addWeaponCargo ["ACE_M16A4_ACG_GL_UP", 4];

_this addWeaponCargo ["ACE_M16A4_CCO_GL", 4];

_this addWeaponCargo ["ACE_M16A4_CCO_GL_UP", 4];

_this addWeaponCargo ["ACE_M16A4_GL_UP", 4];

_this addWeaponCargo ["ACE_M16A4_Iron", 4];

_this addWeaponCargo ["ACE_M27_IAR", 4];

_this addWeaponCargo ["ACE_M27_IAR_ACOG", 4];

_this addWeaponCargo ["ACE_M27_IAR_CCO", 4];

_this addWeaponCargo ["ACE_M3A1", 4];

_this addWeaponCargo ["ACE_M4", 4];

_this addWeaponCargo ["ACE_M4_ACOG", 4];

_this addWeaponCargo ["ACE_M4_Aim", 4];

_this addWeaponCargo ["ACE_M4_AIM_GL", 4];

_this addWeaponCargo ["ACE_M4_AIM_GL_UP", 4];

_this addWeaponCargo ["ACE_M4_Eotech", 4];

_this addWeaponCargo ["ACE_M4_GL", 4];

_this addWeaponCargo ["ACE_M4_GL_UP", 4];

_this addWeaponCargo ["ACE_M4_RCO_GL", 4];

_this addWeaponCargo ["ACE_M4_RCO_GL_UP", 4];

_this addWeaponCargo ["ACE_M4A1_ACOG", 4];

_this addWeaponCargo ["ACE_M4A1_ACOG_SD", 4];

_this addWeaponCargo ["ACE_M4A1_AIM_GL", 4];

_this addWeaponCargo ["ACE_M4A1_AIM_GL_SD", 4];

_this addWeaponCargo ["ACE_M4A1_AIM_GL_SD_UP", 4];

_this addWeaponCargo ["ACE_M4A1_AIM_GL_UP", 4];

_this addWeaponCargo ["ACE_M4A1_Aim_SD", 4];

_this addWeaponCargo ["ACE_M4A1_Eotech", 4];

_this addWeaponCargo ["ACE_M4A1_GL", 4];

_this addWeaponCargo ["ACE_M4A1_GL_SD", 4];

_this addWeaponCargo ["ACE_M4A1_GL_SD_UP", 4];

_this addWeaponCargo ["ACE_M4A1_GL_UP", 4];

_this addWeaponCargo ["ACE_M4A1_RCO2_GL", 4];

_this addWeaponCargo ["ACE_M4A1_RCO2_GL_UP", 4];

_this addWeaponCargo ["ACE_M4A1_RCO_GL", 4];

_this addWeaponCargo ["ACE_M4SPR_SD", 4];

_this addWeaponCargo ["ACE_Mk12mod1", 4];

_this addWeaponCargo ["ACE_Mk12mod1_SD", 4];

_this addWeaponCargo ["ACE_MP5A4", 4];

_this addWeaponCargo ["ACE_MP5A5", 4];

_this addWeaponCargo ["ACE_MP5SD", 4];

_this addWeaponCargo ["ACE_MP7", 4];

_this addWeaponCargo ["ACE_MP7_RSAS", 4];

_this addWeaponCargo ["ACE_oc14", 4];

_this addWeaponCargo ["ACE_oc14gl", 4];

_this addWeaponCargo ["ACE_oc14glsp", 4];

_this addWeaponCargo ["ACE_oc14sd", 4];

_this addWeaponCargo ["ACE_oc14sdsp", 4];

_this addWeaponCargo ["ACE_oc14sp", 4];

_this addWeaponCargo ["ACE_SCAR_H_STD_Spect", 4];

_this addWeaponCargo ["ACE_SKS", 4];

_this addWeaponCargo ["ACE_SOC_M4A1", 4];

_this addWeaponCargo ["ACE_SOC_M4A1_Aim", 4];

_this addWeaponCargo ["ACE_SOC_M4A1_AIM_SD", 4];

_this addWeaponCargo ["ACE_SOC_M4A1_Eotech", 4];

_this addWeaponCargo ["ACE_SOC_M4A1_Eotech_4x", 4];

_this addWeaponCargo ["ACE_SOC_M4A1_GL", 4];

_this addWeaponCargo ["ACE_SOC_M4A1_GL_13", 4];

_this addWeaponCargo ["ACE_SOC_M4A1_GL_AIMPOINT", 4];

_this addWeaponCargo ["ACE_SOC_M4A1_GL_EOTECH", 4];

_this addWeaponCargo ["ACE_SOC_M4A1_GL_SD", 4];

_this addWeaponCargo ["ACE_SOC_M4A1_GL_SD_UP", 4];

_this addWeaponCargo ["ACE_SOC_M4A1_GL_UP", 4];

_this addWeaponCargo ["ACE_SOC_M4A1_RCO_GL", 4];

_this addWeaponCargo ["ACE_SOC_M4A1_RCO_GL_UP", 4];

_this addWeaponCargo ["ACE_SOC_M4A1_SD_9", 4];

_this addWeaponCargo ["ACE_SOC_M4A1_SHORTDOT", 4];

_this addWeaponCargo ["ACE_SOC_M4A1_SHORTDOT_SD", 4];

_this addWeaponCargo ["ACE_SOC_M4A1_TWS", 4];

_this addWeaponCargo ["ACE_SPAS12", 4];

_this addWeaponCargo ["ACE_UMP45", 4];

_this addWeaponCargo ["ACE_UMP45_AIM", 4];

_this addWeaponCargo ["ACE_UMP45_AIM_SD", 4];

_this addWeaponCargo ["ACE_UMP45_SD", 4];

_this addWeaponCargo ["ACE_Val", 4];

_this addWeaponCargo ["ACE_Val_Kobra", 4];

_this addWeaponCargo ["ACE_Val_PSO", 4];

_this addWeaponCargo ["AK_107_GL_kobra", 4];

_this addWeaponCargo ["AK_107_GL_pso", 4];

_this addWeaponCargo ["AK_107_kobra", 4];

_this addWeaponCargo ["AK_107_pso", 4];

_this addWeaponCargo ["AK_47_M", 4];

_this addWeaponCargo ["AK_47_S", 4];

_this addWeaponCargo ["AK_74", 4];

_this addWeaponCargo ["AK_74_GL", 4];

_this addWeaponCargo ["AK_74_GL_kobra", 4];

_this addWeaponCargo ["AKS_74", 4];

_this addWeaponCargo ["AKS_74_GOSHAWK", 4];

_this addWeaponCargo ["AKS_74_kobra", 4];

_this addWeaponCargo ["AKS_74_NSPU", 4];

_this addWeaponCargo ["AKS_74_pso", 4];

_this addWeaponCargo ["AKS_74_U", 4];

_this addWeaponCargo ["AKS_74_UN_kobra", 4];

_this addWeaponCargo ["AKS_GOLD", 4];

_this addWeaponCargo ["BAF_L85A2_RIS_ACOG", 4];

_this addWeaponCargo ["BAF_L85A2_RIS_CWS", 4];

_this addWeaponCargo ["BAF_L85A2_RIS_Holo", 4];

_this addWeaponCargo ["BAF_L85A2_RIS_SUSAT", 4];

_this addWeaponCargo ["BAF_L85A2_UGL_ACOG", 4];

_this addWeaponCargo ["BAF_L85A2_UGL_Holo", 4];

_this addWeaponCargo ["BAF_L85A2_UGL_SUSAT", 4];

_this addWeaponCargo ["BAF_L86A2_ACOG", 4];

_this addWeaponCargo ["bizon", 4];

_this addWeaponCargo ["bizon_silenced", 4];

_this addWeaponCargo ["FN_FAL", 4];

_this addWeaponCargo ["FN_FAL_ANPVS4", 4];

_this addWeaponCargo ["G36_C_SD_camo", 4];

_this addWeaponCargo ["G36_C_SD_eotech", 4];

_this addWeaponCargo ["G36a", 4];

_this addWeaponCargo ["G36A_camo", 4];

_this addWeaponCargo ["G36C", 4];

_this addWeaponCargo ["G36C_camo", 4];

_this addWeaponCargo ["G36K", 4];

_this addWeaponCargo ["G36K_camo", 4];

_this addWeaponCargo ["LeeEnfield", 4];

_this addWeaponCargo ["M1014", 4];

_this addWeaponCargo ["M14_EP1", 4];

_this addWeaponCargo ["M16A2", 4];

_this addWeaponCargo ["M16A2GL", 4];

_this addWeaponCargo ["m16a4", 4];

_this addWeaponCargo ["m16a4_acg", 4];

_this addWeaponCargo ["M16A4_ACG_GL", 4];

_this addWeaponCargo ["M16A4_GL", 4];

_this addWeaponCargo ["M32_EP1", 4];

_this addWeaponCargo ["M4A1", 4];

_this addWeaponCargo ["M4A1_Aim", 4];

_this addWeaponCargo ["M4A1_Aim_camo", 4];

_this addWeaponCargo ["M4A1_AIM_SD_camo", 4];

_this addWeaponCargo ["M4A1_HWS_GL", 4];

_this addWeaponCargo ["M4A1_HWS_GL_camo", 4];

_this addWeaponCargo ["M4A1_HWS_GL_SD_Camo", 4];

_this addWeaponCargo ["M4A1_RCO_GL", 4];

_this addWeaponCargo ["M4A3_CCO_EP1", 4];

_this addWeaponCargo ["M4A3_RCO_GL_EP1", 4];

_this addWeaponCargo ["M4SPR", 4];

_this addWeaponCargo ["M79_EP1", 4];

_this addWeaponCargo ["m8_carbine", 4];

_this addWeaponCargo ["m8_carbine_pmc", 4];

_this addWeaponCargo ["m8_carbineGL", 4];

_this addWeaponCargo ["m8_compact", 4];

_this addWeaponCargo ["m8_compact_pmc", 4];

_this addWeaponCargo ["m8_holo_sd", 4];

_this addWeaponCargo ["m8_sharpshooter", 4];

_this addWeaponCargo ["m8_tws", 4];

_this addWeaponCargo ["m8_tws_sd", 4];

_this addWeaponCargo ["Mk13_EP1", 4];

_this addWeaponCargo ["MP5A5", 4];

_this addWeaponCargo ["MP5SD", 4];

_this addWeaponCargo ["Sa58P_EP1", 4];

_this addWeaponCargo ["Sa58V_CCO_EP1", 4];

_this addWeaponCargo ["Sa58V_EP1", 4];

_this addWeaponCargo ["Sa58V_RCO_EP1", 4];

_this addWeaponCargo ["Saiga12K", 4];

_this addWeaponCargo ["SCAR_H_CQC_CCO", 4];

_this addWeaponCargo ["SCAR_H_CQC_CCO_SD", 4];

_this addWeaponCargo ["SCAR_H_LNG_Sniper", 4];

_this addWeaponCargo ["SCAR_H_LNG_Sniper_SD", 4];

_this addWeaponCargo ["SCAR_H_STD_EGLM_Spect", 4];

_this addWeaponCargo ["SCAR_H_STD_TWS_SD", 4];

_this addWeaponCargo ["SCAR_L_CQC", 4];

_this addWeaponCargo ["SCAR_L_CQC_CCO_SD", 4];

_this addWeaponCargo ["SCAR_L_CQC_EGLM_Holo", 4];

_this addWeaponCargo ["SCAR_L_CQC_Holo", 4];

_this addWeaponCargo ["SCAR_L_STD_EGLM_RCO", 4];

_this addWeaponCargo ["SCAR_L_STD_EGLM_TWS", 4];

_this addWeaponCargo ["SCAR_L_STD_HOLO", 4];

_this addWeaponCargo ["SCAR_L_STD_Mk4CQT", 4];

// Magazines
_this addMagazineCargo ["20Rnd_B_AA12_74Slug", 32];

_this addMagazineCargo ["20Rnd_B_AA12_HE", 32];

_this addMagazineCargo ["20Rnd_B_AA12_Pellets", 32];

_this addMagazineCargo ["30Rnd_762x39_AK47", 32];

_this addMagazineCargo ["ACE_30Rnd_762x39_SD_AK47", 32];

_this addMagazineCargo ["ACE_30Rnd_762x39_T_AK47", 32];

_this addMagazineCargo ["ACE_40Rnd_762x39_B_AK47", 32];

_this addMagazineCargo ["ACE_40Rnd_762x39_T_AK47", 32];

_this addMagazineCargo ["ACE_75Rnd_762x39_B_AK47", 32];

_this addMagazineCargo ["ACE_75Rnd_762x39_SD_AK47", 32];

_this addMagazineCargo ["1Rnd_HE_GP25", 32];

_this addMagazineCargo ["1Rnd_SMOKE_GP25", 32];

_this addMagazineCargo ["1Rnd_SmokeGreen_GP25", 32];

_this addMagazineCargo ["1Rnd_SmokeRed_GP25", 32];

_this addMagazineCargo ["1Rnd_SmokeYellow_GP25", 32];

_this addMagazineCargo ["ACE_1Rnd_CS_GP25", 32];

_this addMagazineCargo ["ACE_1Rnd_HE_GP25P", 32];

_this addMagazineCargo ["ACE_SSGreen_GP25", 32];

_this addMagazineCargo ["ACE_SSRed_GP25", 32];

_this addMagazineCargo ["ACE_SSWhite_GP25", 32];

_this addMagazineCargo ["ACE_SSYellow_GP25", 32];

_this addMagazineCargo ["FlareGreen_GP25", 32];

_this addMagazineCargo ["FlareRed_GP25", 32];

_this addMagazineCargo ["FlareWhite_GP25", 32];

_this addMagazineCargo ["FlareYellow_GP25", 32];

_this addMagazineCargo ["30Rnd_545x39_AK", 32];

_this addMagazineCargo ["30Rnd_545x39_AKSD", 32];

_this addMagazineCargo ["75Rnd_545x39_RPK", 32];

_this addMagazineCargo ["ACE_30Rnd_545x39_T_AK", 32];

_this addMagazineCargo ["ACE_45Rnd_545x39_B_AK", 32];

_this addMagazineCargo ["ACE_75Rnd_545x39_T_RPK", 32];

_this addMagazineCargo ["100Rnd_556x45_BetaCMag", 32];

_this addMagazineCargo ["30Rnd_556x45_G36", 32];

_this addMagazineCargo ["30Rnd_556x45_G36SD", 32];

_this addMagazineCargo ["ACE_30Rnd_556x45_T_G36", 32];

_this addMagazineCargo ["1Rnd_HE_M203", 32];

_this addMagazineCargo ["1Rnd_Smoke_M203", 32];

_this addMagazineCargo ["1Rnd_SmokeGreen_M203", 32];

_this addMagazineCargo ["1Rnd_SmokeRed_M203", 32];

_this addMagazineCargo ["1Rnd_SmokeYellow_M203", 32];

_this addMagazineCargo ["ACE_1Rnd_CS_M203", 32];

_this addMagazineCargo ["ACE_1Rnd_HE_M203", 32];

_this addMagazineCargo ["ACE_1Rnd_PR_M203", 32];

_this addMagazineCargo ["ACE_FlareIR_M203", 32];

_this addMagazineCargo ["ACE_HuntIR_M203", 32];

_this addMagazineCargo ["ACE_M576", 32];

_this addMagazineCargo ["ACE_SSGreen_M203", 32];

_this addMagazineCargo ["ACE_SSRed_M203", 32];

_this addMagazineCargo ["ACE_SSWhite_M203", 32];

_this addMagazineCargo ["ACE_SSYellow_M203", 32];

_this addMagazineCargo ["FlareGreen_M203", 32];

_this addMagazineCargo ["FlareRed_M203", 32];

_this addMagazineCargo ["FlareWhite_M203", 32];

_this addMagazineCargo ["FlareYellow_M203", 32];

_this addMagazineCargo ["ACE_20Rnd_762x51_B_G3", 32];

_this addMagazineCargo ["ACE_20Rnd_762x51_T_G3", 32];

_this addMagazineCargo ["20Rnd_556x45_Stanag", 32];

_this addMagazineCargo ["30Rnd_556x45_Stanag", 32];

_this addMagazineCargo ["30Rnd_556x45_StanagSD", 32];

_this addMagazineCargo ["ACE_30Rnd_556x45_SB_Stanag", 32];

_this addMagazineCargo ["ACE_30Rnd_556x45_T_Stanag", 32];

_this addMagazineCargo ["ACE_20Rnd_762x51_B_HK417", 32];

_this addMagazineCargo ["ACE_20Rnd_762x51_SB_HK417", 32];

_this addMagazineCargo ["ACE_20Rnd_762x51_T_HK417", 32];

_this addMagazineCargo ["ACE_30Rnd_6x35_B_PDW", 32];

_this addMagazineCargo ["8Rnd_B_Beneli_74Slug", 32];

_this addMagazineCargo ["8Rnd_B_Beneli_Pellets", 32];

_this addMagazineCargo ["20Rnd_762x51_DMR", 32];

_this addMagazineCargo ["ACE_20Rnd_762x51_B_M14", 32];

_this addMagazineCargo ["ACE_20Rnd_762x51_T_DMR", 32];

_this addMagazineCargo ["ACE_30Rnd_1143x23_B_M3", 32];

_this addMagazineCargo ["30Rnd_9x19_MP5", 32];

_this addMagazineCargo ["30Rnd_9x19_MP5SD", 32];

_this addMagazineCargo ["ACE_40Rnd_B_46x30_MP7", 32];

_this addMagazineCargo ["ACE_20Rnd_9x39_B_OC14", 32];

_this addMagazineCargo ["20Rnd_762x51_B_SCAR", 32];

_this addMagazineCargo ["20Rnd_762x51_SB_SCAR", 32];

_this addMagazineCargo ["ACE_20Rnd_762x51_S_SCAR", 32];

_this addMagazineCargo ["ACE_20Rnd_762x51_SB_S_SCAR", 32];

_this addMagazineCargo ["ACE_20Rnd_762x51_SB_SCAR", 32];

_this addMagazineCargo ["ACE_20Rnd_762x51_T_SCAR", 32];

_this addMagazineCargo ["ACE_10Rnd_762x39_B_SKS", 32];

_this addMagazineCargo ["ACE_10Rnd_762x39_T_SKS", 32];

_this addMagazineCargo ["ACE_25Rnd_1143x23_B_UMP45", 32];

_this addMagazineCargo ["10Rnd_9x39_SP5_VSS", 32];

_this addMagazineCargo ["20Rnd_9x39_SP5_VSS", 32];

_this addMagazineCargo ["64Rnd_9x19_Bizon", 32];

_this addMagazineCargo ["64Rnd_9x19_SD_Bizon", 32];

_this addMagazineCargo ["20Rnd_762x51_FNFAL", 32];

_this addMagazineCargo ["ACE_20Rnd_762x51_B_FAL", 32];

_this addMagazineCargo ["ACE_20Rnd_762x51_T_FAL", 32];

_this addMagazineCargo ["10x_303", 32];

_this addMagazineCargo ["ACE_10Rnd_77x56_T_SMLE", 32];

_this addMagazineCargo ["6Rnd_FlareGreen_M203", 32];

_this addMagazineCargo ["6Rnd_FlareRed_M203", 32];

_this addMagazineCargo ["6Rnd_FlareWhite_M203", 32];

_this addMagazineCargo ["6Rnd_FlareYellow_M203", 32];

_this addMagazineCargo ["6Rnd_HE_M203", 32];

_this addMagazineCargo ["6Rnd_Smoke_M203", 32];

_this addMagazineCargo ["6Rnd_SmokeGreen_M203", 32];

_this addMagazineCargo ["6Rnd_SmokeRed_M203", 32];

_this addMagazineCargo ["6Rnd_SmokeYellow_M203", 32];

_this addMagazineCargo ["30Rnd_762x39_SA58", 32];

_this addMagazineCargo ["ACE_30Rnd_762x39_T_SA58", 32];

_this addMagazineCargo ["8Rnd_B_Saiga12_74Slug", 32];

_this addMagazineCargo ["8Rnd_B_Saiga12_Pellets", 32];

// Ruck
// Weapons
_this addWeaponCargo ["ACE_2b14Proxy", 4];

_this addWeaponCargo ["ACE_2b14TripodProxy", 4];

_this addWeaponCargo ["ACE_6T7TripodProxy", 4];

_this addWeaponCargo ["ACE_AGS30Proxy", 4];

_this addWeaponCargo ["ACE_AGS30TripodProxy", 4];

_this addWeaponCargo ["ACE_ALICE_Backpack", 4];

_this addWeaponCargo ["ACE_ANPRC77", 4];

_this addWeaponCargo ["ACE_BackPack", 4];

_this addWeaponCargo ["ACE_BackPack_ACR", 4];

_this addWeaponCargo ["ACE_BackPack_ACR_DDPM", 4];

_this addWeaponCargo ["ACE_BackPack_ACR_DPM", 4];

_this addWeaponCargo ["ACE_BackPack_ACR_FL", 4];

_this addWeaponCargo ["ACE_BackPack_ACR_MTP", 4];

_this addWeaponCargo ["ACE_BackPack_ACR_TT", 4];

_this addWeaponCargo ["ACE_Backpack_FL", 4];

_this addWeaponCargo ["ACE_Backpack_TT", 4];

_this addWeaponCargo ["ACE_Backpack_US", 4];

_this addWeaponCargo ["ACE_BAF_L2A1Proxy", 4];

_this addWeaponCargo ["ACE_BAF_static_GMGProxy", 4];

_this addWeaponCargo ["ACE_CharliePack", 4];

_this addWeaponCargo ["ACE_CharliePack_ACU", 4];

_this addWeaponCargo ["ACE_CharliePack_ACU_Medic", 4];

_this addWeaponCargo ["ACE_CharliePack_WMARPAT", 4];

_this addWeaponCargo ["ACE_Combat_Pack", 4];

_this addWeaponCargo ["ACE_Coyote_Pack", 4];

_this addWeaponCargo ["ACE_Coyote_Pack_Black", 4];

_this addWeaponCargo ["ACE_DSHKMProxy", 4];

_this addWeaponCargo ["ACE_DSHKMTripodProxy", 4];

_this addWeaponCargo ["ACE_FAST_PackEDC", 4];

_this addWeaponCargo ["ACE_FAST_PackEDC_ACU", 4];

_this addWeaponCargo ["ACE_KonkursTripodProxy", 4];

_this addWeaponCargo ["ACE_KORDProxy", 4];

_this addWeaponCargo ["ACE_M122TripodProxy", 4];

_this addWeaponCargo ["ACE_M220Proxy", 4];

_this addWeaponCargo ["ACE_M220TripodProxy", 4];

_this addWeaponCargo ["ACE_M224Proxy", 4];

_this addWeaponCargo ["ACE_M224TripodProxy", 4];

_this addWeaponCargo ["ACE_M252Proxy", 4];

_this addWeaponCargo ["ACE_M252TripodProxy", 4];

_this addWeaponCargo ["ACE_M2HBProxy", 4];

_this addWeaponCargo ["ACE_M3TripodProxy", 4];

_this addWeaponCargo ["ACE_MK19MOD3Proxy", 4];

_this addWeaponCargo ["ACE_P159_RD54", 4];

_this addWeaponCargo ["ACE_P159_RD90", 4];

_this addWeaponCargo ["ACE_P159_RD99", 4];

_this addWeaponCargo ["ACE_P168_RD90", 4];

_this addWeaponCargo ["ACE_PRC119", 4];

_this addWeaponCargo ["ACE_PRC119_ACU", 4];

_this addWeaponCargo ["ACE_PRC119_MAR", 4];

_this addWeaponCargo ["ACE_Rucksack_EAST", 4];

_this addWeaponCargo ["ACE_Rucksack_MOLLE_ACU", 4];

_this addWeaponCargo ["ACE_Rucksack_MOLLE_ACU_Medic", 4];

_this addWeaponCargo ["ACE_Rucksack_MOLLE_Brown", 4];

_this addWeaponCargo ["ACE_Rucksack_MOLLE_Brown_Medic", 4];

_this addWeaponCargo ["ACE_Rucksack_MOLLE_DMARPAT", 4];

_this addWeaponCargo ["ACE_Rucksack_MOLLE_DMARPAT_Medic", 4];

_this addWeaponCargo ["ACE_Rucksack_MOLLE_Green", 4];

_this addWeaponCargo ["ACE_Rucksack_MOLLE_Green_Medic", 4];

_this addWeaponCargo ["ACE_Rucksack_MOLLE_WMARPAT", 4];

_this addWeaponCargo ["ACE_Rucksack_MOLLE_WMARPAT_Medic", 4];

_this addWeaponCargo ["ACE_Rucksack_MOLLE_Wood", 4];

_this addWeaponCargo ["ACE_Rucksack_RD54", 4];

_this addWeaponCargo ["ACE_Rucksack_RD90", 4];

_this addWeaponCargo ["ACE_Rucksack_RD91", 4];

_this addWeaponCargo ["ACE_Rucksack_RD92", 4];

_this addWeaponCargo ["ACE_Rucksack_RD99", 4];

_this addWeaponCargo ["ACE_Stretcher", 4];

_this addWeaponCargo ["ACE_VTAC_RUSH72", 4];

_this addWeaponCargo ["ACE_VTAC_RUSH72_ACU", 4];

_this addWeaponCargo ["ACE_VTAC_RUSH72_FT_MEDIC", 4];

_this addWeaponCargo ["ACE_VTAC_RUSH72_TT_MEDIC", 4];

// Magazines

// Sniper
// Weapons
_this addWeaponCargo ["ACE_AS50", 4];

_this addWeaponCargo ["ACE_M109", 4];

_this addWeaponCargo ["ACE_M110", 4];

_this addWeaponCargo ["ACE_M110_SD", 4];

_this addWeaponCargo ["ACE_SVD_Bipod", 4];

_this addWeaponCargo ["ACE_TAC50", 4];

_this addWeaponCargo ["ACE_TAC50_SD", 4];

_this addWeaponCargo ["BAF_AS50_scoped", 4];

_this addWeaponCargo ["BAF_AS50_TWS", 4];

_this addWeaponCargo ["BAF_LRR_scoped", 4];

_this addWeaponCargo ["BAF_LRR_scoped_W", 4];

_this addWeaponCargo ["DMR", 4];

_this addWeaponCargo ["huntingrifle", 4];

_this addWeaponCargo ["ksvk", 4];

_this addWeaponCargo ["m107", 4];

_this addWeaponCargo ["m107_TWS_EP1", 4];

_this addWeaponCargo ["M110_NVG_EP1", 4];

_this addWeaponCargo ["M110_TWS_EP1", 4];

_this addWeaponCargo ["M24", 4];

_this addWeaponCargo ["M24_des_EP1", 4];

_this addWeaponCargo ["M40A3", 4];

_this addWeaponCargo ["PMC_AS50_scoped", 4];

_this addWeaponCargo ["PMC_AS50_TWS", 4];

_this addWeaponCargo ["SVD", 4];

_this addWeaponCargo ["SVD_CAMO", 4];

_this addWeaponCargo ["SVD_des_EP1", 4];

_this addWeaponCargo ["SVD_NSPU_EP1", 4];

_this addWeaponCargo ["VSS_vintorez", 4];

// Magazines
_this addMagazineCargo ["5Rnd_127x99_as50", 32];

_this addMagazineCargo ["ACE_5Rnd_127x99_B_TAC50", 32];

_this addMagazineCargo ["ACE_5Rnd_127x99_T_TAC50", 32];

_this addMagazineCargo ["ACE_5Rnd_25x59_HEDP_Barrett", 32];

_this addMagazineCargo ["20Rnd_762x51_B_SCAR", 32];

_this addMagazineCargo ["20Rnd_762x51_SB_SCAR", 32];

_this addMagazineCargo ["ACE_20Rnd_762x51_S_SCAR", 32];

_this addMagazineCargo ["ACE_20Rnd_762x51_SB_M110", 32];

_this addMagazineCargo ["ACE_20Rnd_762x51_SB_S_SCAR", 32];

_this addMagazineCargo ["ACE_20Rnd_762x51_SB_SCAR", 32];

_this addMagazineCargo ["ACE_20Rnd_762x51_T_M110", 32];

_this addMagazineCargo ["10Rnd_762x54_SVD", 32];

_this addMagazineCargo ["ACE_10Rnd_762x54_T_SVD", 32];

_this addMagazineCargo ["5Rnd_86x70_L115A1", 32];

_this addMagazineCargo ["ACE_5Rnd_86x70_T_L115A1", 32];

_this addMagazineCargo ["20Rnd_762x51_DMR", 32];

_this addMagazineCargo ["ACE_20Rnd_762x51_B_M14", 32];

_this addMagazineCargo ["ACE_20Rnd_762x51_T_DMR", 32];

_this addMagazineCargo ["5x_22_LR_17_HMR", 32];

_this addMagazineCargo ["5Rnd_127x108_KSVK", 32];

_this addMagazineCargo ["ACE_5Rnd_127x108_T_KSVK", 32];

_this addMagazineCargo ["10Rnd_127x99_m107", 32];

_this addMagazineCargo ["ACE_10Rnd_127x99_Raufoss_m107", 32];

_this addMagazineCargo ["ACE_10Rnd_127x99_T_m107", 32];

_this addMagazineCargo ["5Rnd_762x51_M24", 32];

_this addMagazineCargo ["ACE_5Rnd_762x51_T_M24", 32];

_this addMagazineCargo ["10Rnd_9x39_SP5_VSS", 32];

_this addMagazineCargo ["20Rnd_9x39_SP5_VSS", 32];

// UNKNOWN
// Weapons
// Magazines
_this addMagazineCargo ["PipeBomb", 32];

_this addMagazineCargo ["Mine", 32];

_this addMagazineCargo ["MineE", 32];

_this addMagazineCargo ["ACE_Bandage", 32];

_this addMagazineCargo ["ACE_Bodybag", 32];

_this addMagazineCargo ["ACE_Epinephrine", 32];

_this addMagazineCargo ["ACE_LargeBandage", 32];

_this addMagazineCargo ["ACE_Medkit", 32];

_this addMagazineCargo ["ACE_Morphine", 32];

_this addMagazineCargo ["ACE_BBetty_M", 32];

_this addMagazineCargo ["ACE_C4_M", 32];

_this addMagazineCargo ["ACE_Claymore_M", 32];

_this addMagazineCargo ["ACE_DM31_M", 32];

_this addMagazineCargo ["ACE_M2SLAM_M", 32];

_this addMagazineCargo ["ACE_M4SLAM_M", 32];

_this addMagazineCargo ["ACE_MON50_M", 32];

_this addMagazineCargo ["ACE_OSM4_M", 32];

_this addMagazineCargo ["ACE_Pomz_M", 32];

_this addMagazineCargo ["ACE_TripFlare_M", 32];

_this addMagazineCargo ["ACE_SandBag_Magazine", 32];

_this addMagazineCargo ["ACE_TOW_CSWDM", 32];

_this addMagazineCargo ["ACE_Stinger_CSWDM", 32];

_this addMagazineCargo ["ACE_KORD_CSWDM", 32];

_this addMagazineCargo ["ACE_DSHKM_CSWDM", 32];

_this addMagazineCargo ["ACE_M2_CSWDM", 32];

_this addMagazineCargo ["ACE_MK19_CSWDM", 32];

_this addMagazineCargo ["ACE_AGS30_CSWDM", 32];

_this addMagazineCargo ["ACE_Konkurs_CSWDM", 32];

_this addMagazineCargo ["ACE_KonkursM_CSWDM", 32];

_this addMagazineCargo ["ACE_M252HE_CSWDM", 32];

_this addMagazineCargo ["ACE_M252WP_CSWDM", 32];

_this addMagazineCargo ["ACE_M252IL_CSWDM", 32];

_this addMagazineCargo ["ACE_M224HE_CSWDM", 32];

_this addMagazineCargo ["ACE_M224WP_CSWDM", 32];

_this addMagazineCargo ["ACE_M224IL_CSWDM", 32];

_this addMagazineCargo ["ACE_2B14HE_CSWDM", 32];

_this addMagazineCargo ["ACE_2B14WP_CSWDM", 32];

_this addMagazineCargo ["ACE_2B14IL_CSWDM", 32];

_this addMagazineCargo ["ACE_Rope_M_120", 32];

_this addMagazineCargo ["ACE_Rope_M_50", 32];

_this addMagazineCargo ["ACE_Rope_M_60", 32];

_this addMagazineCargo ["ACE_Rope_M_90", 32];

_this addMagazineCargo ["ACE_VS17Panel_M", 32];

_this addMagazineCargo ["ACE_Rope_M5", 32];

_this addMagazineCargo ["BAF_ied_v1", 32];

_this addMagazineCargo ["BAF_ied_v2", 32];

_this addMagazineCargo ["BAF_ied_v3", 32];

_this addMagazineCargo ["BAF_ied_v4", 32];

_this addMagazineCargo ["PMC_ied_v1", 32];

_this addMagazineCargo ["PMC_ied_v2", 32];

_this addMagazineCargo ["PMC_ied_v3", 32];

_this addMagazineCargo ["PMC_ied_v4", 32];

_this addMagazineCargo ["HandGrenade_Stone", 32];

_this addMagazineCargo ["BAF_L109A1_HE", 32];

_this addMagazineCargo ["HandGrenade", 32];

_this addMagazineCargo ["HandGrenade_East", 32];

_this addMagazineCargo ["HandGrenade_West", 32];

_this addMagazineCargo ["SmokeShell", 32];

_this addMagazineCargo ["SmokeShellBlue", 32];

_this addMagazineCargo ["SmokeShellGreen", 32];

_this addMagazineCargo ["SmokeShellOrange", 32];

_this addMagazineCargo ["SmokeShellPurple", 32];

_this addMagazineCargo ["SmokeShellRed", 32];

_this addMagazineCargo ["SmokeShellYellow", 32];

_this addMagazineCargo ["IR_Strobe_Marker", 32];

_this addMagazineCargo ["IR_Strobe_Target", 32];

_this addMagazineCargo ["ACE_RDG2", 32];

_this addMagazineCargo ["ACE_RDGM", 32];

_this addMagazineCargo ["ACE_DM25", 32];

_this addMagazineCargo ["ACE_DM31", 32];

_this addMagazineCargo ["ACE_DM32", 32];

_this addMagazineCargo ["ACE_DM33", 32];

_this addMagazineCargo ["ACE_DM34", 32];

_this addMagazineCargo ["ACE_DM36", 32];

_this addMagazineCargo ["ACE_DM51", 32];

_this addMagazineCargo ["ACE_DM51A1", 32];

_this addMagazineCargo ["ACE_M86PDM", 32];

_this addMagazineCargo ["ACE_Flashbang", 32];

_this addMagazineCargo ["ACE_M84", 32];

_this addMagazineCargo ["ACE_TORCH_C", 32];

_this addMagazineCargo ["ACE_M7A3", 32];

_this addMagazineCargo ["ACE_RG60A", 32];

_this addMagazineCargo ["ACE_M15", 32];

_this addMagazineCargo ["ACE_M34", 32];

_this addMagazineCargo ["ACE_ANM14", 32];

_this addMagazineCargo ["ACE_Knicklicht_B", 32];

_this addMagazineCargo ["ACE_Knicklicht_G", 32];

_this addMagazineCargo ["ACE_Knicklicht_IR", 32];

_this addMagazineCargo ["ACE_Knicklicht_R", 32];

_this addMagazineCargo ["ACE_Knicklicht_W", 32];

_this addMagazineCargo ["ACE_Knicklicht_Y", 32];

sleep 1800;
};

Edited by zuff

Share this post


Link to post
Share on other sites
...

Known issue to much work to redo it as all of the spawn request are running on the server I didn't find any working method doing it.

...

yo m8, I currently dont have a lot of time but I might have a solution for that

If you want we can make a deal:

you find me that damn single bug in the undercover agents so they can be implemented

In exchange I'll write you the deletable 3d editor stuff :p :p

Share this post


Link to post
Share on other sites

Shay I had a problem when running a mission with my group last night with Mobile Respawns.

I created a regular "Spawn West" respawn then I created a West Mobile respawn which was a LAV (HQ). Sometimes people would spawn at the LAV other times people would spawn at the original spawn. What causes this?

EDIT: Also, is there a "Garbage Collector" module built into the MCC? I noticed performance drops after running a few missions. If there isn't, would it be possible to add one?

Edited by zuff

Share this post


Link to post
Share on other sites

Would first like to say thank you all for such an excellent program! I am new to editing/mission making and would never have tried it without your tools, so thank you for that. Secondly, I would like to ask you all if it is possible to setup an Evac as a triggered event. Currently when I try and set an evac as a trigger, during the capture the scripting simply sends the evac out and does not capture it as part of the trigger. I would like to be able to utilize the evac as an ingress/egress tool for missions as my current unit (7-75 Rangers) does not have staffing for pilots atm. I would love to be able to make a triggerable DZ and have a helo come pick us up or vice/versa drop us off at a designated LZ without me doing it throught MCC while in mission. Is this already possible and I am missing something or is this something that could possibly be added in the future. Again thank you all for the support and for bringing game fans like me into the fold!

Share this post


Link to post
Share on other sites
Would first like to say thank you all for such an excellent program! I am new to editing/mission making and would never have tried it without your tools, so thank you for that. Secondly, I would like to ask you all if it is possible to setup an Evac as a triggered event. Currently when I try and set an evac as a trigger, during the capture the scripting simply sends the evac out and does not capture it as part of the trigger. I would like to be able to utilize the evac as an ingress/egress tool for missions as my current unit (7-75 Rangers) does not have staffing for pilots atm. I would love to be able to make a triggerable DZ and have a helo come pick us up or vice/versa drop us off at a designated LZ without me doing it throught MCC while in mission. Is this already possible and I am missing something or is this something that could possibly be added in the future. Again thank you all for the support and for bringing game fans like me into the fold!

Good point there - would be nice

Edited by Falke88

Share this post


Link to post
Share on other sites
Good point there - but be nice

I don't see how he was being impolite there? He boasted on the mission's success and requested a feature. No harm done.

On another note, I've been making a video tutorial for MCC for a group I play with:

ZSefB9YpaHw

Let me know what you think.

Also, I noticed when deploying a MHQ for the first time a spawn flag is placed but it does not become a respawn point. Is the MHQ deployed supposed to be a respawn point by default? Also, can you sell buildings made? I know you can't unpack the MHQ but it would be great if you could sell everything and repack the MHQ and move up the base.

Keep up the great work guys!

Share this post


Link to post
Share on other sites
I don't see how he was being impolite there? He boasted on the mission's success and requested a feature. No harm done.

haha sorry I meant "would be nice" not "but be nice" :D

Share this post


Link to post
Share on other sites
haha sorry I meant "would be nice" not "but be nice" :D

Lol, no worries! Been trying to figure out how to make that Air transport work. My thoughts are if the Evac is simply spawned at a location during mission loadup, all that would be needed to be added would be the ability to set a trigger for West/Team/Present to move the evac to waypoint. Perhaps another trigger for West/Not Present to return Evac to LHA or another Waypoint. So really we just need the trigger to recognize the the EVAC Waypoint 1/Waypoint 3/Return to LHA buttons. What do you think?

---------- Post added at 09:12 AM ---------- Previous post was at 09:11 AM ----------

Zuff, cant wait to get off my work computer and look at your video :) There are not many out there to help other than the 4 tutorial videos which are great but very broad and fast as heck!

---------- Post added at 09:16 AM ---------- Previous post was at 09:12 AM ----------

Two more questions while i am rambling. SFHalo spawn point not saving once mission is saved and reloaded, that an issue for anyone else? And DOC in the 3D editor, trying to rotate a "small base" using DOC in the 3D editor I never see the model so I cant rotate it. If I press spacebar it says item placed, but nothing comes up. If I place a DOC "small base" through MCC with using 3D editor, it spawns but randomly facing any direction and typicaly at the edge of the x,y coordinates so its hard to precisely place it. Tried mouse scroll for a minute and I dont think it burried in terrain, any thoughts?!

Share this post


Link to post
Share on other sites
Shay I had a problem when running a mission with my group last night with Mobile Respawns.

I created a regular "Spawn West" respawn then I created a West Mobile respawn which was a LAV (HQ). Sometimes people would spawn at the LAV other times people would spawn at the original spawn. What causes this?

EDIT: Also, is there a "Garbage Collector" module built into the MCC? I noticed performance drops after running a few missions. If there isn't, would it be possible to add one?

Fixed.

Would first like to say thank you all for such an excellent program! I am new to editing/mission making and would never have tried it without your tools, so thank you for that. Secondly, I would like to ask you all if it is possible to setup an Evac as a triggered event. Currently when I try and set an evac as a trigger, during the capture the scripting simply sends the evac out and does not capture it as part of the trigger. I would like to be able to utilize the evac as an ingress/egress tool for missions as my current unit (7-75 Rangers) does not have staffing for pilots atm. I would love to be able to make a triggerable DZ and have a helo come pick us up or vice/versa drop us off at a designated LZ without me doing it throught MCC while in mission. Is this already possible and I am missing something or is this something that could possibly be added in the future. Again thank you all for the support and for bringing game fans like me into the fold!

Done, wait for next release.

On another note, I've been making a video tutorial for MCC for a group I play

Nice vid, I liked it.

Zuff, cant wait to get off my work computer and look at your video :) There are not many out there to help other than the 4 tutorial videos which are great but very broad and fast as heck!

What about the 50+ paged manual?!

DOC dosen't work in 3d it ain't a bug just limitations. SF drop point isn't safe as it it time sensetive. Drop should be done when the mission is ready.

Edited by shay_gman

Share this post


Link to post
Share on other sites
What about the 50+ paged manual?!

I must say the PDF is a great source for what you need to know. I'm going to make another video later this month that covers how to manage a session in progress. Essentially combining all of the features in MCC to create the most unique experience for even veteran Arma players.

Thanks for your comment on the video and I look forward to the next release!

Edited by zuff

Share this post


Link to post
Share on other sites

Shay, thanks for the response. I appreciate all the work you have put into this and I am happy to hear of a new release. I probably should have been more specific on the "lack of help" comment as I ment no disrespect. The 50+ page manual is great for the basics, i was refering to the more technical side of things like creating triggers and such. What the different trigger options like Team, Leader, Group, Foxtrot, West D, East D, etc. all mean. Again, great job!!!

Share this post


Link to post
Share on other sites

Is it just me, or is also someone else having problems with calling in a vehicle drop? After the update, i tried to call in: 2 ATV's from the C-130 (Obvious) and the plane came.. But no drop, i tried like 5-6 times and nothing dropped.. The plane came like just for show off :P

Share this post


Link to post
Share on other sites

I've had no issue with that SP33Dkt. I have not done an air drop with those specific vehicles tho, only US Army Strykers (SLAT) and ammo boxes.

Share this post


Link to post
Share on other sites
Is it just me, or is also someone else having problems with calling in a vehicle drop? After the update, i tried to call in: 2 ATV's from the C-130 (Obvious) and the plane came.. But no drop, i tried like 5-6 times and nothing dropped.. The plane came like just for show off :P

Maybe you are calling for a vehicle that is mod related that isn't runinig on the server?

Share this post


Link to post
Share on other sites

For some reason I am not able to save progress anymore? Loading from previous save and editing then saving again is not working? I have cleared my clipboard and restarted windows just to make sure, but any changes i make are not being saved. Anyone have any ideas or similar experience?

---------- Post added at 02:33 PM ---------- Previous post was at 02:26 PM ----------

After looking at the text saved in notepad, it seems all the changes have been saved but are not being loaded when in game?

---------- Post added at 02:39 PM ---------- Previous post was at 02:33 PM ----------

Just did a fresh install to verify and no luck. It is definately saving the changes, almost 15 items placed and a trigger zone, but when I restart the mission and try to load that save, it only loads up to a certain point then stops. Tried going back to a previous save and adding the new content, but same thing happens.

Share this post


Link to post
Share on other sites
Guest
This topic is now closed to further replies.
Sign in to follow this  

×