How Can I Switch Trinkets With A WoW Mount Macro?

I have a speed enhancement trinket, I would like to remove my regular trinket and put on my speed trinket when i use my mount macro and then when i dismount go back to the others. How can I do this in the mount macro?

Taking the mount macro that we have been playing around with this can easily be added into it. I will use the most basic of mount macros so you can easily follow what is added into the macro code.

/use [nomounted,outdoors] Whistle of the Black War Raptor

What that does is just mount you up if you are not already mounted and if you are currently outside. Here is the piece of code we will add into the macro.

/equip [nomounted,outdoors] Riding Crop;

That will equip your Riding Crop trinket if you are not mounted and are currently outside. We use these 2 macro commands like below in order to switch over to the Riding Crop trinket and then mount up.

Cheap WoW WOTLK Classic Gold

/equip [nomounted,outdoors] Riding Crop;
/use [nomounted, outdoors] Whistle of the Black War Raptor;

That will get us up on our mount with the Riding Crop trinket equipped. Now we just need to see how to dismount and switch the trinket back over to the one we want to use whenever we are not mounted.

/equip [mounted] Trinket we want to replace riding crop with;
/dismount [mounted];

That part will switch the trinket back over to the one that you want to use whenever you are not mounted and then dismount you from the mount. Pretty simple, eh?

Anyway, here is the complete macro for you to use and like always it will need a little bit of modification in order to work with your specific mount and/or trinkets.

/equip [nomounted,outdoors] Riding Crop;
/use [nomounted, outdoors] Whistle of the Black War Raptor;
/equip [mounted] Trinket we want to replace riding crop with;
/dismount [mounted];

There you go and have fun with it!

Related Articles