113 lines
1.8 KiB
Plaintext
113 lines
1.8 KiB
Plaintext
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,
|
|
"",
|
|
""
|
|
];
|