2015-01-11 19:50:29 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-01-11 19:32:51 +00:00
|
|
|
class CfgPatches {
|
2015-05-09 20:25:48 +00:00
|
|
|
class ADDON {
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_interact_menu"};
|
2015-12-24 02:27:55 +00:00
|
|
|
author[] = {"commy2", "KoffeinFlummi", "esteldunedain", "bux578", "dixon13"};
|
2015-05-09 20:25:48 +00:00
|
|
|
authorUrl = "https://github.com/commy2/";
|
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
2015-01-11 19:32:51 +00:00
|
|
|
};
|
|
|
|
|
2015-01-11 19:50:29 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
2015-01-14 04:47:39 +00:00
|
|
|
#include "CfgVehicles.hpp"
|
2015-09-28 12:35:05 +00:00
|
|
|
#include "RscTitles.hpp"
|
2015-05-14 18:46:35 +00:00
|
|
|
#include "ACE_Settings.hpp"
|
2015-06-06 16:33:13 +00:00
|
|
|
#include "ACE_ZeusActions.hpp"
|
2016-05-24 13:13:11 +00:00
|
|
|
|
|
|
|
class ACE_newEvents {
|
|
|
|
getDown = "ace_getDown";
|
|
|
|
pardon = "ace_pardon";
|
|
|
|
tapShoulder = "ace_tapShoulder";
|
|
|
|
sendAway = "ace_sendAway";
|
|
|
|
setVelocity = "ace_setVelocity";
|
|
|
|
displayTextStructured = "ace_displayTextStructured";
|
2016-05-24 14:06:17 +00:00
|
|
|
CBA_teamColorChanged = "ace_CBA_teamColorChanged";
|
2016-05-24 13:13:11 +00:00
|
|
|
selectLeader = "ace_selectLeader";
|
2016-05-24 14:06:17 +00:00
|
|
|
};
|