# Enable/Disable Command Type
Grammar — disable|Enable/Disable commandOption for playerGroup
Flags —Native
|Action
Enables or disables certain types of interface commands. Use the “Set Command Type Disabled Message” action to customize the message that is displayed when the player attempts to use commands disabled in this manner.
# Arguments
playergroup
— PlayerGroupint
<preset::UICommandOption> — Command Optionbool
<preset::Enable_Disable_Option> — Disable
Returns — void
native void UISetCommandAllowed(
playergroup players,
int option,
bool allow,
);
# Related
Category: UI / Game UI
- Set Screen Mode —
void
— UISetMode - Set Minimum Letterbox Height —
void
— UISetMinimumLetterboxHeight - Show/Hide Game UI —
void
— libNtve_gf_HideGameUI - Add/Remove UI Frame Type For Global Filter List —
void
— libNtve_gf_AddRemoveUIFrameTypeForGlobalFilterList - UI Frame Flag — preset —
int
- UI Frame Flag Check —
bool
— libNtve_gf_UIFrameFlagCheck - For Each UI Frame — macro
- Show/Hide UI Frame —
void
— UISetFrameVisible - Set BattleNet Button Offset —
void
— UISetBattleNetButtonOffset - Clear BattleNet Button Offset —
void
— UIClearBattleNetButtonOffset - UI Frame Is Visible —
bool
— UIFrameVisible - Show/Hide World —
void
— UISetWorldVisible - Show/Hide Achievement Panel —
void
— AchievementPanelSetVisible - Show/Hide Mouse Cursor —
void
— UISetCursorVisible - Enable/Disable Mouse Cursor Auto Hide —
void
— UISetCursorAutoHide - Enable/Disable Drag Selection —
void
— UISetDragSelectEnabled - Set Hot Key Profile —
void
— UISetHotkeyProfile - Lock Ally Color Setting —
void
— UIUnitColorStyleOverride - Unlock Ally Color Setting —
void
— UIUnitColorStyleClearOverride - Lock Flyer Helper Display —
void
— UIFlyerHelperOverride - Unlock Flyer Helper Display —
void
— UIFlyerHelperClearOverride - Lock Status Bar Display —
void
— UIStatusBarOverride - Unlock Status Bar Display —
void
— UIStatusBarClearOverride - Set Achievement Toast Style —
void
— UISetAchievementToastStyle - Set Minimap Background Color —
void
— UISetMiniMapBackGroundColor - Show/Hide Minimap Camera Field of View —
void
— UISetMiniMapCameraFoVVisible - Set Minimap Bounds —
void
— UISetMiniMapBounds - Enable/Disable Command Type —
void
— UISetCommandAllowed - Turn Ability Highlight On/Off —
void
— UISetButtonHighlighted - Turn Button Highlight On/Off —
void
— UISetButtonFaceHighlighted - Set Command Type Disabled Message —
void
— UISetCommandDisallowedMessage - Show/Hide Resource —
void
— UISetResourceVisible - Enable/Disable Selection Type —
void
— UISetSelectionTypeEnabled - Launch Nydus Link —
void
— UILaunchNydusLink - Show/Hide Message Log —
void
— UIMessageLogPanelSetVisible - Set Targeting Order —
void
— UISetTargetingOrder - Enable/Disable Hotkey —
void
— UISetHotkeyAllowed - Target Mode Updated —
void
— TriggerAddEventTargetModeUpdate - Resources Requested —
void
— TriggerAddEventResourceRequest - Resources Traded —
void
— TriggerAddEventResourceTrade - Target Mode Ability Command —
abilcmd
— EventTargetModeAbilCmd - Target Mode State —
int
<preset::TargetModeState> — EventTargetModeState - Resource Requested Amount —
int
— EventResourceRequestAmount - Resource Traded Amount —
int
— EventResourceTradeAmount - Resource Traded Recipient —
int
— EventResourceTradeRecipient
# Examples
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/thorner05s.sc2map/MapScript.galaxy:2905
UnitSetState(gv_turret05, c_unitStateSelectable, true);
UnitSetState(gv_turret06, c_unitStateSelectable, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UnitSetState(UnitFromId(1488), c_unitStateSelectable, false);
UnitSetState(UnitFromId(1488), c_unitStateStatusBar, false);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/thorner05s.sc2map/MapScript.galaxy:3067
}
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UIAlertClear(gv_p01_USER);
TriggerEnable(TriggerGetCurrent(), false);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/thorner05s.sc2map/MapScript.galaxy:3976
gv_computer02InCameraMode = true;
gv_computerInUse = true;
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UIAlertClear(gv_p01_USER);
TransmissionClearAll();
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/thorner05s.sc2map/MapScript.galaxy:4792
TriggerExecute(gt_Computer04WarbotHelpPanel, true, false);
gv_computer04InCameraMode = true;
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
gv_computerInUse = true;
TransmissionClearAll();
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/thorner05s.sc2map/MapScript.galaxy:5232
gv_computer05InCameraMode = true;
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UIAlertClear(gv_p01_USER);
TriggerExecute(gt_Computer05BrutaliskHelpPanel, true, false);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/thorner05s.sc2map/MapScript.galaxy:5722
gv_computerInUse = true;
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UIAlertClear(gv_p01_USER);
TransmissionClearAll();
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tstory01.sc2map/MapScript.galaxy:16720
}
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowPings, false);
HelpPanelEnableTechTreeButton(PlayerGroupAll(), false);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/tstory01.sc2map/MapScript.galaxy:16721
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowPings, false);
HelpPanelEnableTechTreeButton(PlayerGroupAll(), false);
HelpPanelEnableTechGlossaryButton(PlayerGroupAll(), false);
campaigns/liberty.sc2campaign — base.sc2maps/maps/campaign/ttutorial01.sc2map/MapScript.galaxy:1105
UIUnitColorStyleOverride(PlayerGroupActive(), c_unitColorStyleNormal);
UISetFrameVisible(PlayerGroupAll(), c_syncFrameTypeCharacterSheetButton, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowPings, false);
HelpPanelEnableTechTreeButton(PlayerGroupAll(), false);
HelpPanelEnableTechGlossaryButton(PlayerGroupAll(), false);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/advancedcommand.sc2map/MapScript.galaxy:191
PlayerModifyPropertyInt(gv_pLAYER_COMPUTER1, c_playerPropMinerals, c_playerPropOperSetTo, 1600);
PlayerModifyPropertyInt(gv_pLAYER_COMPUTER1, c_playerPropVespene, c_playerPropOperSetTo, 1000);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/advancedcommand.sc2map/MapScript.galaxy:192
PlayerModifyPropertyInt(gv_pLAYER_COMPUTER1, c_playerPropVespene, c_playerPropOperSetTo, 1000);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/C9B47DEF"));
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/advancedcommand.sc2map/MapScript.galaxy:193
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/C9B47DEF"));
return true;
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/advancedcommand.sc2map/MapScript.galaxy:732
UnitGroupLoopEnd();
UnitPauseAll(true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/advancedcommand.sc2map/MapScript.galaxy:733
UnitPauseAll(true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/9993AB03"));
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/advancedcommand.sc2map/MapScript.galaxy:734
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/9993AB03"));
return true;
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/advancedcommand.sc2map/MapScript.galaxy:926
}
UnitGroupLoopEnd();
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/advancedcommand.sc2map/MapScript.galaxy:927
UnitGroupLoopEnd();
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UnitPauseAll(false);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/advancedcommand.sc2map/MapScript.galaxy:928
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UnitPauseAll(false);
return true;
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/protosspsionics.sc2map/MapScript.galaxy:277
UISetFrameVisible(PlayerGroupAll(), c_syncFrameTypeResourcePanel, false);
UISetFrameVisible(PlayerGroupAll(), c_syncFrameTypeSupply, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/protosspsionics.sc2map/MapScript.galaxy:278
UISetFrameVisible(PlayerGroupAll(), c_syncFrameTypeSupply, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
TechTreeUpgradeAddLevel(gv_pLAYER_COMPUTER1, "SiegeTech", 1);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/protosspsionics.sc2map/MapScript.galaxy:279
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
TechTreeUpgradeAddLevel(gv_pLAYER_COMPUTER1, "SiegeTech", 1);
return true;
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/protosspsionics.sc2map/MapScript.galaxy:770
UnitGroupLoopEnd();
UnitPauseAll(true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/protosspsionics.sc2map/MapScript.galaxy:771
UnitPauseAll(true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
return true;
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/protosspsionics.sc2map/MapScript.galaxy:772
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
return true;
}
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/protosspsionics.sc2map/MapScript.galaxy:1063
UnitGroupLoopEnd();
UnitPauseAll(false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, true);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/protosspsionics.sc2map/MapScript.galaxy:1064
UnitPauseAll(false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, true);
return true;
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/protosspsionics.sc2map/MapScript.galaxy:1065
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, true);
return true;
}
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/terrancovertops.sc2map/MapScript.galaxy:186
TriggerExecute(gt_Init01aTechnology, true, true);
UISetFrameVisible(PlayerGroupAll(), c_syncFrameTypeResourcePanel, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/terrancovertops.sc2map/MapScript.galaxy:187
UISetFrameVisible(PlayerGroupAll(), c_syncFrameTypeResourcePanel, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/615A98DF"));
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/terrancovertops.sc2map/MapScript.galaxy:188
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/615A98DF"));
return true;
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/terrancovertops.sc2map/MapScript.galaxy:718
}
UnitGroupLoopEnd();
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/terrancovertops.sc2map/MapScript.galaxy:719
UnitGroupLoopEnd();
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/2FFC5827"));
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/terrancovertops.sc2map/MapScript.galaxy:720
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/2FFC5827"));
return true;
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/terrancovertops.sc2map/MapScript.galaxy:912
UnitGroupLoopEnd();
UnitPauseAll(false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, true);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/terrancovertops.sc2map/MapScript.galaxy:913
UnitPauseAll(false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, true);
return true;
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/terrancovertops.sc2map/MapScript.galaxy:914
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, true);
return true;
}
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/zerginfestation.sc2map/MapScript.galaxy:185
libNtve_gf_SetAlliance(gv_pLAYER_USER, gv_pLAYER_COMPUTER1, libNtve_ge_AllianceSetting_Enemy);
UISetFrameVisible(PlayerGroupAll(), c_syncFrameTypeResourcePanel, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/zerginfestation.sc2map/MapScript.galaxy:186
UISetFrameVisible(PlayerGroupAll(), c_syncFrameTypeResourcePanel, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowMinimap, false);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/zerginfestation.sc2map/MapScript.galaxy:187
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowMinimap, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/8D855B3F"));
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/zerginfestation.sc2map/MapScript.galaxy:188
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowMinimap, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/8D855B3F"));
return true;
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/zerginfestation.sc2map/MapScript.galaxy:700
}
UnitGroupLoopEnd();
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/zerginfestation.sc2map/MapScript.galaxy:701
UnitGroupLoopEnd();
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/F9FB8152"));
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/zerginfestation.sc2map/MapScript.galaxy:702
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/F9FB8152"));
return true;
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/zerginfestation.sc2map/MapScript.galaxy:890
UnitPauseAll(false);
libLbty_gf_OrderWorkerstoGatherNearbyResources(RegionEntireMap(), gv_pLAYER_COMPUTER1);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, true);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/zerginfestation.sc2map/MapScript.galaxy:891
libLbty_gf_OrderWorkerstoGatherNearbyResources(RegionEntireMap(), gv_pLAYER_COMPUTER1);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowMinimap, true);
campaigns/liberty.sc2campaign — base.sc2maps/maps/challenges/zerginfestation.sc2map/MapScript.galaxy:892
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowMinimap, true);
return true;
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner05s.sc2map — MapScript.galaxy:2905
UnitSetState(gv_turret05, c_unitStateSelectable, true);
UnitSetState(gv_turret06, c_unitStateSelectable, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UnitSetState(UnitFromId(1488), c_unitStateSelectable, false);
UnitSetState(UnitFromId(1488), c_unitStateStatusBar, false);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner05s.sc2map — MapScript.galaxy:3067
}
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UIAlertClear(gv_p01_USER);
TriggerEnable(TriggerGetCurrent(), false);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner05s.sc2map — MapScript.galaxy:3976
gv_computer02InCameraMode = true;
gv_computerInUse = true;
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UIAlertClear(gv_p01_USER);
TransmissionClearAll();
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner05s.sc2map — MapScript.galaxy:4792
TriggerExecute(gt_Computer04WarbotHelpPanel, true, false);
gv_computer04InCameraMode = true;
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
gv_computerInUse = true;
TransmissionClearAll();
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner05s.sc2map — MapScript.galaxy:5232
gv_computer05InCameraMode = true;
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UIAlertClear(gv_p01_USER);
TriggerExecute(gt_Computer05BrutaliskHelpPanel, true, false);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner05s.sc2map — MapScript.galaxy:5722
gv_computerInUse = true;
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UIAlertClear(gv_p01_USER);
TransmissionClearAll();
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tstory01.sc2map — MapScript.galaxy:16720
}
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowPings, false);
HelpPanelEnableTechTreeButton(PlayerGroupAll(), false);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/tstory01.sc2map — MapScript.galaxy:16721
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowPings, false);
HelpPanelEnableTechTreeButton(PlayerGroupAll(), false);
HelpPanelEnableTechGlossaryButton(PlayerGroupAll(), false);
campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/ttutorial01.sc2map — MapScript.galaxy:1105
UIUnitColorStyleOverride(PlayerGroupActive(), c_unitColorStyleNormal);
UISetFrameVisible(PlayerGroupAll(), c_syncFrameTypeCharacterSheetButton, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowPings, false);
HelpPanelEnableTechTreeButton(PlayerGroupAll(), false);
HelpPanelEnableTechGlossaryButton(PlayerGroupAll(), false);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/advancedcommand.sc2map — MapScript.galaxy:191
PlayerModifyPropertyInt(gv_pLAYER_COMPUTER1, c_playerPropMinerals, c_playerPropOperSetTo, 1600);
PlayerModifyPropertyInt(gv_pLAYER_COMPUTER1, c_playerPropVespene, c_playerPropOperSetTo, 1000);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/advancedcommand.sc2map — MapScript.galaxy:192
PlayerModifyPropertyInt(gv_pLAYER_COMPUTER1, c_playerPropVespene, c_playerPropOperSetTo, 1000);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/C9B47DEF"));
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/advancedcommand.sc2map — MapScript.galaxy:193
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/C9B47DEF"));
return true;
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/advancedcommand.sc2map — MapScript.galaxy:732
UnitGroupLoopEnd();
UnitPauseAll(true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/advancedcommand.sc2map — MapScript.galaxy:733
UnitPauseAll(true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/9993AB03"));
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/advancedcommand.sc2map — MapScript.galaxy:734
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/9993AB03"));
return true;
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/advancedcommand.sc2map — MapScript.galaxy:926
}
UnitGroupLoopEnd();
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/advancedcommand.sc2map — MapScript.galaxy:927
UnitGroupLoopEnd();
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UnitPauseAll(false);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/advancedcommand.sc2map — MapScript.galaxy:928
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UnitPauseAll(false);
return true;
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/protosspsionics.sc2map — MapScript.galaxy:277
UISetFrameVisible(PlayerGroupAll(), c_syncFrameTypeResourcePanel, false);
UISetFrameVisible(PlayerGroupAll(), c_syncFrameTypeSupply, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/protosspsionics.sc2map — MapScript.galaxy:278
UISetFrameVisible(PlayerGroupAll(), c_syncFrameTypeSupply, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
TechTreeUpgradeAddLevel(gv_pLAYER_COMPUTER1, "SiegeTech", 1);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/protosspsionics.sc2map — MapScript.galaxy:279
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
TechTreeUpgradeAddLevel(gv_pLAYER_COMPUTER1, "SiegeTech", 1);
return true;
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/protosspsionics.sc2map — MapScript.galaxy:770
UnitGroupLoopEnd();
UnitPauseAll(true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/protosspsionics.sc2map — MapScript.galaxy:771
UnitPauseAll(true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
return true;
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/protosspsionics.sc2map — MapScript.galaxy:772
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
return true;
}
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/protosspsionics.sc2map — MapScript.galaxy:1063
UnitGroupLoopEnd();
UnitPauseAll(false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, true);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/protosspsionics.sc2map — MapScript.galaxy:1064
UnitPauseAll(false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, true);
return true;
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/protosspsionics.sc2map — MapScript.galaxy:1065
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, true);
return true;
}
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/terrancovertops.sc2map — MapScript.galaxy:186
TriggerExecute(gt_Init01aTechnology, true, true);
UISetFrameVisible(PlayerGroupAll(), c_syncFrameTypeResourcePanel, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/terrancovertops.sc2map — MapScript.galaxy:187
UISetFrameVisible(PlayerGroupAll(), c_syncFrameTypeResourcePanel, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/615A98DF"));
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/terrancovertops.sc2map — MapScript.galaxy:188
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/615A98DF"));
return true;
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/terrancovertops.sc2map — MapScript.galaxy:718
}
UnitGroupLoopEnd();
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/terrancovertops.sc2map — MapScript.galaxy:719
UnitGroupLoopEnd();
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/2FFC5827"));
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/terrancovertops.sc2map — MapScript.galaxy:720
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/2FFC5827"));
return true;
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/terrancovertops.sc2map — MapScript.galaxy:912
UnitGroupLoopEnd();
UnitPauseAll(false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, true);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/terrancovertops.sc2map — MapScript.galaxy:913
UnitPauseAll(false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, true);
return true;
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/terrancovertops.sc2map — MapScript.galaxy:914
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, true);
return true;
}
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/zerginfestation.sc2map — MapScript.galaxy:185
libNtve_gf_SetAlliance(gv_pLAYER_USER, gv_pLAYER_COMPUTER1, libNtve_ge_AllianceSetting_Enemy);
UISetFrameVisible(PlayerGroupAll(), c_syncFrameTypeResourcePanel, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/zerginfestation.sc2map — MapScript.galaxy:186
UISetFrameVisible(PlayerGroupAll(), c_syncFrameTypeResourcePanel, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowMinimap, false);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/zerginfestation.sc2map — MapScript.galaxy:187
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowMinimap, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/8D855B3F"));
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/zerginfestation.sc2map — MapScript.galaxy:188
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowMinimap, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/8D855B3F"));
return true;
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/zerginfestation.sc2map — MapScript.galaxy:700
}
UnitGroupLoopEnd();
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/zerginfestation.sc2map — MapScript.galaxy:701
UnitGroupLoopEnd();
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/F9FB8152"));
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/zerginfestation.sc2map — MapScript.galaxy:702
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, false);
UISetCommandDisallowedMessage(PlayerGroupAll(), StringExternal("Param/Value/F9FB8152"));
return true;
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/zerginfestation.sc2map — MapScript.galaxy:890
UnitPauseAll(false);
libLbty_gf_OrderWorkerstoGatherNearbyResources(RegionEntireMap(), gv_pLAYER_COMPUTER1);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, true);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/zerginfestation.sc2map — MapScript.galaxy:891
libLbty_gf_OrderWorkerstoGatherNearbyResources(RegionEntireMap(), gv_pLAYER_COMPUTER1);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowMinimap, true);
campaigns/liberty.sc2campaign/base.sc2maps/maps/challenges/zerginfestation.sc2map — MapScript.galaxy:892
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowHotkeys, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowButtons, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowMinimap, true);
return true;
mods/heroes.stormmod — base.stormmaps/maps/heroes/singleplayermaps/startingexperience/tutorialmapmechanics.stormmap/MapScript.galaxy:1516
VisRevealerCreate(libStEx_gv_pLAYER_01_USER, RegionCircle(UnitGetPosition(gv_tributeCutsceneUnit), 4.0));
gv_cinematicRevealer = VisRevealerLastCreated();
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowQueue, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UnitCreateEffectUnit(gv_heroPlayer, "TutorialCancelMoveOrders", gv_heroPlayer);
mods/heroes.stormmod — base.stormmaps/maps/heroes/singleplayermaps/startingexperience/tutorialmapmechanics.stormmap/MapScript.galaxy:1517
gv_cinematicRevealer = VisRevealerLastCreated();
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowQueue, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UnitCreateEffectUnit(gv_heroPlayer, "TutorialCancelMoveOrders", gv_heroPlayer);
Wait(2.5, c_timeReal);
mods/heroes.stormmod — base.stormmaps/maps/heroes/singleplayermaps/startingexperience/tutorialmapmechanics.stormmap/MapScript.galaxy:1523
UnitIssueOrder(gv_heroPlayer, OrderTargetingUnit(AbilityCommand("CaptureMacGuffin", 0), gv_tributeCutsceneUnit), c_orderQueueAddToEnd);
Wait(0.5, c_timeReal);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowQueue, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
CameraApplyInfo(gv_pLAYER_01_USER, CameraInfoFromId(645787284), 0.0, -1, 10.0, true);
mods/heroes.stormmod — base.stormmaps/maps/heroes/singleplayermaps/startingexperience/tutorialmapmechanics.stormmap/MapScript.galaxy:1524
Wait(0.5, c_timeReal);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowQueue, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
CameraApplyInfo(gv_pLAYER_01_USER, CameraInfoFromId(645787284), 0.0, -1, 10.0, true);
CameraApplyInfo(gv_pLAYER_01_USER, CameraInfoFromId(562257944), 5.0, -1, 5.0, true);
mods/heroes.stormmod — base.stormmaps/maps/heroes/singleplayermaps/startingexperience/tutorialmapmechanics.stormmap/MapScript.galaxy:1792
}
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowQueue, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
VisRevealerDestroy(gv_cinematicRevealer);
mods/heroes.stormmod — base.stormmaps/maps/heroes/singleplayermaps/startingexperience/tutorialmapmechanics.stormmap/MapScript.galaxy:1793
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowQueue, true);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, true);
VisRevealerDestroy(gv_cinematicRevealer);
return true;
mods/heroes.stormmod/base.stormmaps/maps/heroes/singleplayermaps/startingexperience/tutorialmapmechanics.stormmap — MapScript.galaxy:1516
VisRevealerCreate(libStEx_gv_pLAYER_01_USER, RegionCircle(UnitGetPosition(gv_tributeCutsceneUnit), 4.0));
gv_cinematicRevealer = VisRevealerLastCreated();
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowQueue, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UnitCreateEffectUnit(gv_heroPlayer, "TutorialCancelMoveOrders", gv_heroPlayer);
mods/heroes.stormmod/base.stormmaps/maps/heroes/singleplayermaps/startingexperience/tutorialmapmechanics.stormmap — MapScript.galaxy:1517
gv_cinematicRevealer = VisRevealerLastCreated();
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowQueue, false);
UISetCommandAllowed(PlayerGroupAll(), c_uiCommandAllowSmartClick, false);
UnitCreateEffectUnit(gv_heroPlayer, "TutorialCancelMoveOrders", gv_heroPlayer);
Wait(2.5, c_timeReal);