2015-09-16 21:01:01 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
2016-06-19 07:12:25 +00:00
|
|
|
name = COMPONENT_NAME;
|
2021-03-17 20:48:47 +00:00
|
|
|
units[] = {"ACE_fastropingSupplyCrate"};
|
|
|
|
weapons[] = {"ACE_rope12","ACE_rope15","ACE_rope18","ACE_rope27","ACE_rope36"};
|
2015-09-16 21:01:01 +00:00
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2021-10-12 09:33:05 +00:00
|
|
|
requiredAddons[] = {"ace_interaction","ace_logistics_rope"};
|
2016-05-31 19:14:43 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
2019-01-12 03:05:25 +00:00
|
|
|
authors[] = {"KoffeinFlummi", "BaerMitUmlaut", "Pokertour"};
|
2016-06-01 21:45:51 +00:00
|
|
|
url = ECSTRING(main,URL);
|
2015-09-16 21:01:01 +00:00
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
#include "CfgMoves.hpp"
|
2016-05-10 15:09:52 +00:00
|
|
|
#include "CfgSounds.hpp"
|
2015-09-16 21:01:01 +00:00
|
|
|
#include "CfgVehicles.hpp"
|
2016-03-05 19:25:35 +00:00
|
|
|
#include "CfgWaypoints.hpp"
|
2021-10-12 09:33:05 +00:00
|
|
|
|