View Single Post
10/25/22, 10:43 PM   #2
wookiefriseur
 
wookiefriseur's Avatar
Join Date: Mar 2014
Posts: 53
Talking Or just use Housing Hub

Some useful links in https://www.esoui.com/forums/showthread.php?t=9867


You could probably do something like that:


Bindings.xml

Xml Code:
  1. <Bindings>
  2.     <Layer name="SI_KEYBINDINGS_CATEGORY_GENERAL">
  3.         <Category name="PrimeRibeye's AddOn">
  4.             <Action name="Travel to Crafting House">
  5.                 <Down>CraftingHouse.Port()</Down>
  6.             </Action>
  7.         </Category>
  8.     </Layer>
  9. </Bindings>


Don't forget to make the local Port function available globally, for instance with
Lua Code:
  1. CraftingHouse.Port = Port()
, and to add the Bindings.xml to your CraftingHouse.txt
That should be enough, but can't test it ingame right now.
  Reply With Quote