forked from acemod/ACE3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8fca5ad
commit 3c10fe4
Showing
10 changed files
with
158 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
* Confirms trench dig | ||
* | ||
* Arguments: | ||
* 0: unit <OBJECT> | ||
* 0: Unit <OBJECT> | ||
* | ||
* Return Value: | ||
* None | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
[ | ||
QGVAR(allowDigging), | ||
"CHECKBOX", | ||
[localize LSTRING(settingAllowDigging_displayName), | ||
localize LSTRING(settingAllowDigging_tooltip)], | ||
localize LSTRING(settingCategory), | ||
true | ||
] call CBA_Settings_fnc_init; | ||
|
||
[ | ||
QGVAR(allowCamouflage), | ||
"CHECKBOX", | ||
[localize LSTRING(settingAllowCamouflage_displayName), | ||
localize LSTRING(settingAllowCamouflage_tooltip)], | ||
localize LSTRING(settingCategory), | ||
true | ||
] call CBA_Settings_fnc_init; | ||
|
||
[ | ||
QGVAR(camouflageRequireEntrenchmentTool), | ||
"CHECKBOX", [localize LSTRING(settingCamouflageRequireEntrenchmentTool_displayName), | ||
localize LSTRING(settingCamouflageRequireEntrenchmentTool_tooltip)], | ||
localize LSTRING(settingCategory), | ||
false | ||
] call CBA_Settings_fnc_init; | ||
|
||
[ | ||
QGVAR(buildFatigueFactor), | ||
"SLIDER", | ||
[localize LSTRING(settingBuildFatigueFactor_displayName), | ||
localize LSTRING(settingBuildFatigueFactor_tooltip)], | ||
localize LSTRING(settingCategory), | ||
[0, 5, 1, 1] | ||
] call CBA_Settings_fnc_init; | ||
|
||
[ | ||
QGVAR(stopBuildingAtFatigueMax), | ||
"CHECKBOX", | ||
[localize LSTRING(stopBuildingAtFatigueMax_displayName), | ||
localize LSTRING(stopBuildingAtFatigueMax_tooltip)], | ||
localize LSTRING(settingCategory), | ||
true | ||
] call CBA_Settings_fnc_init; | ||
|
||
[ | ||
QGVAR(enableAutomaticFilePath), | ||
"CHECKBOX", | ||
[localize LSTRING(enableAutomaticFilePath_displayName), | ||
localize LSTRING(enableAutomaticFilePath_tooltip)], | ||
localize LSTRING(settingCategory), | ||
false | ||
] call CBA_Settings_fnc_init; | ||
|
||
[ | ||
QGVAR(allowShortEnvelope), | ||
"CHECKBOX", | ||
[localize LSTRING(allowShortEnvelope_displayName), | ||
localize LSTRING(allowShortEnvelope_tooltip)], | ||
localize LSTRING(settingCategory), | ||
true | ||
] call CBA_Settings_fnc_init; | ||
|
||
[ | ||
QGVAR(allowSmallEnvelope), | ||
"CHECKBOX", | ||
[localize LSTRING(allowSmallEnvelope_displayName), | ||
localize LSTRING(allowSmallEnvelope_tooltip)], | ||
localize LSTRING(settingCategory), | ||
true | ||
] call CBA_Settings_fnc_init; | ||
|
||
[ | ||
QGVAR(allowBigEnvelope), | ||
"CHECKBOX", | ||
[localize LSTRING(allowBigEnvelope_displayName), | ||
localize LSTRING(allowBigEnvelope_tooltip)], | ||
localize LSTRING(settingCategory), | ||
true | ||
] call CBA_Settings_fnc_init; | ||
|
||
[ | ||
QGVAR(allowLargeEnvelope), | ||
"CHECKBOX", | ||
[localize LSTRING(allowLargeEnvelope_displayName), | ||
localize LSTRING(allowLargeEnvelope_tooltip)], | ||
localize LSTRING(settingCategory), | ||
true | ||
] call CBA_Settings_fnc_init; | ||
|
||
[ | ||
QGVAR(allowVehicleEnvelope), | ||
"CHECKBOX", | ||
[ | ||
localize LSTRING(allowVehicleEnvelope_displayName), | ||
localize LSTRING(allowVehicleEnvelope_tooltip) | ||
], | ||
localize LSTRING(settingCategory), | ||
true | ||
] call CBA_Settings_fnc_init; | ||
|
||
[ | ||
QGVAR(shortEnvelopeDigTime), | ||
"SLIDER", | ||
localize LSTRING(ShortEnvelopeDigTime), | ||
localize LSTRING(settingCategory), | ||
[5, 300, 20, 0] | ||
] call CBA_Settings_fnc_init; | ||
|
||
[ | ||
QGVAR(smallEnvelopeDigTime), | ||
"SLIDER", | ||
localize LSTRING(SmallEnvelopeDigTime), | ||
localize LSTRING(settingCategory), | ||
[5, 450, 30, 0] | ||
] call CBA_Settings_fnc_init; | ||
[ | ||
QGVAR(bigEnvelopeDigTime), | ||
"SLIDER", | ||
localize LSTRING(BigEnvelopeDigTime), | ||
localize LSTRING(settingCategory), | ||
[5, 600, 40, 0] | ||
] call CBA_Settings_fnc_init; | ||
|
||
[ | ||
QGVAR(largeEnvelopeDigTime), | ||
"SLIDER", | ||
localize LSTRING(LargeEnvelopeDigTime), | ||
localize LSTRING(settingCategory), | ||
[5, 900, 90, 0] | ||
] call CBA_Settings_fnc_init; | ||
|
||
[ | ||
QGVAR(vehicleEnvelopeDigTime), | ||
"SLIDER", | ||
localize LSTRING(VehicleEnvelopeDigTime), | ||
localize LSTRING(settingCategory), | ||
[5, 1200, 120, 0] | ||
] call CBA_Settings_fnc_init; |