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"};
|
2021-10-15 18:48:33 +00:00
|
|
|
weapons[] = {};
|
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);
|
2023-08-16 12:16:44 +00:00
|
|
|
authors[] = {"KoffeinFlummi", "BaerMitUmlaut", "Pokertour", "veteran29"};
|
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
|
|
|
|