2015-01-11 16:42:31 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
class CfgPatches {
|
2015-01-12 21:34:01 +00:00
|
|
|
class ADDON {
|
|
|
|
units[] = {"ACE_Box_Misc"};
|
|
|
|
weapons[] = {"ACE_ItemCore","ACE_FakePrimaryWeapon"};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2015-01-24 16:18:38 +00:00
|
|
|
requiredAddons[] = {"ace_main"};
|
2015-01-12 21:34:01 +00:00
|
|
|
author[] = {"KoffeinFlummi"};
|
|
|
|
authorUrl = "https://github.com/KoffeinFlummi/";
|
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
#include "CfgSounds.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
|
|
|
#include "CfgWeapons.hpp"
|
2015-01-12 21:34:01 +00:00
|
|
|
#include "CfgMagazines.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-01-12 04:02:33 +00:00
|
|
|
class ACE_Rsc_Display_Base {
|
2015-01-12 21:34:01 +00:00
|
|
|
idd = -1;
|
|
|
|
type = 0;
|
|
|
|
style = 48;
|
|
|
|
name = "";
|
|
|
|
duration = 999999;
|
|
|
|
fadeIn = 0;
|
|
|
|
fadeOut = 0;
|
|
|
|
font = "TahomaB";
|
|
|
|
size = 1;
|
|
|
|
colorBackground[] = {1, 1, 1, 0};
|
|
|
|
colorText[] = {1, 1, 1, 1};
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
2015-01-12 04:02:33 +00:00
|
|
|
class ACE_Rsc_Control_Base {
|
2015-01-12 21:34:01 +00:00
|
|
|
idc = 1;
|
|
|
|
type = 0;
|
|
|
|
style = 48;
|
|
|
|
access = 0;
|
|
|
|
lineSpacing = 0;
|
|
|
|
moving = 1;
|
|
|
|
text = "";
|
|
|
|
size = 1;
|
|
|
|
sizeEx = 0;
|
|
|
|
font = "TahomaB";
|
|
|
|
colorBackground[] = {1, 1, 1, 0};
|
|
|
|
colorText[] = {1, 1, 1, 1};
|
|
|
|
x = 0;
|
|
|
|
y = 0;
|
|
|
|
w = 0;
|
|
|
|
h = 0;
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
2015-01-13 16:42:56 +00:00
|
|
|
class ACE_canInteractConditions {
|
2015-01-12 21:34:01 +00:00
|
|
|
class GVAR(notOnMap) {
|
|
|
|
condition = "!visibleMap";
|
|
|
|
};
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
2015-01-30 21:56:45 +00:00
|
|
|
class ACE_Settings {
|
2015-02-03 03:43:53 +00:00
|
|
|
/*
|
|
|
|
*class GVAR(sampleSetting) {
|
|
|
|
* Value
|
|
|
|
* value = 1;
|
|
|
|
*
|
|
|
|
* Type (SCALAR, BOOL, STRING, ARRAY, COLOR)
|
|
|
|
* typeName = "SCALAR";
|
|
|
|
*
|
|
|
|
* Force the setting?
|
|
|
|
* force = 0;
|
|
|
|
*
|
|
|
|
* Does it appear on the options menu?
|
|
|
|
* isClientSetable = 1;
|
|
|
|
*
|
|
|
|
* The following settings only apply when isClientSetable == 1
|
|
|
|
* Stringtable entry with the setting name
|
|
|
|
* displayName = "$STR_ACE_Common_SettingName";
|
|
|
|
*
|
|
|
|
* Stringtable entry with the setting description
|
|
|
|
* description = "$STR_ACE_Common_SettingDescription";
|
|
|
|
*
|
|
|
|
* Stringtable entries that describe the options
|
|
|
|
* Only applies if typeName == "SCALAR";
|
|
|
|
* values[] = {"Disabled", "Enabled", "Only Cursor", "Only On Keypress", "Only Cursor and KeyPress"};
|
|
|
|
*};
|
|
|
|
*/
|
2015-01-30 21:56:45 +00:00
|
|
|
class GVAR(forceAllSettings) {
|
|
|
|
value = 0;
|
|
|
|
typeName = "BOOL";
|
|
|
|
};
|
2015-01-22 00:19:10 +00:00
|
|
|
class GVAR(enableNumberHotkeys) {
|
2015-01-30 21:56:45 +00:00
|
|
|
value = 1;
|
|
|
|
typeName = "BOOL";
|
|
|
|
isClientSetable = 1;
|
2015-01-12 21:34:01 +00:00
|
|
|
displayName = "$STR_ACE_Common_EnableNumberHotkeys";
|
|
|
|
};
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#include <ProgressScreen.hpp>
|
|
|
|
#include <HintConfig.hpp>
|
|
|
|
#include <RscInfoType.hpp>
|
|
|
|
#include <FixPickup.hpp>
|
|
|
|
#include <FixAnimations.hpp>
|
|
|
|
#include <NoVoice.hpp>
|
2015-01-16 23:21:47 +00:00
|
|
|
|