MountRndCat
This is a tiny addon that let you define custom categories and then random summon a mount from them.
What you need to do is to edit the file categories.lua in the addon directory (some samples are provided) with the name of your favorite mounts.
Then use a macro like this to summon them:
/mrc flying; repair; funny; ground
or simply use the command from the cli, i.e.:
/mrc combo
The categories are shared on all characters of the same account.
Here is a categories.lua suitable for alliance players (english client):
mounts = {
flying = {
"Swift Green Gryphon",
"Swift Blue Gryphon",
"Swift Red Gryphon",
},
ground = {
"Swift Mistsaber",
"Swift Moonsaber",
},
repair = {
"Traveler's Tundra Mammoth",
"Grand Expedition Yak",
},
funny = {
"Azure Water Strider",
"Sea Turtle",
},
combo = {
"Sandstone Drake",
"Mekgineer's Chopper",
},
-- add your custom categories here
}
-- I also whish to thanks SDPhantom and Phanx for their help, code and suggestions that help me so much in understanding and writing my first addon.
This is a tiny addon that let you define custom categories and then random summon a mount from them.
What you need to do is to edit the file categories.lua in the addon directory (some samples are provided) with the name of your favorite mounts.
Then use a macro like this to summon them:
/mrc flying; repair; funny; ground
or simply use the command from the cli, i.e.:
/mrc combo
The categories are shared on all characters of the same account.
Here is a categories.lua suitable for alliance players (english client):
mounts = {
flying = {
"Swift Green Gryphon",
"Swift Blue Gryphon",
"Swift Red Gryphon",
},
ground = {
"Swift Mistsaber",
"Swift Moonsaber",
},
repair = {
"Traveler's Tundra Mammoth",
"Grand Expedition Yak",
},
funny = {
"Azure Water Strider",
"Sea Turtle",
},
combo = {
"Sandstone Drake",
"Mekgineer's Chopper",
},
-- add your custom categories here
}
-- I also whish to thanks SDPhantom and Phanx for their help, code and suggestions that help me so much in understanding and writing my first addon.