Initial upload

This commit is contained in:
2026-05-03 17:46:36 +10:00
parent a47879155f
commit 189519bcb3
11 changed files with 92294 additions and 0 deletions
+112
View File
@@ -0,0 +1,112 @@
radioFrontlineCommand addAction [
"Show Northwest",
{missionNamespace setVariable ["var_show_northwest", true, true];},
nil,
1.5,
true,
true,
"",
"_this == missionCommander",
3,
false,
"",
""
];
radioFrontlineCommand addAction [
"Hide Northwest",
{missionNamespace setVariable ["var_show_northwest", false, true];},
nil,
1.5,
true,
true,
"",
"_this == missionCommander",
3,
false,
"",
""
];
radioFrontlineCommand addAction [
"Show North",
{missionNamespace setVariable ["var_show_north", true, true];},
nil,
1.5,
true,
true,
"",
"_this == missionCommander",
3,
false,
"",
""
];
radioFrontlineCommand addAction [
"Hide North",
{missionNamespace setVariable ["var_show_north", false, true];},
nil,
1.5,
true,
true,
"",
"_this == missionCommander",
3,
false,
"",
""
];
radioFrontlineCommand addAction [
"Show Northeast",
{missionNamespace setVariable ["var_show_northeast", true, true];},
nil,
1.5,
true,
true,
"",
"_this == missionCommander",
3,
false,
"",
""
];
radioFrontlineCommand addAction [
"Hide Northeast",
{missionNamespace setVariable ["var_show_northeast", false, true];},
nil,
1.5,
true,
true,
"",
"_this == missionCommander",
3,
false,
"",
""
];
radioFrontlineCommand addAction [
"Show East",
{missionNamespace setVariable ["var_show_east", true, true];},
nil,
1.5,
true,
true,
"",
"_this == missionCommander",
3,
false,
"",
""
];
radioFrontlineCommand addAction [
"Hide East",
{missionNamespace setVariable ["var_show_east", false, true];},
nil,
1.5,
true,
true,
"",
"_this == missionCommander",
3,
false,
"",
""
];