Default enable Quick mount (empty keybind) and Move to CBA Settings (#6613)

Quickmount - Default enable quick mount (empty keybind) and Move to CBA Settings
This commit is contained in:
jonpas 2018-10-13 05:14:03 +02:00 committed by PabstMirror
parent 4ff01967b6
commit 9972f5374f
4 changed files with 43 additions and 32 deletions

View File

@ -1,41 +1,14 @@
class ACE_Settings {
class GVAR(enabled) {
value = 0;
typeName = "BOOL";
category = CSTRING(Category);
displayName = ECSTRING(common,Enabled);
description = CSTRING(KeybindDescription);
isClientSettable = 1;
force = 0;
movedToSQF = 1;
};
class GVAR(distance) {
value = DEFAULT_DISTANCE;
typeName = "SCALAR";
category = CSTRING(Category);
displayName = CSTRING(Distance);
description = CSTRING(DistanceDescription);
isClientSettable = 0;
force = 0;
values[] = {"0m", "1m", "2m", "3m", "4m", "5m", "6m", "7m", "8m", "9m", "10m"};
movedToSQF = 1;
};
class GVAR(speed) {
value = DEFAULT_SPEED;
typeName = "SCALAR";
category = CSTRING(Category);
displayName = CSTRING(Speed);
description = CSTRING(SpeedDescription);
isClientSettable = 0;
force = 0;
values[] = {"0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30"};
movedToSQF = 1;
};
class GVAR(priority) {
value = DEFAULT_PRIORITY;
typeName = "SCALAR";
category = CSTRING(Category);
displayName = CSTRING(Priority);
description = CSTRING(PriorityDescription);
isClientSettable = 1;
force = 0;
values[] = {"$str_getin_pos_driver", "$str_getin_pos_gunn", "$str_getin_pos_comm", "$STR_GETIN_POS_PASSENGER"};
movedToSQF = 1;
};
};

View File

@ -6,4 +6,6 @@ PREP_RECOMPILE_START;
#include "XEH_PREP.hpp"
PREP_RECOMPILE_END;
#include "initSettings.sqf"
ADDON = true;

View File

@ -0,0 +1,36 @@
[
QGVAR(enabled),
"CHECKBOX",
localize ELSTRING(common,Enabled),
format ["ACE %1", localize LSTRING(Category)],
true,
true
] call CBA_settings_fnc_init;
[
QGVAR(distance),
"SLIDER",
[localize LSTRING(Distance), localize LSTRING(DistanceDescription)],
format ["ACE %1", localize LSTRING(Category)],
[0, 10, DEFAULT_DISTANCE, 0],
true
] call CBA_settings_fnc_init;
[
QGVAR(speed),
"SLIDER",
[localize LSTRING(Speed), localize LSTRING(SpeedDescription)],
format ["ACE %1", localize LSTRING(Category)],
[0, 30, DEFAULT_SPEED, 0],
true
] call CBA_settings_fnc_init;
[
QGVAR(priority),
"LIST",
[localize LSTRING(Priority), localize LSTRING(PriorityDescription)],
format ["ACE %1", localize LSTRING(Category)],
[[0, 1, 2, 3], [localize "str_getin_pos_driver", localize "str_getin_pos_gunn", localize "str_getin_pos_comm", localize "str_getin_pos_passenger"], DEFAULT_PRIORITY],
false
] call CBA_settings_fnc_init;