2015-01-16 01:25:41 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2015-03-06 04:30:51 +00:00
|
|
|
requiredAddons[] = {"ace_interaction"};
|
2015-03-24 04:18:00 +00:00
|
|
|
author[] = {"commy2","KoffeinFlummi","esteldunedain"};
|
2015-01-16 01:25:41 +00:00
|
|
|
authorUrl = "https://github.com/commy2/";
|
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-02-20 05:45:17 +00:00
|
|
|
#include "CfgVehicles.hpp"
|
|
|
|
|
|
|
|
#include "CfgMagazines.hpp"
|
|
|
|
|
2015-01-16 01:25:41 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
|
2015-01-18 20:05:32 +00:00
|
|
|
#include "CfgActions.hpp"
|
2015-01-16 01:25:41 +00:00
|
|
|
|
|
|
|
#include "RscInGameUI.hpp"
|
2015-03-08 15:56:57 +00:00
|
|
|
|
|
|
|
class ACE_Settings {
|
|
|
|
class GVAR(DisplayText) {
|
|
|
|
typeName = "BOOL";
|
|
|
|
isClientSetable = 1;
|
|
|
|
value = 1;
|
|
|
|
displayName = "$STR_ACE_reload_SettingDisplayTextName";
|
|
|
|
description = "$STR_ACE_reload_SettingDisplayTextDesc";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|