mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
unified ACE_Attachable config entry now ACE_Attachable its a string and hold the effect for the item
This commit is contained in:
@ -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";
|
||||
};
|
||||
};
|
||||
|
Reference in New Issue
Block a user