ACE3/addons/spectator/ACE_Settings.hpp

31 lines
1.2 KiB
C++
Raw Normal View History

2015-06-29 02:34:21 +00:00
class ACE_Settings {
2015-07-17 15:02:38 +00:00
class GVAR(filterUnits) {
displayName = CSTRING(units_DisplayName);
description = CSTRING(units_Description);
2015-07-17 15:02:38 +00:00
typeName = "SCALAR";
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) {
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) {
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) {
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
};