ACE3/addons/trenches/initSettings.sqf
Mysteryjuju 5c68f1dac3
Trenches - Add settings to configure dig/remove trenches durations (#7831)
* Trenches - Add settings to configure dig/remove trenches durations

Signed-off-by: Mysteryjuju <mysteryjuju42@gmail.com>

* Trenches - Remove dirty tabs

Signed-off-by: Mysteryjuju <mysteryjuju42@gmail.com>

* Trenches - Update French translation

Signed-off-by: Mysteryjuju <mysteryjuju42@gmail.com>

* Update addons/trenches/stringtable.xml

Co-authored-by: Elgin675 <elgin675@hotmail.com>

* Update addons/trenches/stringtable.xml

Co-authored-by: Elgin675 <elgin675@hotmail.com>

* Update addons/trenches/stringtable.xml

Co-authored-by: Elgin675 <elgin675@hotmail.com>

* Update addons/trenches/stringtable.xml

Co-authored-by: Elgin675 <elgin675@hotmail.com>

* Update addons/trenches/stringtable.xml

Co-authored-by: Elgin675 <elgin675@hotmail.com>

* Update addons/trenches/stringtable.xml

Co-authored-by: Elgin675 <elgin675@hotmail.com>

* Update addons/trenches/stringtable.xml

Co-authored-by: Elgin675 <elgin675@hotmail.com>

* Update addons/trenches/stringtable.xml

Co-authored-by: Elgin675 <elgin675@hotmail.com>

* Trenches - Change SLIDER to TIME settings & update english translations

Signed-off-by: Mysteryjuju <mysteryjuju42@gmail.com>

* Trenches - Change CBA settings function

Signed-off-by: Mysteryjuju <mysteryjuju42@gmail.com>

Co-authored-by: Elgin675 <elgin675@hotmail.com>
2020-08-09 10:12:54 -05:00

37 lines
966 B
Plaintext

// Trenches dig/remove durations
[
QGVAR(smallEnvelopeDigDuration),
"TIME",
[LSTRING(SmallEnvelopeDigDuration_DisplayName), LSTRING(SmallEnvelopeDigDuration_Description)],
LSTRING(Category),
[5, 600, 20],
true
] call CBA_fnc_addSetting;
[
QGVAR(smallEnvelopeRemoveDuration),
"TIME",
[LSTRING(SmallEnvelopeRemoveDuration_DisplayName), LSTRING(SmallEnvelopeRemoveDuration_Description)],
LSTRING(Category),
[5, 600, 12],
true
] call CBA_fnc_addSetting;
[
QGVAR(bigEnvelopeDigDuration),
"TIME",
[LSTRING(BigEnvelopeDigDuration_DisplayName), LSTRING(BigEnvelopeDigDuration_Description)],
LSTRING(Category),
[5, 600, 25],
true
] call CBA_fnc_addSetting;
[
QGVAR(bigEnvelopeRemoveDuration),
"TIME",
[LSTRING(BigEnvelopeRemoveDuration_DisplayName), LSTRING(BigEnvelopeRemoveDuration_Description)],
LSTRING(Category),
[5, 600, 15],
true
] call CBA_fnc_addSetting;