2015-06-29 02:34:21 +00:00
|
|
|
class ACE_Settings {
|
2015-07-17 15:02:38 +00:00
|
|
|
class GVAR(filterUnits) {
|
2016-03-08 07:17:40 +00:00
|
|
|
displayName = CSTRING(units_DisplayName);
|
|
|
|
description = CSTRING(units_Description);
|
2015-07-17 15:02:38 +00:00
|
|
|
typeName = "SCALAR";
|
2015-08-05 13:15:27 +00:00
|
|
|
value = 2;
|
|
|
|
values[] = {CSTRING(units_none), CSTRING(units_players), CSTRING(units_playable), CSTRING(units_all)};
|
2015-06-29 02:34:21 +00:00
|
|
|
};
|
2015-07-17 15:02:38 +00:00
|
|
|
class GVAR(filterSides) {
|
2016-03-08 07:17:40 +00:00
|
|
|
displayName = CSTRING(sides_DisplayName);
|
|
|
|
description = CSTRING(sides_Description);
|
2015-07-17 15:02:38 +00:00
|
|
|
typeName = "SCALAR";
|
2015-06-29 02:34:21 +00:00
|
|
|
value = 0;
|
2015-07-19 19:19:26 +00:00
|
|
|
values[] = {CSTRING(sides_player), CSTRING(sides_friendly), CSTRING(sides_hostile), CSTRING(sides_all)};
|
2015-06-29 02:34:21 +00:00
|
|
|
};
|
2015-07-21 12:31:13 +00:00
|
|
|
class GVAR(restrictModes) {
|
2016-03-08 07:17:40 +00:00
|
|
|
displayName = CSTRING(modes_DisplayName);
|
|
|
|
description = CSTRING(modes_Description);
|
2015-07-21 12:31:13 +00:00
|
|
|
typeName = "SCALAR";
|
|
|
|
value = 0;
|
|
|
|
values[] = {CSTRING(modes_all), CSTRING(modes_unit), CSTRING(modes_free), CSTRING(modes_internal), CSTRING(modes_external)};
|
|
|
|
};
|
|
|
|
class GVAR(restrictVisions) {
|
2016-03-08 07:17:40 +00:00
|
|
|
displayName = CSTRING(visions_DisplayName);
|
|
|
|
description = CSTRING(visions_Description);
|
2015-07-21 12:31:13 +00:00
|
|
|
typeName = "SCALAR";
|
|
|
|
value = 0;
|
|
|
|
values[] = {CSTRING(modes_all), CSTRING(visions_nv), CSTRING(visions_ti), "$STR_Special_None"};
|
|
|
|
};
|
2015-07-16 10:15:33 +00:00
|
|
|
};
|