Initial upload
This commit is contained in:
@@ -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,
|
||||
"",
|
||||
""
|
||||
];
|
||||
Reference in New Issue
Block a user