unified ACE_Attachable config entry now ACE_Attachable its a string and hold the effect for the item

This commit is contained in:
Kavinsky
2015-04-10 04:36:28 +02:00
parent b49fec58e6
commit a118cae13d
4 changed files with 13 additions and 16 deletions

View File

@ -2,33 +2,31 @@
class CfgMagazines {
class CA_Magazine;
class B_IR_Grenade: CA_Magazine {
ACE_Attachable = 1;
ACE_attachable_effect = "B_IRStrobe";
ACE_Attachable = "B_IRStrobe";
};
class O_IR_Grenade: B_IR_Grenade {
ACE_attachable_effect = "O_IRStrobe";
ACE_Attachable = "O_IRStrobe";
};
class I_IR_Grenade: B_IR_Grenade {
ACE_attachable_effect = "I_IRStrobe";
ACE_Attachable = "I_IRStrobe";
};
class SmokeShell;
class Chemlight_green: SmokeShell {
ACE_Attachable = 1;
ACE_attachable_effect = "Chemlight_green";
ACE_Attachable = "Chemlight_green";
};
class Chemlight_blue: Chemlight_green {
ACE_attachable_effect = "Chemlight_blue";
ACE_Attachable = "Chemlight_blue";
};
class Chemlight_red: Chemlight_green {
ACE_attachable_effect = "Chemlight_red";
ACE_Attachable = "Chemlight_red";
};
class Chemlight_yellow: Chemlight_green {
ACE_attachable_effect = "Chemlight_yellow";
ACE_Attachable = "Chemlight_yellow";
};
};