mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
79c43179ea
* Initial Commit to unfuck whatever I fucked in Git. * Update initSettings.sqf and stringtable.xml * Implements stringtable.xml suggestion * Fixes for plotting board * Update addons/maptools/functions/fnc_handleMouseButton.sqf Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com> * Update addons/maptools/CfgWeapons.hpp Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com> * Update addons/maptools/XEH_postInitClient.sqf Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com> * Update addons/maptools/XEH_postInitClient.sqf Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com> * Cleanup * Redid calculations * Updated docs * More updated docs * Update maptools.md * Fix error and warning --------- Co-authored-by: LorenLuke <LukeLLL@aol.com> Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
26 lines
779 B
Plaintext
26 lines
779 B
Plaintext
private _category = format ["ACE %1", localize LSTRING(Name)];
|
|
|
|
[
|
|
QGVAR(rotateModifierKey), "LIST",
|
|
[LSTRING(rotateModifierKey_displayName), LSTRING(rotateModifierKey_description)],
|
|
_category,
|
|
[[0, 1, 2, 3], ["STR_A3_OPTIONS_DISABLED", "ALT", "CTRL", "SHIFT"], 1],
|
|
0
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(drawStraightLines), "CHECKBOX",
|
|
[LSTRING(drawStraightLines_displayName), LSTRING(drawStraightLines_description)],
|
|
_category,
|
|
true,
|
|
0
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QGVAR(plottingBoardAllowChannelDrawing), "LIST",
|
|
[LSTRING(allowChannelDrawing_displayName), LSTRING(allowChannelDrawing_description)],
|
|
_category,
|
|
[[0, 1], [LSTRING(allowDirectCommsOnly), LSTRING(allowDirectGroupComms)], 1],
|
|
0
|
|
] call CBA_fnc_addSetting;
|