Nexus: keybind to open/close boxes

edited June 2020 in Client Help
Hi!
Is there any way we can set an alias or a keybind to open/close a certain box in the Nexus client?
For example: Ctrl+I will open the Inventory box; Ctrl+M will open/close the Map box, etc.
Thanks in advance

Comments

  • I just learned we can handle the page javascript and CSS in any script that we write within Nexus. So this topic is solved!

    Example:
    1) Create a new keybind inside Nexus settings and set it to Ctrl+B
    2) Go to the developer inspector in your browser (likely F12), and find the id of the box you want to hide/show. Mine is floater_75 for the Inventory.
    3) Write the following line as a script for the keybind in Nexus:

    $("#floater_75").toggle();

    Done! :)

Sign In or Register to comment.