2015-01-12 09:48:26 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
2015-04-06 20:20:11 +00:00
|
|
|
class ADDON {
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {"ACE_Clacker", "ACE_DefusalKit", "ACE_M26_Clacker", "ACE_DeadManSwitch", "ACE_Cellphone"};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_interaction"};
|
|
|
|
author[] = {"Garth 'L-H' de Wet"};
|
|
|
|
authorUrl = "http://garth.snakebiteink.co.za/";
|
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
2015-01-12 09:48:26 +00:00
|
|
|
};
|
|
|
|
|
2015-07-14 05:24:55 +00:00
|
|
|
#include "ACE_Settings.hpp"
|
|
|
|
|
2015-01-12 09:48:26 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
|
|
|
|
#include "CfgAmmo.hpp"
|
|
|
|
#include "CfgMagazines.hpp"
|
|
|
|
#include "CfgWeapons.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
2015-04-10 15:09:48 +00:00
|
|
|
|
|
|
|
#include "ACE_Triggers.hpp"
|
2015-01-12 09:48:26 +00:00
|
|
|
#include "ExplosivesUI.hpp"
|
2015-07-14 05:24:55 +00:00
|
|
|
#include "GUI_VirtualAmmo.hpp"
|
2015-01-12 09:48:26 +00:00
|
|
|
|
|
|
|
class CfgActions {
|
2015-04-06 20:20:11 +00:00
|
|
|
class None;
|
|
|
|
class Deactivate:None {
|
|
|
|
show = 0;
|
|
|
|
};
|
|
|
|
class DeactivateMine:None {
|
|
|
|
show = 0;
|
|
|
|
};
|
2015-01-12 09:48:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class CfgMineTriggers {
|
2015-04-06 20:20:11 +00:00
|
|
|
class RangeTrigger;
|
|
|
|
class MagneticTrigger: RangeTrigger {
|
|
|
|
mineMagnetic = 1;
|
|
|
|
mineTriggerRange = 1;
|
|
|
|
};
|
2015-01-12 09:48:26 +00:00
|
|
|
};
|