compiling, still need to test

This commit is contained in:
PabstMirror 2015-01-13 20:07:31 -06:00
parent bf88af1579
commit a78f508551
4 changed files with 17 additions and 5 deletions

View File

@ -1,14 +1,14 @@
class CfgSounds { class CfgSounds {
class ACE_EarRinging_Weak { class ACE_EarRinging_Weak {
sound[] = {QUOTE(PATHOF(sounds\ACE_earringing_weak.wav),8,1.7}; sound[] = {QUOTE(PATHOF(sounds\ACE_earringing_weak.wav),8,1.7)};
titles[] = {}; titles[] = {};
}; };
class ACE_EarRinging_Medium { class ACE_EarRinging_Medium {
sound[] = {QUOTE(PATHOF(sounds\ACE_earringing_medium.wav),8,1.7}; sound[] = {QUOTE(PATHOF(sounds\ACE_earringing_medium.wav),8,1.7)};
titles[] = {}; titles[] = {};
}; };
class ACE_EarRinging_Heavy { class ACE_EarRinging_Heavy {
sound[] = {QUOTE(PATHOF(sounds\ACE_earringing_heavy.wav),8,1.7}; sound[] = {QUOTE(PATHOF(sounds\ACE_earringing_heavy.wav),8,1.7)};
titles[] = {}; titles[] = {};
}; };
}; };

View File

@ -5,8 +5,8 @@ class CfgWeapons {
class ACE_EarBuds: ACE_ItemCore { class ACE_EarBuds: ACE_ItemCore {
displayName = "$STR_ACE_Hearing_Earbuds_Name"; displayName = "$STR_ACE_Hearing_Earbuds_Name";
descriptionShort = "$STR_ACE_Hearing_Earbuds_Description"; descriptionShort = "$STR_ACE_Hearing_Earbuds_Description";
model = QUOTE(PATHOF(ACE_earplugs.p3d); model = QUOTE(PATHOF(ACE_earplugs.p3d));
picture = QUOTE(PATHOF(UI\ACE_earplugs_x_ca.paa); picture = QUOTE(PATHOF(UI\ACE_earplugs_x_ca.paa));
scope = 2; scope = 2;
class ItemInfo: InventoryItem_Base_F { class ItemInfo: InventoryItem_Base_F {
mass = 1; mass = 1;

Binary file not shown.

View File

@ -0,0 +1,12 @@
#define COMPONENT hearing
#include "\z\ace\Addons\main\script_mod.hpp"
#ifdef DEBUG_ENABLED_ATTACH
#define DEBUG_MODE_FULL
#endif
#ifdef DEBUG_SETTINGS_ATTACH
#define DEBUG_SETTINGS DEBUG_SETTINGS_ATTACH
#endif
#include "\z\ace\Addons\main\script_macros.hpp"