2015-01-12 09:48:26 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
|
|
|
units[] = {};
|
2015-02-04 00:15:31 +00:00
|
|
|
weapons[] = {"ACE_Clacker", "ACE_DefusalKit", "ACE_M26_Clacker", "ACE_DeadManSwitch", "ACE_Cellphone"};
|
2015-01-18 07:32:07 +00:00
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_common", "ace_interaction"};
|
2015-01-12 09:48:26 +00:00
|
|
|
author[] = {"Garth 'L-H' de Wet"};
|
|
|
|
authorUrl = "http://garth.snakebiteink.co.za/";
|
2015-01-18 07:32:07 +00:00
|
|
|
VERSION_CONFIG;
|
2015-01-12 09:48:26 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
|
|
|
|
#include "CfgAmmo.hpp"
|
|
|
|
#include "CfgMagazines.hpp"
|
|
|
|
#include "CfgWeapons.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
2015-01-15 19:57:27 +00:00
|
|
|
#include "CfgACE_Triggers.hpp"
|
2015-01-12 09:48:26 +00:00
|
|
|
#include "ExplosivesUI.hpp"
|
|
|
|
|
|
|
|
class CfgActions {
|
|
|
|
class None;
|
|
|
|
class Deactivate:None {
|
|
|
|
show = 0;
|
|
|
|
};
|
|
|
|
class DeactivateMine:None {
|
|
|
|
show = 0;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class CfgMineTriggers {
|
|
|
|
class RangeTrigger;
|
|
|
|
class MagneticTrigger: RangeTrigger {
|
|
|
|
mineMagnetic = 1;
|
|
|
|
mineTriggerRange = 1;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-01-30 22:06:25 +00:00
|
|
|
class ACE_Settings {
|
|
|
|
class GVAR(RequireSpecialist) {
|
|
|
|
value = 0;
|
|
|
|
typeName = "BOOL";
|
|
|
|
};
|
|
|
|
class GVAR(PunishNonSpecialists) {
|
|
|
|
value = 1;
|
|
|
|
typeName = "BOOL";
|
|
|
|
};
|
2015-01-12 09:48:26 +00:00
|
|
|
};
|