jonass480 0 Report post Posted December 1, 2017 When I attempt to use the /use command I get a message stating type /help for a listing of commands yada yada. Is the /use command not implemented in Elysium? I have successfully used /cast with no issue. I am trying to make a macro of /use Conjured Purified Water so I can eventually make an eat and drink button. Any help? 0 Share this post Link to post Share on other sites
Fulzamoth 5 Report post Posted December 1, 2017 /use isn't available until 2.0.1, so not in Vanilla. 0 Share this post Link to post Share on other sites
jonass480 0 Report post Posted December 1, 2017 Oh well thank you then. 0 Share this post Link to post Share on other sites
jonass480 0 Report post Posted December 1, 2017 Any way to use items wit macros? 0 Share this post Link to post Share on other sites
Fulzamoth 5 Report post Posted December 1, 2017 You can use two API calls (via /script) in succession to swap items into a particular slot. Use this if you need to direct an item to main hand or offhand slots. PickupContainerItem(bagID,slot); -- pickup up the item in your bag PickupInventoryItem(slotID); -- "pickup" the item in your worn inventory to swap If you're just swapping an item that only goes to one slot, like head or chest, you can just use and item directly. UseContainerItem(bagID,slot) -- use an item from your inventory Important safety tip! Calling UseContainerItem() with a vendor window open will sell the item. 0 Share this post Link to post Share on other sites