2015-04-12 09:59:02 +00:00
|
|
|
class ACE_Settings {
|
|
|
|
class GVAR(enabled) {
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(enabled_DisplayName);
|
|
|
|
description = CSTRING(enabled_Description);
|
2015-04-12 09:59:02 +00:00
|
|
|
typeName = "BOOL";
|
2015-04-13 19:20:07 +00:00
|
|
|
value = 0;
|
2015-04-12 09:59:02 +00:00
|
|
|
};
|
2015-05-19 18:46:13 +00:00
|
|
|
class GVAR(simulateForSnipers) {
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(simulateForSnipers_DisplayName);
|
|
|
|
description = CSTRING(simulateForSnipers_Description);
|
2015-04-12 09:59:02 +00:00
|
|
|
typeName = "BOOL";
|
2015-04-12 10:52:13 +00:00
|
|
|
value = 1;
|
2015-04-12 09:59:02 +00:00
|
|
|
};
|
2015-05-19 18:46:13 +00:00
|
|
|
class GVAR(simulateForGroupMembers) {
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(simulateForGroupMembers_DisplayName);
|
|
|
|
description = CSTRING(simulateForGroupMembers_Description);
|
2015-05-17 09:45:55 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
value = 0;
|
|
|
|
};
|
2015-05-19 18:46:13 +00:00
|
|
|
class GVAR(simulateForEveryone) {
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(simulateForEveryone_DisplayName);
|
|
|
|
description = CSTRING(simulateForEveryone_Description);
|
2015-04-12 09:59:02 +00:00
|
|
|
typeName = "BOOL";
|
2015-04-12 10:52:13 +00:00
|
|
|
value = 0;
|
2015-04-12 09:59:02 +00:00
|
|
|
};
|
2015-05-19 18:46:13 +00:00
|
|
|
class GVAR(disabledInFullAutoMode) {
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(disabledInFullAutoMod_DisplayName);
|
|
|
|
description = CSTRING(disabledInFullAutoMod_Description);
|
2015-04-12 09:59:02 +00:00
|
|
|
typeName = "BOOL";
|
2015-05-19 18:46:13 +00:00
|
|
|
value = 0;
|
2015-04-12 09:59:02 +00:00
|
|
|
};
|
|
|
|
/* // TODO: We currently do not have firedEHs on vehicles
|
|
|
|
class GVAR(vehicleGunnerEnabled) {
|
|
|
|
displayName = "Enabled For Vehicle Gunners";
|
|
|
|
description = "Enables advanced ballistics for vehicle gunners";
|
|
|
|
typeName = "BOOL";
|
2015-04-12 10:52:13 +00:00
|
|
|
value = 0;
|
2015-04-12 09:59:02 +00:00
|
|
|
};
|
|
|
|
*/
|
|
|
|
class GVAR(ammoTemperatureEnabled) {
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(ammoTemperatureEnabled_DisplayName);
|
|
|
|
description = CSTRING(ammoTemperatureEnabled_Description);
|
2015-04-12 09:59:02 +00:00
|
|
|
typeName = "BOOL";
|
2015-04-12 10:52:13 +00:00
|
|
|
value = 1;
|
2015-04-12 09:59:02 +00:00
|
|
|
};
|
|
|
|
class GVAR(barrelLengthInfluenceEnabled) {
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(barrelLengthInfluenceEnabled_DisplayName);
|
|
|
|
description = CSTRING(barrelLengthInfluenceEnabled_Description);
|
2015-04-12 09:59:02 +00:00
|
|
|
typeName = "BOOL";
|
2015-04-12 10:52:13 +00:00
|
|
|
value = 1;
|
2015-04-12 09:59:02 +00:00
|
|
|
};
|
|
|
|
class GVAR(bulletTraceEnabled) {
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(bulletTraceEnabled_DisplayName);
|
|
|
|
description = CSTRING(bulletTraceEnabled_Description);
|
2015-04-12 09:59:02 +00:00
|
|
|
typeName = "BOOL";
|
2015-04-12 10:52:13 +00:00
|
|
|
value = 1;
|
2015-04-12 09:59:02 +00:00
|
|
|
};
|
2015-04-12 14:25:01 +00:00
|
|
|
class GVAR(simulationInterval) {
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(simulationInterval_DisplayName);
|
|
|
|
description = CSTRING(simulationInterval_Description);
|
2015-04-12 14:25:01 +00:00
|
|
|
typeName = "SCALAR";
|
|
|
|
value = 0.0;
|
|
|
|
};
|
2015-04-12 09:59:02 +00:00
|
|
|
class GVAR(simulationRadius) {
|
2015-08-03 20:52:35 +00:00
|
|
|
displayName = CSTRING(simulationRadius_DisplayName);
|
|
|
|
description = CSTRING(simulationRadius_Description);
|
2015-04-12 10:52:13 +00:00
|
|
|
typeName = "SCALAR";
|
|
|
|
value = 3000;
|
2015-04-12 09:59:02 +00:00
|
|
|
};
|
|
|
|
};
|