mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
formating
This commit is contained in:
parent
1ea2afaec5
commit
72e3d7519b
@ -3,16 +3,12 @@
|
|||||||
class CfgPatches {
|
class CfgPatches {
|
||||||
class ADDON {
|
class ADDON {
|
||||||
units[] = {"ACE_Box_Misc"};
|
units[] = {"ACE_Box_Misc"};
|
||||||
weapons[] = {"ACE_ItemCore", "ACE_FakePrimaryWeapon"};
|
weapons[] = {"ACE_ItemCore","ACE_FakePrimaryWeapon"};
|
||||||
requiredVersion = 0.60;
|
requiredVersion = REQUIRED_VERSION;
|
||||||
requiredAddons[] = {
|
requiredAddons[] = {"ace_main"};
|
||||||
"ace_main"
|
|
||||||
};
|
|
||||||
version = "0.95";
|
|
||||||
versionStr = "0.95";
|
|
||||||
versionAr[] = {0,95,0};
|
|
||||||
author[] = {"KoffeinFlummi"};
|
author[] = {"KoffeinFlummi"};
|
||||||
authorUrl = "https://github.com/KoffeinFlummi/";
|
authorUrl = "https://github.com/KoffeinFlummi/";
|
||||||
|
VERSION_CONFIG;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
#include "script_component.hpp"
|
#include "script_component.hpp"
|
||||||
|
|
||||||
class CfgPatches {
|
class CfgPatches {
|
||||||
class ADDON {
|
class ADDON {
|
||||||
units[] = {};
|
units[] = {};
|
||||||
weapons[] = {};
|
weapons[] = {};
|
||||||
requiredVersion = REQUIRED_VERSION;
|
requiredVersion = REQUIRED_VERSION;
|
||||||
requiredAddons[] = {
|
requiredAddons[] = {
|
||||||
"a3_air_f",
|
"a3_air_f",
|
||||||
"a3_air_f_beta",
|
"a3_air_f_beta",
|
||||||
"a3_air_f_beta_heli_attack_01",
|
"a3_air_f_beta_heli_attack_01",
|
||||||
"a3_air_f_beta_heli_attack_02",
|
"a3_air_f_beta_heli_attack_02",
|
||||||
@ -491,48 +492,48 @@ class CfgPatches {
|
|||||||
"a3_weapons_f_vests",
|
"a3_weapons_f_vests",
|
||||||
"a3data",
|
"a3data",
|
||||||
"extended_eventhandlers", "CBA_UI", "CBA_XEH", "CBA_XEH_A3"
|
"extended_eventhandlers", "CBA_UI", "CBA_XEH", "CBA_XEH_A3"
|
||||||
};
|
};
|
||||||
author[] = {"ACE Team"};
|
author[] = {"ACE Team"};
|
||||||
authorUrl = "";
|
authorUrl = "";
|
||||||
versionDesc = "A.C.E.";
|
versionDesc = "A.C.E.";
|
||||||
versionAct = "['MAIN',_this] execVM '\z\ace\addons\main\about.sqf';";
|
versionAct = "['MAIN',_this] execVM '\z\ace\addons\main\about.sqf';";
|
||||||
VERSION_CONFIG;
|
VERSION_CONFIG;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
class CfgMods {
|
class CfgMods {
|
||||||
class PREFIX {
|
class PREFIX {
|
||||||
dir = "@ACE";
|
dir = "@ACE";
|
||||||
name = "Core - Advanced Combat Environment";
|
name = "Core - Advanced Combat Environment";
|
||||||
picture = "A3\Ui_f\data\Logos\arma3_expansion_alpha_ca";
|
picture = "A3\Ui_f\data\Logos\arma3_expansion_alpha_ca";
|
||||||
hidePicture = "true";
|
hidePicture = "true";
|
||||||
hideName = "true";
|
hideName = "true";
|
||||||
actionName = "Website";
|
actionName = "Website";
|
||||||
action = "http://ace.dev-heaven.net";
|
action = "http://ace.dev-heaven.net";
|
||||||
description = "Bugtracker: ";
|
description = "Bugtracker: ";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
class CfgSettings {
|
class CfgSettings {
|
||||||
class CBA {
|
class CBA {
|
||||||
class Versioning {
|
class Versioning {
|
||||||
class PREFIX {
|
class PREFIX {
|
||||||
level = DEFAULT_VERSIONING_LEVEL;
|
level = DEFAULT_VERSIONING_LEVEL;
|
||||||
handler = "ace_common_fnc_mismatch";
|
handler = "ace_common_fnc_mismatch";
|
||||||
class Dependencies {
|
class Dependencies {
|
||||||
CBA[]={"cba_main", {1,0,0}, "true"};
|
CBA[]={"cba_main", {1,0,0}, "true"};
|
||||||
XEH[]={"cba_xeh", {1,0,0}, "true"};
|
XEH[]={"cba_xeh", {1,0,0}, "true"};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
/*
|
/*
|
||||||
class Registry {
|
class Registry {
|
||||||
class PREFIX {
|
class PREFIX {
|
||||||
removed[] = {};
|
removed[] = {};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
*/
|
*/
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
#include "CfgModuleCategories.hpp"
|
#include "CfgModuleCategories.hpp"
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -2,11 +2,11 @@
|
|||||||
#include "\z\ace\Addons\main\script_mod.hpp"
|
#include "\z\ace\Addons\main\script_mod.hpp"
|
||||||
|
|
||||||
#ifdef DEBUG_ENABLED_RAGDOLLS
|
#ifdef DEBUG_ENABLED_RAGDOLLS
|
||||||
#define DEBUG_MODE_FULL
|
#define DEBUG_MODE_FULL
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef DEBUG_ENABLED_RAGDOLLS
|
#ifdef DEBUG_ENABLED_RAGDOLLS
|
||||||
#define DEBUG_SETTINGS DEBUG_ENABLED_RAGDOLLS
|
#define DEBUG_SETTINGS DEBUG_ENABLED_RAGDOLLS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "\z\ace\Addons\main\script_macros.hpp"
|
#include "\z\ace\Addons\main\script_macros.hpp"
|
File diff suppressed because it is too large
Load Diff
@ -2,11 +2,11 @@
|
|||||||
#include "\z\ace\Addons\main\script_mod.hpp"
|
#include "\z\ace\Addons\main\script_mod.hpp"
|
||||||
|
|
||||||
#ifdef DEBUG_ENABLED_REALISTICNAMES
|
#ifdef DEBUG_ENABLED_REALISTICNAMES
|
||||||
#define DEBUG_MODE_FULL
|
#define DEBUG_MODE_FULL
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef DEBUG_ENABLED_REALISTICNAMES
|
#ifdef DEBUG_ENABLED_REALISTICNAMES
|
||||||
#define DEBUG_SETTINGS DEBUG_ENABLED_REALISTICNAMES
|
#define DEBUG_SETTINGS DEBUG_ENABLED_REALISTICNAMES
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "\z\ace\Addons\main\script_macros.hpp"
|
#include "\z\ace\Addons\main\script_macros.hpp"
|
File diff suppressed because it is too large
Load Diff
@ -1,42 +1,40 @@
|
|||||||
#include "script_component.hpp"
|
#include "script_component.hpp"
|
||||||
|
|
||||||
class CfgPatches {
|
class CfgPatches {
|
||||||
class ADDON {
|
class ADDON {
|
||||||
units[] = {};
|
units[] = {};
|
||||||
weapons[] = {};
|
weapons[] = {};
|
||||||
requiredVersion = 0.60;
|
requiredVersion = REQUIRED_VERSION;
|
||||||
requiredAddons[] = {ace_core};
|
requiredAddons[] = {ace_common};
|
||||||
version = "0.95";
|
author[] = {"[TF]Nkey"};
|
||||||
versionStr = "0.95";
|
authorUrl = "https://github.com/michail-nikolaev/";
|
||||||
versionAr[] = {0,95,0};
|
VERSION_CONFIG;
|
||||||
author[] = {"[TF]Nkey"};
|
};
|
||||||
authorUrl = "https://github.com/michail-nikolaev/";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class CfgVehicles {
|
class CfgVehicles {
|
||||||
class Land;
|
class Land;
|
||||||
class Man: Land {
|
class Man: Land {
|
||||||
mFact = 1; // Metabolism factor - number from interval <0, 1> (0 - metabolism has no influence, 1 - metabolism has full influence (no other temperature source will be considered))
|
mFact = 1; // Metabolism factor - number from interval <0, 1> (0 - metabolism has no influence, 1 - metabolism has full influence (no other temperature source will be considered))
|
||||||
tBody = 32; // Metabolism temperature of the model (in celsius)
|
tBody = 32; // Metabolism temperature of the model (in celsius)
|
||||||
};
|
};
|
||||||
|
|
||||||
class All;
|
class All;
|
||||||
// Up to this point, the thermal properties apply to the entire model,
|
// Up to this point, the thermal properties apply to the entire model,
|
||||||
// so if a vehicle's engine starts, the entire model will begin to warm up at the rate of htMax up to a temperature of afMax,
|
// so if a vehicle's engine starts, the entire model will begin to warm up at the rate of htMax up to a temperature of afMax,
|
||||||
// likewise if it begins driving, the entire model will heat up at the rate specified by htMax to a maximum temperature of mfMax.
|
// likewise if it begins driving, the entire model will heat up at the rate specified by htMax to a maximum temperature of mfMax.
|
||||||
class AllVehicles: All {
|
class AllVehicles: All {
|
||||||
htMin=60; // Minimum half-cooling time (in seconds)
|
htMin=60; // Minimum half-cooling time (in seconds)
|
||||||
htMax=1800; // Maximum half-cooling time (in seconds)
|
htMax=1800; // Maximum half-cooling time (in seconds)
|
||||||
afMax=70; // Maximum temperature in case the model is alive (in celsius)
|
afMax=70; // Maximum temperature in case the model is alive (in celsius)
|
||||||
mfMax=50; // Maximum temperature when the model is moving (in celsius)
|
mfMax=50; // Maximum temperature when the model is moving (in celsius)
|
||||||
mFact=0.0; // Metabolism factor - number from interval <0, 1> (0 - metabolism has no influence, 1 - metabolism has full influence (no other temperature source will be considered))
|
mFact=0.0; // Metabolism factor - number from interval <0, 1> (0 - metabolism has no influence, 1 - metabolism has full influence (no other temperature source will be considered))
|
||||||
tBody=0; // Metabolism temperature of the model (in celsius)
|
tBody=0; // Metabolism temperature of the model (in celsius)
|
||||||
};
|
};
|
||||||
|
|
||||||
class Animal;
|
class Animal;
|
||||||
class Animal_Base_F: Animal {
|
class Animal_Base_F: Animal {
|
||||||
mFact = 1; // Metabolism factor - number from interval <0, 1> (0 - metabolism has no influence, 1 - metabolism has full influence (no other temperature source will be considered))
|
mFact = 1; // Metabolism factor - number from interval <0, 1> (0 - metabolism has no influence, 1 - metabolism has full influence (no other temperature source will be considered))
|
||||||
tBody = 32; // Metabolism temperature of the model (in celsius)
|
tBody = 32; // Metabolism temperature of the model (in celsius)
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
#include "\z\ace\Addons\main\script_mod.hpp"
|
#include "\z\ace\Addons\main\script_mod.hpp"
|
||||||
|
|
||||||
#ifdef DEBUG_ENABLED_THERMALS
|
#ifdef DEBUG_ENABLED_THERMALS
|
||||||
#define DEBUG_MODE_FULL
|
#define DEBUG_MODE_FULL
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef DEBUG_ENABLED_THERMALS
|
#ifdef DEBUG_ENABLED_THERMALS
|
||||||
#define DEBUG_SETTINGS DEBUG_ENABLED_THERMALS
|
#define DEBUG_SETTINGS DEBUG_ENABLED_THERMALS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "\z\ace\Addons\main\script_macros.hpp"
|
#include "\z\ace\Addons\main\script_macros.hpp"
|
@ -1,5 +1,5 @@
|
|||||||
class Extended_PreInit_EventHandlers {
|
class Extended_PreInit_EventHandlers {
|
||||||
class ADDON {
|
class ADDON {
|
||||||
init = QUOTE( call compile preprocessFileLineNumbers PATHTOF(XEH_preInit.sqf) );
|
init = QUOTE( call compile preprocessFileLineNumbers PATHTOF(XEH_preInit.sqf) );
|
||||||
};
|
};
|
||||||
};
|
};
|
@ -1,17 +1,17 @@
|
|||||||
#include "script_component.hpp"
|
#include "script_component.hpp"
|
||||||
|
|
||||||
class CfgPatches {
|
class CfgPatches {
|
||||||
class ADDON {
|
class ADDON {
|
||||||
units[] = {};
|
units[] = {};
|
||||||
weapons[] = {};
|
weapons[] = {};
|
||||||
requiredVersion = 0.60;
|
requiredVersion = 0.60;
|
||||||
requiredAddons[] = {"ace_core"};
|
requiredAddons[] = {"ace_core"};
|
||||||
version = "0.95";
|
version = "0.95";
|
||||||
versionStr = "0.95";
|
versionStr = "0.95";
|
||||||
versionAr[] = {0,95,0};
|
versionAr[] = {0,95,0};
|
||||||
author[] = {""};
|
author[] = {""};
|
||||||
authorUrl = "";
|
authorUrl = "";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
#include "CfgEventHandlers.hpp"
|
#include "CfgEventHandlers.hpp"
|
@ -2,11 +2,11 @@
|
|||||||
#include "\z\ace\addons\main\script_mod.hpp"
|
#include "\z\ace\addons\main\script_mod.hpp"
|
||||||
|
|
||||||
#ifdef DEBUG_ENABLED_BLANK
|
#ifdef DEBUG_ENABLED_BLANK
|
||||||
#define DEBUG_MODE_FULL
|
#define DEBUG_MODE_FULL
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef DEBUG_SETTINGS_BLANK
|
#ifdef DEBUG_SETTINGS_BLANK
|
||||||
#define DEBUG_SETTINGS DEBUG_SETTINGS_BLANK
|
#define DEBUG_SETTINGS DEBUG_SETTINGS_BLANK
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "\z\ace\addons\main\script_macros.hpp"
|
#include "\z\ace\addons\main\script_macros.hpp"
|
Loading…
Reference in New Issue
Block a user