I’ve been using shift+space to mount for years and have the muscle memory built in so would like to use a macro to check if I’m in Undermine to use the car otherwise use my flying mount. I don’t want to download an addon for 1 mount…
Replace ground mount with the breakneck
It works but it doesn’t work anywhere else. Like when I’m in a dungeon it will say say “not in Undermine” because I can’t fly and it’s trying to use the car.
You might want to try the addon LiteMount or change up the macro so the Breakneck is on a modified press.
#showtooltip
/cast [mod:alt] G-99 Breakneck; [flyable] [advflyable] FLYING_MOUNT; GROUND_MOUNT
/dismount [mounted]
Saw this one floating around and works pretty good:
#showtooltip
/dismount
/quietcast [nomounted, noflyable] G-99 Breakneck
/run if not IsMounted() then C_MountJournal.SummonByID(0) end
C_MountJournal.SummonByID(0) acts just like pressing the in game random favorite mount button. You can change the zero in it to a specific mount ID so it isnt random.
example i use: C_MountJournal.SummonByID(2296) which will always summon the new Delver’s gob-trotter if i’m not in undermine zone.
You can get most of the mount IDs from warcraft wiki but it hasnt been updated in a couple years. Wago has a searchable database that has all the new ones though:
https://wago.tools/db2/Mount
edit - thanks Elvenbane =)
Wrap them in code tags (</>
button in the editor)