2015-03-29 13:20:39 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2015-08-10 21:07:47 +00:00
|
|
|
requiredAddons[] = {"ace_interaction"};
|
2016-05-31 19:14:43 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
authors[] = {"commy2", "Glowbal"};
|
2016-06-01 21:45:51 +00:00
|
|
|
url = ECSTRING(main,URL);
|
2015-03-29 13:20:39 +00:00
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-08-16 20:21:39 +00:00
|
|
|
#include "ACE_Settings.hpp"
|
2015-03-29 13:20:39 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
2015-08-10 21:07:47 +00:00
|
|
|
#include "CfgVehicles.hpp"
|
2015-08-15 08:22:44 +00:00
|
|
|
#include "menu.hpp"
|
2016-05-24 13:13:11 +00:00
|
|
|
|
|
|
|
class ACE_newEvents {
|
|
|
|
LoadCargo = "ace_loadCargo";
|
|
|
|
cargoUnloaded = "ace_cargoUnloaded";
|
|
|
|
cargoLoaded = "ace_cargoLoaded";
|
|
|
|
AddCargoByClass = "ace_addCargoByClass";
|
2016-05-24 16:58:27 +00:00
|
|
|
ServerUnloadCargo = QGVAR(serverUnload);
|
2016-05-24 13:13:11 +00:00
|
|
|
UnloadCargo = "ace_unloadCargo";
|
|
|
|
cargoAddedByClass = "ace_cargoAddedByClass";
|
2016-05-24 14:06:17 +00:00
|
|
|
};
|