ACE3/addons/flashlights/CfgWeapons.hpp

57 lines
1.9 KiB
C++
Raw Normal View History

2015-08-11 17:59:50 +00:00
class CfgWeapons {
class ACE_ItemCore;
class CBA_MiscItem_ItemInfo;
2015-08-11 17:59:50 +00:00
2016-06-12 22:33:37 +00:00
class ACE_Flashlight_MX991: ACE_ItemCore {
author = ECSTRING(common,ACETeam);
2015-08-11 17:59:50 +00:00
displayName = CSTRING(MX991_DisplayName);
descriptionShort = CSTRING(MX991_Description);
2019-11-21 15:55:27 +00:00
model = QPATHTOF(data\mx_991.p3d);
picture = QPATHTOF(UI\mx_991_ca.paa);
2015-08-11 17:59:50 +00:00
scope = 2;
class ItemInfo: CBA_MiscItem_ItemInfo {
2015-08-11 17:59:50 +00:00
mass = 1;
2016-06-15 23:31:05 +00:00
class FlashLight {
ACE_Flashlight_Colour = "red";
ACE_Flashlight_Beam = QPATHTOF(UI\Flashlight_beam_red_ca.paa);
ACE_Flashlight_Size = 1.75;
2015-08-11 17:59:50 +00:00
};
};
};
2016-06-12 22:33:37 +00:00
class ACE_Flashlight_KSF1: ACE_ItemCore {
author = ECSTRING(common,ACETeam);
2015-08-11 17:59:50 +00:00
displayName = CSTRING(KSF1_DisplayName);
descriptionShort = CSTRING(KSF1_Description);
2019-11-21 15:05:36 +00:00
model = QPATHTOF(data\ksf_1.p3d);
picture = QPATHTOF(UI\ksf_1_ca.paa);
2015-08-11 17:59:50 +00:00
scope = 2;
class ItemInfo: CBA_MiscItem_ItemInfo {
2015-08-11 17:59:50 +00:00
mass = 1;
2016-06-15 23:31:05 +00:00
class FlashLight {
ACE_Flashlight_Colour = "red";
ACE_Flashlight_Beam = QPATHTOF(UI\Flashlight_beam_red_ca.paa);
ACE_Flashlight_Size = 1.5;
2015-08-11 17:59:50 +00:00
};
};
};
2016-06-12 22:33:37 +00:00
class ACE_Flashlight_XL50: ACE_ItemCore {
author = ECSTRING(common,ACETeam);
2015-08-11 17:59:50 +00:00
displayName = CSTRING(XL50_DisplayName);
descriptionShort = CSTRING(XL50_Description);
2019-11-21 15:09:28 +00:00
model = QPATHTOF(data\maglite_xl50.p3d);
picture = QPATHTOF(UI\maglite_xl50_ca.paa);
2015-08-11 17:59:50 +00:00
scope = 2;
class ItemInfo: CBA_MiscItem_ItemInfo {
2015-08-11 17:59:50 +00:00
mass = 1;
2016-06-15 23:31:05 +00:00
class FlashLight {
ACE_Flashlight_Colour = "white";
ACE_Flashlight_Beam = QPATHTOF(UI\Flashlight_beam_white_ca.paa);
ACE_Flashlight_Size = 2.15;
2015-08-11 17:59:50 +00:00
};
};
};
};