Zone checking macro

Hello,
so I kind of hate the Sky Golem’s looks, but its usefulness (herb gathering) makes it essential. The thing is, you don’t need to gather herbs in cities etc.
Is there a way to check if current zone is safe (Zzz) in a macro (same way as flyable for example), so i could use a better looking mount in cities under the same key?
Thank you

Thanks for your reply.
The thread says how to depend mount choice based on map name, but i don’t think listing all possible cities is a great idea.

1 Like

Thanks, that’s exactly what i needed.
In case somebody’s a herbalist hating the Sky Golem look, here’s the macro:

#showtooltip
/run if IsResting() then C_MountJournal.SummonByID(0) else C_MountJournal.SummonByID(522) end

Pretty sure the Show command won’t work in this situation so you’ll want to set an icon or designate a mount. Also if you wanted to slim it down a little, you can use something like this.

#showtooltip Sky Golem
/run m=C_MountJournal.SummonByID;if IsResting() then m(0) else m(522) end

Not quite fully up to date but Wowpedia has most of your mountIDs.
https://wow.gamepedia.com/MountID

4 Likes

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