Page MenuHomeFeedback Tracker

A way to completely disable the Commanding Menu due blocking ability to use the Action-Menu and top-left 2D map menu
New, NormalPublic

Description

There is currently no way to disable this menu, it can be hidden using showHUD but it is still active and usable.
Note some mods use command menu enable button for their needs At the same time calling an invisible command menu, which blocks the action menu
This leads to problems: take up something from ground, board into a vehicles, etc.

There are some popular methods to get rid of this problem, both for the average player and for the mission author

  • pressing RMB or Backspace untill top-left menu was shown on the 2d map
  • using Loops or onEachFrame with executed code showCommandingMenu "";

I would like to have some solution to this problem:

  • showHUD with hide commanding menu parameter will also disable ability to call this menu?
  • disableCommandingMenu script comand?
  • BIKI note with script examples of problem solution like? e.g:
['MyEvent_commandingMenu', 'onEachFrame', {showCommandingMenu ''}] call BIS_fnc_addStackedEventHandler;

Details

Severity
Minor
Resolution
Open
Reproducibility
Always
Operating System
Windows 11 x64
Operating System Version
22H2
Category
Ingame UI
Steps To Reproduce
  1. Eden Editor, any world, place a unit-player and vehicle (e.g. Hunter)
  2. start mission, exec this code via debug menu
showHUD
[
    (shownHUD#0),//scriptedHUD
    (shownHUD#1),//info
    (shownHUD#2),//radar
    (shownHUD#3),//compass
    (shownHUD#4),//direction
    false,//→ hides commanding menu
    (shownHUD#6),//group
    (shownHUD#7),//cursors
    (shownHUD#8),//panels
    (shownHUD#9),//kills
    (shownHUD#10)//showIcon3D
];
  1. move closer to vehicle
  2. press ~ key (to open commanding menu)
  3. now try to get in vehicle. Untill invisible menu closed the action-menu with 'get in vehicle' action will be unable
Additional Information

(see top-left menu) this is a Commanding Menu

here Commanding Menu was hidden by showHUD

it still active and make not possible to board vehicle

also problem can be reproed by 3D map manu, here with closed Commanding Menu

opened Commanding Menu

Event Timeline

TRAGER created this task.Jan 8 2024, 11:44 AM