2015-06-17 17:17:57 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
|
|
|
units[] = {"ACE_envelope_small","ACE_envelope_big"};
|
2016-01-23 23:45:59 +00:00
|
|
|
weapons[] = {"ACE_EntrenchingTool"};
|
2015-06-17 17:17:57 +00:00
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_interaction"};
|
2016-05-31 19:14:43 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
authors[] = {"Grey", "esteldunedain"};
|
2016-06-01 21:45:51 +00:00
|
|
|
url = ECSTRING(main,URL);
|
2015-06-17 17:17:57 +00:00
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
2016-03-21 17:25:38 +00:00
|
|
|
|
2016-01-23 23:45:59 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
2015-11-07 06:16:08 +00:00
|
|
|
#include "CfgVehicles.hpp"
|
2016-01-23 23:45:59 +00:00
|
|
|
#include "CfgWeapons.hpp"
|
2016-05-24 13:13:11 +00:00
|
|
|
|
|
|
|
class ACE_newEvents {
|
|
|
|
medical_onUnconscious = "ace_medical_onUnconscious";
|
|
|
|
playerVehicleChanged = "ace_playerVehicleChanged";
|
|
|
|
playerInventoryChanged = "ace_playerInventoryChanged";
|
|
|
|
playerChanged = "ace_playerChanged";
|
|
|
|
interactMenuOpened = "ace_interactMenuOpened";
|
|
|
|
enableSimulationGlobal = "ace_enableSimulationGlobal";
|
2016-05-24 14:06:17 +00:00
|
|
|
};
|