Skip to content

Instantly share code, notes, and snippets.

@Blutze
Created April 29, 2019 07:59
Show Gist options
  • Save Blutze/5e3cb8083cda1e7b516a4215d66bc5db to your computer and use it in GitHub Desktop.
Save Blutze/5e3cb8083cda1e7b516a4215d66bc5db to your computer and use it in GitHub Desktop.
trying to not have six attachment slots
class CfgPatches {
class FixingFoxes
{
units[] = {};
weapons[] = {"hlc_rifle_g36kv_charmless"};
magazines[] = {};
requiredVersion = 1;
requiredAddons[] = {
"hlcweapons_G36"
};
projectName = "BlBalancing";
author = "Blutze";
};
};
class CfgWeapons {
class hlc_rifle_g36ke1;
class hlc_rifle_G36KV : hlc_rifle_g36ke1 {
class WeaponSlotsInfo;
};
class hlc_rifle_G36KV_charmless : hlc_rifle_G36KV {
baseWeapon = "hlc_rifle_G36KV_charmless";
displayName = "HK G36KV (no charms)";
class WeaponSlotsInfo : WeaponSlotsInfo {
delete CharmSlot;
};
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment