• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

HIVE

Tasyen
Tasyen
Frame names can be found in fdf. The ones you want are in ui\framedef\ui\upperbuttonbar.fdf. They are "UpperButtonBarChatButton", 0
"UpperButtonBarAlliesButton", 0
"UpperButtonBarMenuButton", 0
"UpperButtonBarQuestsButton", 0

FrameNames can be found here aswell: https://www.hiveworkshop.com/threads/default-names-for-blzgetframebyname.315846/

BlzGetFrameByName( "UpperButtonBarAlliesButton", 0) would return the framehandle for the ally button.
To stop hotkey usage you also need to disable the frame. Sadly you have to redo the disabling everytime the local player opens/closes a Menu (F10)
Zwiebelchen
Zwiebelchen
Thanks for your help. Exactly what I needed. i dont care about the hotkeys so all I have to do is hiding the buttons once, right?
Or did you mean that once someone opens the menu that all buttons are back in their default state?
Tasyen
Tasyen
The game enables the normaly useable buttons everytime the local player closes Quest/Menu/Alliance/Chat/Log.
Visiblity of the buttons does not change.
Zwiebelchen
Zwiebelchen
So setting them to invisible or moving them out of the screen will do the trick. Alright.
Top