2015-03-10 17:05:56 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2015-03-11 14:21:35 +00:00
|
|
|
requiredAddons[] = {"ace_common","ace_interact_menu"};
|
2015-03-10 17:05:56 +00:00
|
|
|
author[] = {"commy2"};
|
|
|
|
authorUrl = "https://github.com/commy2";
|
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "CfgEventHandlers.hpp"
|
2015-03-11 09:37:30 +00:00
|
|
|
|
|
|
|
#include "CfgVehicleClasses.hpp"
|
2015-03-10 22:29:45 +00:00
|
|
|
#include "CfgVehicles.hpp"
|
2015-03-10 21:52:44 +00:00
|
|
|
|
|
|
|
class ACE_Settings {
|
|
|
|
class GVAR(DisplayTextOnRepair) {
|
|
|
|
typeName = "BOOL";
|
|
|
|
isClientSetable = 1;
|
|
|
|
value = 1;
|
|
|
|
displayName = "$STR_ACE_Repair_SettingDisplayTextName";
|
|
|
|
description = "$STR_ACE_Repair_SettingDisplayTextDesc";
|
|
|
|
};
|
|
|
|
};
|