Dragonriding condition macro?

Is there some macro that tells you whether you can dragonride?

Like [flyable] for flying mounts (zones in which flying is allowed.

Nope. Not yet.

1 Like

#showtooltip
/cast [dragonridable] Cliffside Wylderdrake
/cast [noflyable] Mawsworn Charger
/cast [flyable] Cartel Master’s Gearglider

Works great for me. The tooltip image won’t change, but it uses the correct mounts at least

1 Like

[dragonridable] isn’t a thing so the game is just ignoring it. Would do the same thing if you wrote it

#showtooltip
/cast Cliffside Wylderdrake
/cast [flyable] Cartel Master's Gearglider; Mawsworn Charger
1 Like

Ye it even tells you in chat.

yeah, you’re actually right. But doesn’t this take care of the OP’s issues, or am I misunderstanding what type of macro they need?
At least it uses the correct mounts for me depending on what type of zone I am in

Yeah it does.

Here’s a variation:

#showtooltip
/run if IsUsableSpell(368896) then C_MountJournal.SummonByID(1589) end
/cast [flyable] FLYING_MOUNT; GROUND_MOUNT
/dismount [mounted]
Replace 1589 with the ID of the mount you want to summon: 
1589: Renewed Proto-Drake
1590: Windborne Velocidrake
1591: Cliffside Wylderdrake
1563: Highland Drake
2 Likes

Is there a way to make it use a random one of the 4 Dragonriding mounts instead of the fixed SummonByID?

C_MountJournal.SummonByID(0)
and you’ll need to have them set as favorites

Use the summon random mount button in your mount journal (drag the button to your castbar). It will summon one of your favourite’s based on whether you can use it in your current zone

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.