2015-05-09 19:24:39 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
2015-05-18 19:43:02 +00:00
|
|
|
units[] = {};
|
2015-05-09 19:24:39 +00:00
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2015-05-30 05:31:07 +00:00
|
|
|
requiredAddons[] = {"ace_common"};
|
2015-05-09 19:24:39 +00:00
|
|
|
author[] = {"SilentSpike"};
|
|
|
|
authorUrl = "https://github.com/SilentSpike";
|
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
2015-05-18 19:43:02 +00:00
|
|
|
// Use additional cfgPatches to contextually remove modules from zeus
|
|
|
|
class GVAR(captives): ADDON {
|
|
|
|
units[] = {
|
2015-05-19 11:23:18 +00:00
|
|
|
QGVAR(moduleCaptive),
|
2015-05-18 19:43:02 +00:00
|
|
|
QGVAR(moduleSurrender)
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class GVAR(medical): ADDON {
|
|
|
|
units[] = {
|
2015-08-15 16:25:48 +00:00
|
|
|
QGVAR(moduleUnconscious),
|
|
|
|
QGVAR(moduleSetMedic),
|
|
|
|
QGVAR(moduleSetMedicalVehicle),
|
|
|
|
QGVAR(moduleSetMedicalFacility)
|
2015-05-18 19:43:02 +00:00
|
|
|
};
|
|
|
|
};
|
2015-05-09 19:24:39 +00:00
|
|
|
};
|
|
|
|
|
2015-05-18 21:50:36 +00:00
|
|
|
class ACE_Curator {
|
|
|
|
GVAR(captives) = "ace_captives";
|
|
|
|
GVAR(medical) = "ace_medical";
|
|
|
|
};
|
|
|
|
|
2015-05-09 19:24:39 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
2015-05-11 15:30:46 +00:00
|
|
|
#include "CfgVehicles.hpp"
|
2015-05-11 17:06:01 +00:00
|
|
|
#include "ACE_Settings.hpp"
|