2015-01-12 09:20:50 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-01-12 09:07:03 +00:00
|
|
|
class CfgPatches {
|
2015-01-13 14:28:03 +00:00
|
|
|
class ADDON {
|
|
|
|
units[] = {};
|
2015-01-13 14:38:17 +00:00
|
|
|
weapons[] = { "ACE_Rallypoint_West", "ACE_Rallypoint_East", "ACE_Rallypoint_Independent", "ACE_RallypointExit_West", "ACE_RallypointExit_East", "ACE_RallypointExit_Independent" };
|
2015-01-18 07:32:07 +00:00
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2015-01-13 15:29:35 +00:00
|
|
|
requiredAddons[] = { "ace_common" };
|
2015-01-13 14:38:17 +00:00
|
|
|
author[] = { "bux578", "commy2" };
|
2015-01-13 14:28:03 +00:00
|
|
|
authorUrl = "https://github.com/bux578/";
|
2015-01-18 07:32:07 +00:00
|
|
|
VERSION_CONFIG;
|
2015-01-13 14:28:03 +00:00
|
|
|
};
|
2015-01-12 09:07:03 +00:00
|
|
|
};
|
|
|
|
|
2015-01-12 09:20:50 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
#include "CfgAddons.hpp"
|
|
|
|
#include "CfgVehicleClasses.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
2015-01-12 14:12:53 +00:00
|
|
|
|
2015-01-30 22:06:25 +00:00
|
|
|
class ACE_Settings {
|
|
|
|
class GVAR(SavePreDeathGear) {
|
|
|
|
value = 0;
|
|
|
|
typeName = "BOOL";
|
|
|
|
};
|
|
|
|
class GVAR(RemoveDeadBodiesDisconnected) {
|
|
|
|
value = 1;
|
|
|
|
typeName = "BOOL";
|
|
|
|
};
|
2015-01-12 14:12:53 +00:00
|
|
|
};
|