Mount Macro
I have been looking for ways to automatically use a particular mount for World of Warcraft locations using a macro without having several mount icons consuming my action bar slots. It will check an area if it’s flyable then it calls your favorite flying mount when in Outland or Northrend, if not, it will summon a ground mount instead. You can also use the same icon to dismount.
Here’s the macro :
/run if IsMounted() then Dismount() elseif IsFlyableArea() then CallCompanion(“Mount”,2) else CallCompanion(“Mount”,3) end

