fedorovvl / tso_client

The Settlers Online client
43 stars 24 forks source link

[Req] Hotkey to open StarMenu #322

Closed GregSam closed 1 year ago

GregSam commented 1 year ago

Hi Team, could you add a hotkey to open/close StarMenu please. Ive tested this function call, works fine :)

globalFlash.gui.ToggleStarMenu(null);

I have bounded this to the space key, it is more convenient for me to hit space than move and click mouse button. I think more players would find it useful.

cheers JZ

fedorovvl commented 1 year ago

hi. u can create simple userscript like

addToolsMenuItem("Toggle StarMenu", ToggleStarMenuHandler);
function ToggleStarMenuHandler(event)
{
    globalFlash.gui.ToggleStarMenu(null);
}

изображение and then assing hotkey to it in hotkey manager изображение

GregSam commented 1 year ago

thanks, Ill do that.

GregSam commented 1 year ago

closed