ACE3/addons/explosives/config.cpp

46 lines
1.2 KiB
C++
Raw Normal View History

#include "script_component.hpp"
class CfgPatches {
class ADDON {
2016-01-13 14:40:39 +00:00
units[] = {"ACE_ModuleMine_SLAMBottomMine", "ACE_ModuleExplosive_IEDUrbanBig_Range", "ACE_ModuleExplosive_IEDLandBig_Range", "ACE_ModuleExplosive_IEDUrbanSmall_Range", "ACE_ModuleExplosive_IEDLandSmall_Range"};
weapons[] = {"ACE_Clacker", "ACE_DefusalKit", "ACE_M26_Clacker", "ACE_DeadManSwitch", "ACE_Cellphone"};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_interaction"};
author = ECSTRING(common,ACETeam);
authors[] = {"Garth 'L-H' de Wet"};
url = ECSTRING(main,URL);
VERSION_CONFIG;
};
};
2015-07-14 05:24:55 +00:00
#include "ACE_Settings.hpp"
#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"
#include "ExplosivesUI.hpp"
2015-07-14 05:24:55 +00:00
#include "GUI_VirtualAmmo.hpp"
class CfgActions {
class None;
class Deactivate:None {
show = 0;
};
class DeactivateMine:None {
show = 0;
};
};
class CfgMineTriggers {
class RangeTrigger;
2016-01-12 22:16:49 +00:00
class ACE_MagneticTrigger: RangeTrigger {
mineMagnetic = 1;
mineTriggerRange = 1;
};
};