Advertisement
TrulyInsane1

WoW Macro - Auto-Mount After Looting

Jul 16th, 2018
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. This is a macro that you run once when you're ready to head out farming, this is meant for a non-Druid class that is using a Sky Golem as their mount so they can Herb.
  2.  
  3. I use this macro on my Monk, I never leveled a Druid, yet. Basically it mounts me in to the Sky Golem if I'm not already in it, after I've looted something, in my case usually after killing something or mining a node.
  4.  
  5. To disable the macro, simply /reloadui and it will stop running. Don't try to run this macro all the time, it would get a little annoying I imagine having it try to mount after every single kill during a 'kill 50 of these' quest line.
  6.  
  7. Here is the Auto-Mount macro:
  8. /run local f=AtH or CreateFrame("Frame","AtH") f:SetScript("OnEvent",function() if IsMounted() ~= true then C_MountJournal.SummonByID(522) end end)f:RegisterEvent("LOOT_CLOSED")
  9.  
  10. And here is the macro I use to get the ID of the mounts so that I can change it to any other mount I own. Simply mouse over the mount you want to use, hit this macro, and it's ID will be output to chat. Replace the 522 in C_MountJournal.SummonByID(522) with the new number and you're good to go.
  11.  
  12. <posting macro soon>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement