2015-06-03 01:50:27 +00:00
|
|
|
class ACE_Settings {
|
|
|
|
class GVAR(allowHandcuffOwnSide) {
|
2015-06-06 02:02:24 +00:00
|
|
|
displayName = CSTRING(ModuleSettings_handcuffSide_name);
|
|
|
|
description = CSTRING(ModuleSettings_handcuffSide_description);
|
2015-06-03 01:50:27 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
value = 1;
|
|
|
|
};
|
2015-08-07 12:46:28 +00:00
|
|
|
class GVAR(requireSurrender) {
|
|
|
|
displayName = CSTRING(ModuleSettings_requireSurrender_name);
|
|
|
|
description = CSTRING(ModuleSettings_requireSurrender_description);
|
2015-08-08 22:21:59 +00:00
|
|
|
typeName = "SCALAR";
|
|
|
|
values[] = {ECSTRING(common,Disabled), CSTRING(SurrenderOnly), CSTRING(SurrenderOrNoWeapon)};
|
|
|
|
value = 1;
|
2015-08-07 12:46:28 +00:00
|
|
|
};
|
2015-06-03 01:50:27 +00:00
|
|
|
class GVAR(allowSurrender) {
|
2015-06-06 02:02:24 +00:00
|
|
|
displayName = CSTRING(ModuleSettings_allowSurrender_name);
|
|
|
|
description = CSTRING(ModuleSettings_allowSurrender_description);
|
2015-06-03 01:50:27 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
value = 1;
|
|
|
|
};
|
|
|
|
};
|