How Do I Create A Multiple Mount WoW Macro?

Posted on April 22, 2007 by Apadwe

I was wondering if there was anyway to make a WoW macro for multiple mounts. Like, for example, I have 4 mounts the Striped Frostaber mount, Striped Nightsaber mount, Spotted Frostsaber mount and the Purple Elekk mount. Is there anyway to put them in the same Macro so I will have one button that will mount me on one of these mounts randomly?

Wow, 4 mounts! Got me beat…I only have 3 but anyway, there is a pretty simple way to accomplish this using macros. On a side note, I also hate having to take up space on my user interface with multiple mount buttons.

Here is the code to put them all to one mount button and to mount on a random mount:

/dismount [mounted]
/userandom [nomounted] <mount1>, <mount2>, <mount3>, <mount4>

Pretty simple mount macro. The first line just dismounts you if you are already mounted. The second line will use one of the mount items listed in the <mount> spots if you are not mounted. The [nomounted] will check to make sure you are not mounted before trying to mount. This basically just keeps you from getting the "You Are Already Mounted" error message.

Just remember to replace where it says <mount#> with the name of the mount. For example, if I wanted to list my Gray Kodo in the <mount1> spot I would put Gray Kodo instead of <mount1>.

Here is how the macro would look with all of your mounts listed in it:

/dismount [mounted]
/userandom [nomounted] Reins of the Striped Frostsaber, Reins of the Spotted Frostsaber, Reins of the Striped Nightsaber, Purple Elekk

The only problem I think you will run into is trying to keep this macro under the maximum of 255 characters. Luckily this only weighs in at 155 characters so as you get more mounts you could add in another 100 characters of mount names.

Spread the word

del.icio.us Digg Furl Reddit Google Technorati Windows Live Yahoo! Help

Permalink Print • 4 Comments

Related Entries

4 Comments on How Do I Create A Multiple Mount WoW Macro? »

May 10, 2007

Xanth @ 9:04 pm:

Here's my mount macro. It will summon my flying mount with a left click and my ground mount with a right click of the same macro button…

/cast [button:2] Summon Dreadsteed
/stopmacro [button:2]
/cast Ebon Gryphon
/dismount

July 31, 2007

Neo @ 5:23 am:

Mount Macro for both Flying and Non-Flying Mounts. Clicking on this macro will let your ride a flyable mount if you are in an area where flying is allowed (outlands?) and will let you ride a normal mount if flying is not possible (Azeroth)

/dismount
/castrandom [flyable] Swift Purple Windrider; Red Skeletal Warhorse, Whistle of the Black War Raptor, Black War Kodo, Horn of the Black War Wolf

November 5, 2007

JaCKaL @ 1:29 pm:

I actually kinda like, doesn't give any error messages, and the macro button will show next mount to be used:

#showtooltip
/castsequence [nomounted,flyable] reset=ctrl ,; [nomounted] ,
/dismount [flyable]

This macro will cycle (sequentially) through your various mounts, depending on whether you are in Azeroth or Outland. If you don't like automatically dismounting to perform actions while on the ground, remove the [flyable] qualifier from the dismount.

JaCKaL @ 1:30 pm:

I actually kinda like, doesn't give any error messages, and the macro button will show next mount to be used:

#showtooltip
/castsequence [nomounted,flyable] reset=ctrl flyingmount1,flyingmount2; [nomounted] mount1,mount2
/dismount [flyable]

This macro will cycle (sequentially) through your various mounts, depending on whether you are in Azeroth or Outland. If you don't like automatically dismounting to perform actions while on the ground, remove the [flyable] qualifier from the dismount.

Leave a Comment