2015-05-11 15:30:46 +00:00
|
|
|
class ACE_Settings {
|
|
|
|
class GVAR(zeusAscension) {
|
2017-11-15 19:10:20 +00:00
|
|
|
category = CSTRING(DisplayName);
|
2016-03-08 07:17:40 +00:00
|
|
|
displayName = CSTRING(ascension_DisplayName);
|
|
|
|
description = CSTRING(ascension_Description);
|
2015-05-11 15:30:46 +00:00
|
|
|
typeName = "BOOL";
|
2015-05-11 17:06:01 +00:00
|
|
|
value = 0;
|
2015-05-11 15:30:46 +00:00
|
|
|
};
|
|
|
|
class GVAR(zeusBird) {
|
2017-11-15 19:10:20 +00:00
|
|
|
category = CSTRING(DisplayName);
|
2016-03-08 07:17:40 +00:00
|
|
|
displayName = CSTRING(bird_DisplayName);
|
|
|
|
description = CSTRING(bird_Description);
|
2015-05-11 15:30:46 +00:00
|
|
|
typeName = "BOOL";
|
2015-05-11 17:06:01 +00:00
|
|
|
value = 0;
|
2015-05-11 15:30:46 +00:00
|
|
|
};
|
2015-05-11 16:08:25 +00:00
|
|
|
class GVAR(remoteWind) {
|
2017-11-15 19:10:20 +00:00
|
|
|
category = CSTRING(DisplayName);
|
2016-03-08 07:17:40 +00:00
|
|
|
displayName = CSTRING(remoteWind_DisplayName);
|
|
|
|
description = CSTRING(remoteWind_Description);
|
2015-05-11 16:08:25 +00:00
|
|
|
typeName = "BOOL";
|
2015-05-11 17:06:01 +00:00
|
|
|
value = 0;
|
2015-05-11 16:08:25 +00:00
|
|
|
};
|
2015-05-11 15:30:46 +00:00
|
|
|
class GVAR(radioOrdnance) {
|
2017-11-15 19:10:20 +00:00
|
|
|
category = CSTRING(DisplayName);
|
2016-03-08 07:17:40 +00:00
|
|
|
displayName = CSTRING(radioOrdnance_DisplayName);
|
|
|
|
description = CSTRING(radioOrdnance_Description);
|
2015-05-11 15:30:46 +00:00
|
|
|
typeName = "BOOL";
|
2015-05-11 17:06:01 +00:00
|
|
|
value = 0;
|
2015-05-11 15:30:46 +00:00
|
|
|
};
|
|
|
|
class GVAR(revealMines) {
|
2017-11-15 19:10:20 +00:00
|
|
|
category = CSTRING(DisplayName);
|
2016-03-08 07:17:40 +00:00
|
|
|
displayName = CSTRING(revealMines_DisplayName);
|
|
|
|
description = CSTRING(revealMines_Description);
|
2015-05-11 15:30:46 +00:00
|
|
|
typeName = "SCALAR";
|
2015-05-11 17:06:01 +00:00
|
|
|
value = 0;
|
2015-06-04 18:40:11 +00:00
|
|
|
values[] = {"$STR_A3_OPTIONS_DISABLED", CSTRING(revealMines_partial), CSTRING(revealMines_full)};
|
2015-05-11 15:30:46 +00:00
|
|
|
};
|
2015-08-15 16:39:43 +00:00
|
|
|
class GVAR(autoAddObjects) {
|
2017-11-15 19:10:20 +00:00
|
|
|
category = CSTRING(DisplayName);
|
2015-08-15 16:39:43 +00:00
|
|
|
typeName = "BOOL";
|
2015-09-16 04:20:05 +00:00
|
|
|
value = 0;
|
2015-08-15 16:39:43 +00:00
|
|
|
displayName = CSTRING(AddObjectsToCurator);
|
2015-08-15 17:04:57 +00:00
|
|
|
description = CSTRING(AddObjectsToCurator_desc);
|
2015-08-15 16:39:43 +00:00
|
|
|
};
|
2015-05-11 15:30:46 +00:00
|
|
|
};
|