Thread Tools Display Modes
03-04-17, 04:02 AM   #1
Uggers
A Fallenroot Satyr
 
Uggers's Avatar
Join Date: May 2008
Posts: 26
Mount Journal Help

Hiya,

I'm trying to get an addon working properly again called MountManager, With the legion C_MountJournal changes I made some edits to get the addon working again from a functionality point of view.

The scanning function of the addon to check the journal I believe is this portion of the LUA

Lua Code:
  1. function MountManager:ScanForNewMounts()
  2.     local newMounts = 0
  3.     for index = 1,C_MountJournal.GetNumMounts() do
  4.         local _, spellID, _, _, _, _, _, isFactionSpecific, faction, _, isCollected = C_MountJournal.GetMountInfoByID(index)
  5.         --make sure its valid and not already found
  6.         local correctFaction = not isFactionSpecific or (self.db.char.faction == "Horde" and faction == 0) or (self.db.char.faction == "Alliance" and faction == 1)
  7.         if correctFaction == true and isCollected == true and not self:MountExists(spellID) then
  8.             newMounts = newMounts + 1
  9.            
  10.             local _, _, _, _, mountType = C_MountJournal.GetMountInfoExtraByID(index)
  11.            
  12.             -- 269 for 2 Water Striders (Azure and Crimson)
  13.             -- 254 for 1 Subdued Seahorse (Vashj'ir and water)
  14.             -- 248 for 163 "typical" flying mounts, including those that change based on level
  15.             -- 247 for 1 Red Flying Cloud (flying mount)
  16.             -- 242 for 1 Swift Spectral Gryphon (the one we fly while dead)
  17.             -- 241 for 4 Qiraji Battle Tanks (AQ only)
  18.             -- 232 for 1 Abyssal Seahorse (Vashj'ir only)
  19.             -- 231 for 2 Turtles (Riding and Sea)
  20.             -- 230 for 298 land mounts
  21.             if mountType == 241 then
  22.                 self.db.char.mounts["aq"] = self.db.char.mounts["aq"] or {}
  23.                 self.db.char.mounts["aq"][spellID] = true
  24.             end
  25.             if mountType == 232 or mountType == 254 then
  26.                 self.db.char.mounts["vashj"] = self.db.char.mounts["vashj"] or {}
  27.                 self.db.char.mounts["vashj"][spellID] = true
  28.             end
  29.             if mountType == 247 or mountType == 248 then
  30.                 self.db.char.mounts["flying"] = self.db.char.mounts["flying"] or {}
  31.                 self.db.char.mounts["flying"][spellID] = true
  32.             end
  33.             if mountType == 231 or mountType == 254 or mountType == 269 then
  34.                 self.db.char.mounts["water"] = self.db.char.mounts["water"] or {}
  35.                 self.db.char.mounts["water"][spellID] = true
  36.             end
  37.             if mountType == 230 or mountType == 231 or mountType == 269 then
  38.                 self.db.char.mounts["ground"] = self.db.char.mounts["ground"] or {}
  39.                 self.db.char.mounts["ground"][spellID] = true
  40.             end
  41.         end
  42.     end
  43.    
  44.     if newMounts > 0 then
  45.         self:Print(string.format("|cff20ff20%s|r %s", newMounts, L["new mount(s) found!"]))
  46.         self:UpdateMountChecks()
  47.     end
  48. end
  49. function MountManager:ScanForRaceClass()
  50.     if self.db.char.race == "Worgen" and self.db.char.mount_skill > 0 then
  51.         self.db.char.mounts["ground"][worgenRacial] = true;
  52.     end
  53.     if self.db.char.class == "Druid" then
  54.         self:UPDATE_SHAPESHIFT_FORMS()
  55.     end
  56.     if self.db.char.class == "Monk" then
  57.         self.db.char.mounts["flying"][zenFlight] = IsSpellKnown(zenFlight);
  58.     end
  59.     if self.db.char.class == "Shaman" and self.db.char.level > 14 then
  60.         self.db.char.mounts["skill"][ghostWolf] = true;
  61.     end
  62. end
  63. function MountManager:MountExists(spellID)
  64.     for mountType, typeTable in pairs(self.db.char.mounts) do
  65.         if typeTable[spellID] ~= nil then
  66.             return true
  67.         end
  68.     end
  69.     return false
  70. end
  71. function MountManager:SummonMount(mount)
  72.     for index = 1,C_MountJournal.GetNumMounts() do
  73.         local spellID = select(2, C_MountJournal.GetMountInfoByID(index))
  74.         if spellID == mount then
  75.             C_MountJournal.SummonByID(index)
  76.         end
  77.     end
  78. end

While it no longer throws up any errors in this format it no longer adds new mounts that seem to have been created since its last update. I've got no idea why exactly maybe I missing something somewhere else. But I'd love to get this working again.
  Reply With Quote
03-04-17, 11:59 AM   #2
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
You should probably use mount ids instead of indices now in Legion
Code:
for index = 1, C_MountJournal.GetNumMounts() do
	local name, spellID = C_MountJournal.GetMountInfoByID(index)
	local _, _, _, _, mountType = C_MountJournal.GetMountInfoExtraByID(index)
end

for index, id in pairs(C_MountJournal.GetMountIDs()) do
	local name, spellID = C_MountJournal.GetMountInfoByID(id)
	local _, _, _, _, mountType = C_MountJournal.GetMountInfoExtraByID(id)
end

Last edited by Ketho : 03-04-17 at 12:09 PM.
  Reply With Quote
03-04-17, 03:26 PM   #3
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
https://www.reddit.com/r/wowaddons/c..._scanning_fix/
  Reply With Quote
03-05-17, 06:46 AM   #4
Uggers
A Fallenroot Satyr
 
Uggers's Avatar
Join Date: May 2008
Posts: 26
Hey,

Just to say thanks for the support and cross posts on reddit. Ill keep to using reddit to save spamming this board but wanted to reply so it didn't look rude to any wowinterface users as to why I haven't replied to you.

I had a follow up on reddit.
  Reply With Quote
03-05-17, 08:40 AM   #5
Lombra
A Molten Giant
 
Lombra's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2006
Posts: 554
I think this is a better platform for addon development discussion, personally. "Spamming" is not an issue as long as you're not clearly abusing. Forums are meant to be used. And let's be honest, these forums are not exactly overflowing with activity. Specially the development sections.
__________________
Grab your sword and fight the Horde!
  Reply With Quote
03-05-17, 10:43 AM   #6
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
Try this
https://github.com/Ketho/MountManage...2b3499ceb99291

There also is a mountType 284 for the chopper / mechano-hog
http://www.wowinterface.com/forums/s...php?t=49504#15
Code:
230 for 367 land mounts
231 for 2  Riding Turtle, Sea Turtle
232 for 1  Vashj'ir Seahorse
241 for 4  Blue/Red/Yellow/Green Qiraji Battle Tank
242 for 2  Swift Spectral Gryphon, Swift Spectral Rylak
247 for 1  Red Flying Cloud
248 for 187 flying mounts
254 for 4  Subdued Seahorse, Brinedeep Bottom-Feeder, Fathom Dweller, Darkwater Skate
269 for 2  Azure/Crimson Water Strider
284 for 2  Chauffeured Mechano-Hog, Chauffeured Mekgineer's Chopper
Lua Code:
  1. local t = {
  2.     [230] = {
  3.         -- mountId, spellId, name
  4.         [6] = 458, -- "Brown Horse"
  5.         [7] = 459, -- "Gray Wolf"
  6.         [8] = 468, -- "White Stallion"
  7.         [9] = 470, -- "Black Stallion"
  8.         [11] = 472, -- "Pinto"
  9.         [12] = 578, -- "Black Wolf"
  10.         [13] = 579, -- "Red Wolf"
  11.         [14] = 580, -- "Timber Wolf"
  12.         [15] = 581, -- "Winter Wolf"
  13.         [17] = 5784, -- "Felsteed"
  14.         [18] = 6648, -- "Chestnut Mare"
  15.         [19] = 6653, -- "Dire Wolf"
  16.         [20] = 6654, -- "Brown Wolf"
  17.         [21] = 6777, -- "Gray Ram"
  18.         [22] = 6896, -- "Black Ram"
  19.         [24] = 6898, -- "White Ram"
  20.         [25] = 6899, -- "Brown Ram"
  21.         [26] = 8394, -- "Striped Frostsaber"
  22.         [27] = 8395, -- "Emerald Raptor"
  23.         [28] = 8980, -- "Skeletal Horse"
  24.         [31] = 10789, -- "Spotted Frostsaber"
  25.         [34] = 10793, -- "Striped Nightsaber"
  26.         [35] = 10795, -- "Ivory Raptor"
  27.         [36] = 10796, -- "Turquoise Raptor"
  28.         [38] = 10799, -- "Violet Raptor"
  29.         [39] = 10873, -- "Red Mechanostrider"
  30.         [40] = 10969, -- "Blue Mechanostrider"
  31.         [41] = 13819, -- "Warhorse"
  32.         [42] = 15779, -- "White Mechanostrider Mod B"
  33.         [43] = 15780, -- "Green Mechanostrider"
  34.         [45] = 16055, -- "Black Nightsaber"
  35.         [46] = 16056, -- "Ancient Frostsaber"
  36.         [50] = 16080, -- "Red Wolf"
  37.         [51] = 16081, -- "Arctic Wolf"
  38.         [52] = 16082, -- "Palomino"
  39.         [53] = 16083, -- "White Stallion"
  40.         [54] = 16084, -- "Mottled Red Raptor"
  41.         [55] = 17229, -- "Winterspring Frostsaber"
  42.         [56] = 17450, -- "Ivory Raptor"
  43.         [57] = 17453, -- "Green Mechanostrider"
  44.         [58] = 17454, -- "Unpainted Mechanostrider"
  45.         [62] = 17459, -- "Icy Blue Mechanostrider Mod A"
  46.         [63] = 17460, -- "Frost Ram"
  47.         [64] = 17461, -- "Black Ram"
  48.         [65] = 17462, -- "Red Skeletal Horse"
  49.         [66] = 17463, -- "Blue Skeletal Horse"
  50.         [67] = 17464, -- "Brown Skeletal Horse"
  51.         [68] = 17465, -- "Green Skeletal Warhorse"
  52.         [69] = 17481, -- "Rivendare's Deathcharger"
  53.         [70] = 18363, -- "Riding Kodo"
  54.         [71] = 18989, -- "Gray Kodo"
  55.         [72] = 18990, -- "Brown Kodo"
  56.         [73] = 18991, -- "Green Kodo"
  57.         [74] = 18992, -- "Teal Kodo"
  58.         [75] = 22717, -- "Black War Steed"
  59.         [76] = 22718, -- "Black War Kodo"
  60.         [77] = 22719, -- "Black Battlestrider"
  61.         [78] = 22720, -- "Black War Ram"
  62.         [79] = 22721, -- "Black War Raptor"
  63.         [80] = 22722, -- "Red Skeletal Warhorse"
  64.         [81] = 22723, -- "Black War Tiger"
  65.         [82] = 22724, -- "Black War Wolf"
  66.         [83] = 23161, -- "Dreadsteed"
  67.         [84] = 23214, -- "Charger"
  68.         [85] = 23219, -- "Swift Mistsaber"
  69.         [87] = 23221, -- "Swift Frostsaber"
  70.         [88] = 23222, -- "Swift Yellow Mechanostrider"
  71.         [89] = 23223, -- "Swift White Mechanostrider"
  72.         [90] = 23225, -- "Swift Green Mechanostrider"
  73.         [91] = 23227, -- "Swift Palomino"
  74.         [92] = 23228, -- "Swift White Steed"
  75.         [93] = 23229, -- "Swift Brown Steed"
  76.         [94] = 23238, -- "Swift Brown Ram"
  77.         [95] = 23239, -- "Swift Gray Ram"
  78.         [96] = 23240, -- "Swift White Ram"
  79.         [97] = 23241, -- "Swift Blue Raptor"
  80.         [98] = 23242, -- "Swift Olive Raptor"
  81.         [99] = 23243, -- "Swift Orange Raptor"
  82.         [100] = 23246, -- "Purple Skeletal Warhorse"
  83.         [101] = 23247, -- "Great White Kodo"
  84.         [102] = 23248, -- "Great Gray Kodo"
  85.         [103] = 23249, -- "Great Brown Kodo"
  86.         [104] = 23250, -- "Swift Brown Wolf"
  87.         [105] = 23251, -- "Swift Timber Wolf"
  88.         [106] = 23252, -- "Swift Gray Wolf"
  89.         [107] = 23338, -- "Swift Stormsaber"
  90.         [108] = 23509, -- "Frostwolf Howler"
  91.         [109] = 23510, -- "Stormpike Battle Charger"
  92.         [110] = 24242, -- "Swift Razzashi Raptor"
  93.         [111] = 24252, -- "Swift Zulian Tiger"
  94.         [116] = 25863, -- "Black Qiraji Battle Tank"
  95.         [121] = 26655, -- "Black Qiraji Battle Tank"
  96.         [122] = 26656, -- "Black Qiraji Battle Tank"
  97.         [145] = 33630, -- "Blue Mechanostrider"
  98.         [146] = 33660, -- "Swift Pink Hawkstrider"
  99.         [147] = 34406, -- "Brown Elekk"
  100.         [149] = 34767, -- "Thalassian Charger"
  101.         [150] = 34769, -- "Thalassian Warhorse"
  102.         [151] = 34790, -- "Dark War Talbuk"
  103.         [152] = 34795, -- "Red Hawkstrider"
  104.         [153] = 34896, -- "Cobalt War Talbuk"
  105.         [154] = 34897, -- "White War Talbuk"
  106.         [155] = 34898, -- "Silver War Talbuk"
  107.         [156] = 34899, -- "Tan War Talbuk"
  108.         [157] = 35018, -- "Purple Hawkstrider"
  109.         [158] = 35020, -- "Blue Hawkstrider"
  110.         [159] = 35022, -- "Black Hawkstrider"
  111.         [160] = 35025, -- "Swift Green Hawkstrider"
  112.         [161] = 35027, -- "Swift Purple Hawkstrider"
  113.         [162] = 35028, -- "Swift Warstrider"
  114.         [163] = 35710, -- "Gray Elekk"
  115.         [164] = 35711, -- "Purple Elekk"
  116.         [165] = 35712, -- "Great Green Elekk"
  117.         [166] = 35713, -- "Great Blue Elekk"
  118.         [167] = 35714, -- "Great Purple Elekk"
  119.         [168] = 36702, -- "Fiery Warhorse"
  120.         [170] = 39315, -- "Cobalt Riding Talbuk"
  121.         [171] = 39316, -- "Dark Riding Talbuk"
  122.         [172] = 39317, -- "Silver Riding Talbuk"
  123.         [173] = 39318, -- "Tan Riding Talbuk"
  124.         [174] = 39319, -- "White Riding Talbuk"
  125.         [185] = 41252, -- "Raven Lord"
  126.         [196] = 42776, -- "Spectral Tiger"
  127.         [197] = 42777, -- "Swift Spectral Tiger"
  128.         [199] = 43688, -- "Amani War Bear"
  129.         [201] = 43899, -- "Brewfest Ram"
  130.         [202] = 43900, -- "Swift Brewfest Ram"
  131.         [213] = 46628, -- "Swift White Hawkstrider"
  132.         [220] = 48027, -- "Black War Elekk"
  133.         [221] = 48778, -- "Acherus Deathcharger"
  134.         [222] = 48954, -- "Swift Zhevra"
  135.         [224] = 49322, -- "Swift Zhevra"
  136.         [225] = 49378, -- "Brewfest Riding Kodo"
  137.         [226] = 49379, -- "Great Brewfest Kodo"
  138.         [230] = 51412, -- "Big Battle Bear"
  139.         [237] = 54753, -- "White Polar Bear"
  140.         [240] = 55531, -- "Mechano-Hog"
  141.         [243] = 58983, -- "Big Blizzard Bear"
  142.         [251] = 59572, -- "Black Polar Bear"
  143.         [254] = 59785, -- "Black War Mammoth"
  144.         [255] = 59788, -- "Black War Mammoth"
  145.         [256] = 59791, -- "Wooly Mammoth"
  146.         [257] = 59793, -- "Wooly Mammoth"
  147.         [258] = 59797, -- "Ice Mammoth"
  148.         [259] = 59799, -- "Ice Mammoth"
  149.         [269] = 60114, -- "Armored Brown Bear"
  150.         [270] = 60116, -- "Armored Brown Bear"
  151.         [271] = 60118, -- "Black War Bear"
  152.         [272] = 60119, -- "Black War Bear"
  153.         [273] = 60136, -- "Grand Caravan Mammoth"
  154.         [274] = 60140, -- "Grand Caravan Mammoth"
  155.         [275] = 60424, -- "Mekgineer's Chopper"
  156.         [280] = 61425, -- "Traveler's Tundra Mammoth"
  157.         [284] = 61447, -- "Traveler's Tundra Mammoth"
  158.         [286] = 61465, -- "Grand Black War Mammoth"
  159.         [287] = 61467, -- "Grand Black War Mammoth"
  160.         [288] = 61469, -- "Grand Ice Mammoth"
  161.         [289] = 61470, -- "Grand Ice Mammoth"
  162.         [294] = 63232, -- "Stormwind Steed"
  163.         [295] = 63635, -- "Darkspear Raptor"
  164.         [296] = 63636, -- "Ironforge Ram"
  165.         [297] = 63637, -- "Darnassian Nightsaber"
  166.         [298] = 63638, -- "Gnomeregan Mechanostrider"
  167.         [299] = 63639, -- "Exodar Elekk"
  168.         [300] = 63640, -- "Orgrimmar Wolf"
  169.         [301] = 63641, -- "Thunder Bluff Kodo"
  170.         [302] = 63642, -- "Silvermoon Hawkstrider"
  171.         [303] = 63643, -- "Forsaken Warhorse"
  172.         [308] = 64656, -- "Blue Skeletal Warhorse"
  173.         [309] = 64657, -- "White Kodo"
  174.         [310] = 64658, -- "Black Wolf"
  175.         [311] = 64659, -- "Venomhide Ravasaur"
  176.         [314] = 64977, -- "Black Skeletal Horse"
  177.         [318] = 65637, -- "Great Red Elekk"
  178.         [319] = 65638, -- "Swift Moonsaber"
  179.         [320] = 65639, -- "Swift Red Hawkstrider"
  180.         [321] = 65640, -- "Swift Gray Steed"
  181.         [322] = 65641, -- "Great Golden Kodo"
  182.         [323] = 65642, -- "Turbostrider"
  183.         [324] = 65643, -- "Swift Violet Ram"
  184.         [325] = 65644, -- "Swift Purple Raptor"
  185.         [326] = 65645, -- "White Skeletal Warhorse"
  186.         [327] = 65646, -- "Swift Burgundy Wolf"
  187.         [328] = 65917, -- "Magic Rooster"
  188.         [331] = 66090, -- "Quel'dorei Steed"
  189.         [332] = 66091, -- "Sunreaver Hawkstrider"
  190.         [333] = 66122, -- "Magic Rooster"
  191.         [334] = 66123, -- "Magic Rooster"
  192.         [335] = 66124, -- "Magic Rooster"
  193.         [336] = 66846, -- "Ochre Skeletal Warhorse"
  194.         [337] = 66847, -- "Striped Dawnsaber"
  195.         [338] = 66906, -- "Argent Charger"
  196.         [341] = 67466, -- "Argent Warhorse"
  197.         [342] = 68056, -- "Swift Horde Wolf"
  198.         [343] = 68057, -- "Swift Alliance Steed"
  199.         [344] = 68187, -- "Crusader's White Warhorse"
  200.         [345] = 68188, -- "Crusader's Black Warhorse"
  201.         [350] = 69820, -- "Sunwalker Kodo"
  202.         [351] = 69826, -- "Great Sunwalker Kodo"
  203.         [366] = 73313, -- "Crimson Deathcharger"
  204.         [367] = 73629, -- "Exarch's Elekk"
  205.         [368] = 73630, -- "Great Exarch's Elekk"
  206.         [372] = 74918, -- "Wooly White Rhino"
  207.         [386] = 84751, -- "Fossilized Raptor"
  208.         [388] = 87090, -- "Goblin Trike"
  209.         [389] = 87091, -- "Goblin Turbo-Trike"
  210.         [398] = 88748, -- "Brown Riding Camel"
  211.         [399] = 88749, -- "Tan Riding Camel"
  212.         [400] = 88750, -- "Grey Riding Camel"
  213.         [403] = 90621, -- "Golden King"
  214.         [404] = 92155, -- "Ultramarine Qiraji Battle Tank"
  215.         [405] = 92231, -- "Spectral Steed"
  216.         [406] = 92232, -- "Spectral Wolf"
  217.         [409] = 93644, -- "Kor'kron Annihilator"
  218.         [410] = 96491, -- "Armored Razzashi Raptor"
  219.         [411] = 96499, -- "Swift Zulian Panther"
  220.         [418] = 97581, -- "Savage Raptor"
  221.         [419] = 98204, -- "Amani Battle Bear"
  222.         [422] = 100332, -- "Vicious War Steed"
  223.         [423] = 100333, -- "Vicious War Wolf"
  224.         [425] = 101542, -- "Flametalon of Alysrazor"
  225.         [426] = 101573, -- "Swift Shorestrider"
  226.         [429] = 102346, -- "Swift Forest Strider"
  227.         [430] = 102349, -- "Swift Springstrider"
  228.         [431] = 102350, -- "Swift Lovebird"
  229.         [432] = 102488, -- "White Riding Camel"
  230.         [434] = 103081, -- "Darkmoon Dancing Bear"
  231.         [435] = 103195, -- "Mountain Horse"
  232.         [436] = 103196, -- "Swift Mountain Horse"
  233.         [452] = 120395, -- "Green Dragon Turtle"
  234.         [453] = 120822, -- "Great Red Dragon Turtle"
  235.         [460] = 122708, -- "Grand Expedition Yak"
  236.         [462] = 123182, -- "White Riding Yak"
  237.         [463] = 123886, -- "Amber Scorpion"
  238.         [479] = 127174, -- "Azure Riding Crane"
  239.         [480] = 127176, -- "Golden Riding Crane"
  240.         [481] = 127177, -- "Regal Riding Crane"
  241.         [484] = 127209, -- "Black Riding Yak"
  242.         [485] = 127213, -- "Brown Riding Yak"
  243.         [486] = 127216, -- "Grey Riding Yak"
  244.         [487] = 127220, -- "Blonde Riding Yak"
  245.         [492] = 127286, -- "Black Dragon Turtle"
  246.         [493] = 127287, -- "Blue Dragon Turtle"
  247.         [494] = 127288, -- "Brown Dragon Turtle"
  248.         [495] = 127289, -- "Purple Dragon Turtle"
  249.         [496] = 127290, -- "Red Dragon Turtle"
  250.         [497] = 127293, -- "Great Green Dragon Turtle"
  251.         [498] = 127295, -- "Great Black Dragon Turtle"
  252.         [499] = 127302, -- "Great Blue Dragon Turtle"
  253.         [500] = 127308, -- "Great Brown Dragon Turtle"
  254.         [501] = 127310, -- "Great Purple Dragon Turtle"
  255.         [505] = 129932, -- "Green Shado-Pan Riding Tiger"
  256.         [506] = 129934, -- "Blue Shado-Pan Riding Tiger"
  257.         [507] = 129935, -- "Red Shado-Pan Riding Tiger"
  258.         [508] = 130086, -- "Brown Riding Goat"
  259.         [510] = 130137, -- "White Riding Goat"
  260.         [511] = 130138, -- "Black Riding Goat"
  261.         [515] = 130965, -- "Son of Galleon"
  262.         [531] = 136471, -- "Spawn of Horridon"
  263.         [533] = 138423, -- "Cobalt Primordial Direhorn"
  264.         [534] = 138424, -- "Amber Primordial Direhorn"
  265.         [535] = 138425, -- "Slate Primordial Direhorn"
  266.         [536] = 138426, -- "Jade Primordial Direhorn"
  267.         [537] = 138640, -- "Bone-White Primal Raptor"
  268.         [538] = 138641, -- "Red Primal Raptor"
  269.         [539] = 138642, -- "Black Primal Raptor"
  270.         [540] = 138643, -- "Green Primal Raptor"
  271.         [545] = 140249, -- "Golden Primal Direhorn"
  272.         [546] = 140250, -- "Crimson Primal Direhorn"
  273.         [550] = 142641, -- "Brawler's Burly Mushan Beast"
  274.         [554] = 146615, -- "Vicious Warsaber"
  275.         [555] = 146622, -- "Vicious Skeletal Warhorse"
  276.         [558] = 148396, -- "Kor'kron War Wolf"
  277.         [559] = 148417, -- "Kor'kron Juggernaut"
  278.         [560] = 148428, -- "Ashhide Mushan Beast"
  279.         [566] = 148970, -- "Felsteed"
  280.         [567] = 148972, -- "Dreadsteed"
  281.         [603] = 169952, -- "Creeping Carpet"
  282.         [606] = 170347, -- "Core Hound"
  283.         [607] = 171436, -- "Gorestrider Gronnling"
  284.         [608] = 171616, -- "Witherhide Cliffstomper"
  285.         [609] = 171617, -- "Trained Icehoof"
  286.         [611] = 171619, -- "Tundra Icehoof"
  287.         [612] = 171620, -- "Bloodhoof Bull"
  288.         [613] = 171621, -- "Ironhoof Destroyer"
  289.         [614] = 171622, -- "Mottled Meadowstomper"
  290.         [615] = 171623, -- "Trained Meadowstomper"
  291.         [616] = 171624, -- "Shadowhide Pearltusk"
  292.         [617] = 171625, -- "Dusty Rockhide"
  293.         [618] = 171626, -- "Armored Irontusk"
  294.         [619] = 171627, -- "Blacksteel Battleboar"
  295.         [620] = 171628, -- "Rocktusk Battleboar"
  296.         [621] = 171629, -- "Armored Frostboar"
  297.         [622] = 171630, -- "Armored Razorback"
  298.         [623] = 171632, -- "Frostplains Battleboar"
  299.         [624] = 171633, -- "Wild Goretusk"
  300.         [625] = 171634, -- "Domesticated Razorback"
  301.         [626] = 171635, -- "Giant Coldsnout"
  302.         [627] = 171636, -- "Great Greytusk"
  303.         [628] = 171637, -- "Trained Rocktusk"
  304.         [629] = 171638, -- "Trained Riverwallow"
  305.         [630] = 171824, -- "Sapphire Riverbeast"
  306.         [631] = 171826, -- "Mudback Riverbeast"
  307.         [632] = 171825, -- "Mosshide Riverwallow"
  308.         [633] = 171827, -- "Hellfire Infernal"
  309.         [635] = 171829, -- "Shadowmane Charger"
  310.         [636] = 171830, -- "Swift Breezestrider"
  311.         [637] = 171831, -- "Trained Silverpelt"
  312.         [638] = 171832, -- "Breezestrider Stallion"
  313.         [639] = 171833, -- "Pale Thorngrazer"
  314.         [640] = 171834, -- "Vicious War Ram"
  315.         [641] = 171835, -- "Vicious War Raptor"
  316.         [642] = 171836, -- "Garn Steelmaw"
  317.         [643] = 171837, -- "Warsong Direfang"
  318.         [644] = 171838, -- "Armored Frostwolf"
  319.         [645] = 171839, -- "Ironside Warwolf"
  320.         [647] = 171841, -- "Trained Snarler"
  321.         [648] = 171842, -- "Swift Frostwolf"
  322.         [649] = 171843, -- "Smoky Direwolf"
  323.         [650] = 171844, -- "Dustmane Direwolf"
  324.         [651] = 171845, -- "Warlord's Deathwheel"
  325.         [652] = 171846, -- "Champion's Treadblade"
  326.         [654] = 171848, -- "Challenger's War Yeti"
  327.         [655] = 171849, -- "Sunhide Gronnling"
  328.         [656] = 171850, -- "Llothien Prowler"
  329.         [657] = 171851, -- "Garn Nighthowl"
  330.         [663] = 213115, -- "Bloodfang Widow"
  331.         [682] = 179478, -- "Voidtalon of the Dark Star"
  332.         [755] = 183889, -- "Vicious War Mechanostrider"
  333.         [756] = 185052, -- "Vicious War Kodo"
  334.         [758] = 186305, -- "Infernal Direwolf"
  335.         [759] = 186828, -- "Primal Gladiator's Felblood Gronnling"
  336.         [760] = 189043, -- "Wild Gladiator's Felblood Gronnling"
  337.         [761] = 189044, -- "Warmongering Gladiator's Felblood Gronnling"
  338.         [762] = 189364, -- "Coalfist Gronnling"
  339.         [763] = 189998, -- "Illidari Felstalker"
  340.         [765] = 190690, -- "Bristling Hellboar"
  341.         [768] = 190977, -- "Deathtusk Felboar"
  342.         [769] = 191314, -- "Minion of Grumpus"
  343.         [773] = 193007, -- "Grove Defiler"
  344.         [775] = 193695, -- "Prestigious War Steed"
  345.         [779] = 196681, -- "Spirit of Eche'ro"
  346.         [780] = 200175, -- "Felsaber"
  347.         [784] = 204166, -- "Prestigious War Wolf"
  348.         [791] = 213134, -- "Felblaze Infernal"
  349.         [793] = 213158, -- "Predatory Bloodgazer"
  350.         [794] = 213164, -- "Brilliant Direbeak"
  351.         [795] = 213163, -- "Snowfeather Hunter"
  352.         [796] = 213165, -- "Viridian Sharptalon"
  353.         [797] = 213209, -- "Steelbound Devourer"
  354.         [804] = 215558, -- "Ratstallion"
  355.         [826] = 222202, -- "Prestigious Bronze Courser"
  356.         [831] = 222236, -- "Prestigious Royal Courser"
  357.         [832] = 222237, -- "Prestigious Forest Courser"
  358.         [833] = 222238, -- "Prestigious Ivory Courser"
  359.         [834] = 222240, -- "Prestigious Azure Courser"
  360.         [836] = 222241, -- "Prestigious Midnight Courser"
  361.         [841] = 223341, -- "Vicious Gilnean Warhorse"
  362.         [842] = 223354, -- "Vicious War Trike"
  363.         [843] = 223363, -- "Vicious Warstrider"
  364.         [844] = 223578, -- "Vicious War Elekk"
  365.         [847] = 227956, -- "Arcadian War Turtle"
  366.         [854] = 213339, -- "Great Northern Elderhorn"
  367.         [875] = 229499, -- "Midnight"
  368.         [877] = 230401, -- "Ivory Hawkstrider"
  369.         [878] = 230844, -- "Brawler's Burly Basilisk"
  370.         [896] = 232405, -- "Primal Flamesaber"
  371.     },
  372.     [231] = {
  373.         [125] = 30174, -- "Riding Turtle"
  374.         [312] = 64731, -- "Sea Turtle"
  375.     },
  376.     [232] = {
  377.         [373] = 75207, -- "Vashj'ir Seahorse"
  378.     },
  379.     [241] = {
  380.         [117] = 25953, -- "Blue Qiraji Battle Tank"
  381.         [118] = 26054, -- "Red Qiraji Battle Tank"
  382.         [119] = 26055, -- "Yellow Qiraji Battle Tank"
  383.         [120] = 26056, -- "Green Qiraji Battle Tank"
  384.     },
  385.     [242] = {
  386.         [238] = 55164, -- "Swift Spectral Gryphon"
  387.         [776] = 194046, -- "Swift Spectral Rylak"
  388.     },
  389.     [247] = {
  390.         [509] = 130092, -- "Red Flying Cloud"
  391.     },
  392.     [248] = {
  393.         [123] = 28828, -- "Nether Drake"
  394.         [129] = 32235, -- "Golden Gryphon"
  395.         [130] = 32239, -- "Ebon Gryphon"
  396.         [131] = 32240, -- "Snowy Gryphon"
  397.         [132] = 32242, -- "Swift Blue Gryphon"
  398.         [133] = 32243, -- "Tawny Wind Rider"
  399.         [134] = 32244, -- "Blue Wind Rider"
  400.         [135] = 32245, -- "Green Wind Rider"
  401.         [136] = 32246, -- "Swift Red Wind Rider"
  402.         [137] = 32289, -- "Swift Red Gryphon"
  403.         [138] = 32290, -- "Swift Green Gryphon"
  404.         [139] = 32292, -- "Swift Purple Gryphon"
  405.         [140] = 32295, -- "Swift Green Wind Rider"
  406.         [141] = 32296, -- "Swift Yellow Wind Rider"
  407.         [142] = 32297, -- "Swift Purple Wind Rider"
  408.         [169] = 37015, -- "Swift Nether Drake"
  409.         [176] = 39798, -- "Green Riding Nether Ray"
  410.         [177] = 39800, -- "Red Riding Nether Ray"
  411.         [178] = 39801, -- "Purple Riding Nether Ray"
  412.         [179] = 39802, -- "Silver Riding Nether Ray"
  413.         [180] = 39803, -- "Blue Riding Nether Ray"
  414.         [183] = 40192, -- "Ashes of Al'ar"
  415.         [186] = 41513, -- "Onyx Netherwing Drake"
  416.         [187] = 41514, -- "Azure Netherwing Drake"
  417.         [188] = 41515, -- "Cobalt Netherwing Drake"
  418.         [189] = 41516, -- "Purple Netherwing Drake"
  419.         [190] = 41517, -- "Veridian Netherwing Drake"
  420.         [191] = 41518, -- "Violet Netherwing Drake"
  421.         [203] = 43927, -- "Cenarion War Hippogryph"
  422.         [204] = 44151, -- "Turbo-Charged Flying Machine"
  423.         [205] = 44153, -- "Flying Machine"
  424.         [206] = 44317, -- "Merciless Nether Drake"
  425.         [207] = 44744, -- "Merciless Nether Drake"
  426.         [211] = 46197, -- "X-51 Nether-Rocket"
  427.         [212] = 46199, -- "X-51 Nether-Rocket X-TREME"
  428.         [219] = 48025, -- "Headless Horseman's Mount"
  429.         [223] = 49193, -- "Vengeful Nether Drake"
  430.         [236] = 54729, -- "Winged Steed of the Ebon Blade"
  431.         [241] = 58615, -- "Brutal Nether Drake"
  432.         [246] = 59567, -- "Azure Drake"
  433.         [247] = 59568, -- "Blue Drake"
  434.         [248] = 59569, -- "Bronze Drake"
  435.         [249] = 59570, -- "Red Drake"
  436.         [250] = 59571, -- "Twilight Drake"
  437.         [253] = 59650, -- "Black Drake"
  438.         [262] = 59961, -- "Red Proto-Drake"
  439.         [263] = 59976, -- "Black Proto-Drake"
  440.         [264] = 59996, -- "Blue Proto-Drake"
  441.         [265] = 60002, -- "Time-Lost Proto-Drake"
  442.         [266] = 60021, -- "Plagued Proto-Drake"
  443.         [267] = 60024, -- "Violet Proto-Drake"
  444.         [268] = 60025, -- "Albino Drake"
  445.         [276] = 61229, -- "Armored Snowy Gryphon"
  446.         [277] = 61230, -- "Armored Blue Wind Rider"
  447.         [278] = 61294, -- "Green Proto-Drake"
  448.         [279] = 61309, -- "Magnificent Flying Carpet"
  449.         [285] = 61451, -- "Flying Carpet"
  450.         [291] = 61996, -- "Blue Dragonhawk"
  451.         [292] = 61997, -- "Red Dragonhawk"
  452.         [293] = 62048, -- "Black Dragonhawk Mount"
  453.         [304] = 63796, -- "Mimiron's Head"
  454.         [305] = 63844, -- "Argent Hippogryph"
  455.         [306] = 63956, -- "Ironbound Proto-Drake"
  456.         [307] = 63963, -- "Rusted Proto-Drake"
  457.         [313] = 64927, -- "Deadly Gladiator's Frost Wyrm"
  458.         [317] = 65439, -- "Furious Gladiator's Frost Wyrm"
  459.         [329] = 66087, -- "Silver Covenant Hippogryph"
  460.         [330] = 66088, -- "Sunreaver Dragonhawk"
  461.         [340] = 67336, -- "Relentless Gladiator's Frost Wyrm"
  462.         [349] = 69395, -- "Onyxian Drake"
  463.         [352] = 71342, -- "Big Love Rocket"
  464.         [358] = 71810, -- "Wrathful Gladiator's Frost Wyrm"
  465.         [363] = 72286, -- "Invincible"
  466.         [364] = 72807, -- "Icebound Frostbrood Vanquisher"
  467.         [365] = 72808, -- "Bloodbathed Frostbrood Vanquisher"
  468.         [371] = 74856, -- "Blazing Hippogryph"
  469.         [375] = 75596, -- "Frosty Flying Carpet"
  470.         [376] = 75614, -- "Celestial Steed"
  471.         [382] = 75973, -- "X-53 Touring Rocket"
  472.         [391] = 88331, -- "Volcanic Stone Drake"
  473.         [392] = 88335, -- "Drake of the East Wind"
  474.         [393] = 88718, -- "Phosphorescent Stone Drake"
  475.         [394] = 88741, -- "Drake of the West Wind"
  476.         [395] = 88742, -- "Drake of the North Wind"
  477.         [396] = 88744, -- "Drake of the South Wind"
  478.         [397] = 88746, -- "Vitreous Stone Drake"
  479.         [401] = 88990, -- "Dark Phoenix"
  480.         [407] = 93326, -- "Sandstone Drake"
  481.         [408] = 93623, -- "Mottled Drake"
  482.         [412] = 96503, -- "Amani Dragonhawk"
  483.         [413] = 97359, -- "Flameward Hippogryph"
  484.         [415] = 97493, -- "Pureblood Fire Hawk"
  485.         [416] = 97501, -- "Felfire Hawk"
  486.         [417] = 97560, -- "Corrupted Fire Hawk"
  487.         [421] = 98727, -- "Winged Guardian"
  488.         [424] = 101282, -- "Vicious Gladiator's Twilight Drake"
  489.         [428] = 101821, -- "Ruthless Gladiator's Twilight Drake"
  490.         [433] = 102514, -- "Corrupted Hippogryph"
  491.         [439] = 107203, -- "Tyrael's Charger"
  492.         [440] = 107516, -- "Spectral Gryphon"
  493.         [441] = 107517, -- "Spectral Wind Rider"
  494.         [442] = 107842, -- "Blazing Drake"
  495.         [443] = 107844, -- "Twilight Harbinger"
  496.         [444] = 107845, -- "Life-Binder's Handmaiden"
  497.         [445] = 110039, -- "Experiment 12-B"
  498.         [446] = 110051, -- "Heart of the Aspects"
  499.         [447] = 113120, -- "Feldrake"
  500.         [448] = 113199, -- "Jade Cloud Serpent"
  501.         [450] = 118737, -- "Pandaren Kite"
  502.         [451] = 120043, -- "Jeweled Onyx Panther"
  503.         [454] = 171847, -- "Cindermane Charger"
  504.         [455] = 121820, -- "Obsidian Nightwing"
  505.         [456] = 121836, -- "Sapphire Panther"
  506.         [457] = 121837, -- "Jade Panther"
  507.         [458] = 121838, -- "Ruby Panther"
  508.         [459] = 121839, -- "Sunstone Panther"
  509.         [464] = 123992, -- "Azure Cloud Serpent"
  510.         [465] = 123993, -- "Golden Cloud Serpent"
  511.         [466] = 124408, -- "Thundering Jade Cloud Serpent"
  512.         [467] = 124550, -- "Cataclysmic Gladiator's Twilight Drake"
  513.         [468] = 124659, -- "Imperial Quilen"
  514.         [469] = 126507, -- "Depleted-Kyparium Rocket"
  515.         [470] = 126508, -- "Geosynchronous World Spinner"
  516.         [471] = 127154, -- "Onyx Cloud Serpent"
  517.         [472] = 127156, -- "Crimson Cloud Serpent"
  518.         [473] = 127158, -- "Heavenly Onyx Cloud Serpent"
  519.         [474] = 127161, -- "Heavenly Crimson Cloud Serpent"
  520.         [475] = 127164, -- "Heavenly Golden Cloud Serpent"
  521.         [476] = 127165, -- "Yu'lei, Daughter of Jade"
  522.         [477] = 127169, -- "Heavenly Azure Cloud Serpent"
  523.         [478] = 127170, -- "Astral Cloud Serpent"
  524.         [503] = 129552, -- "Crimson Pandaren Phoenix"
  525.         [504] = 129918, -- "Thundering August Cloud Serpent"
  526.         [516] = 130985, -- "Pandaren Kite"
  527.         [517] = 132036, -- "Thundering Ruby Cloud Serpent"
  528.         [518] = 132117, -- "Ashen Pandaren Phoenix"
  529.         [519] = 132118, -- "Emerald Pandaren Phoenix"
  530.         [520] = 132119, -- "Violet Pandaren Phoenix"
  531.         [521] = 133023, -- "Jade Pandaren Kite"
  532.         [522] = 134359, -- "Sky Golem"
  533.         [523] = 134573, -- "Swift Windsteed"
  534.         [526] = 135416, -- "Grand Armored Gryphon"
  535.         [527] = 135418, -- "Grand Armored Wyvern"
  536.         [528] = 136163, -- "Grand Gryphon"
  537.         [529] = 136164, -- "Grand Wyvern"
  538.         [530] = 136400, -- "Armored Skyscreamer"
  539.         [532] = 136505, -- "Ghastly Charger"
  540.         [541] = 139407, -- "Malevolent Gladiator's Cloud Serpent"
  541.         [542] = 139442, -- "Thundering Cobalt Cloud Serpent"
  542.         [543] = 139448, -- "Clutch of Ji-Kun"
  543.         [544] = 139595, -- "Armored Bloodwing"
  544.         [547] = 142073, -- "Hearthsteed"
  545.         [548] = 142266, -- "Armored Red Dragonhawk"
  546.         [549] = 142478, -- "Armored Blue Dragonhawk"
  547.         [551] = 142878, -- "Enchanted Fey Dragon"
  548.         [552] = 142910, -- "Ironbound Wraithcharger"
  549.         [557] = 148392, -- "Spawn of Galakras"
  550.         [561] = 148476, -- "Thundering Onyx Cloud Serpent"
  551.         [562] = 148618, -- "Tyrannical Gladiator's Cloud Serpent"
  552.         [563] = 148619, -- "Grievous Gladiator's Cloud Serpent"
  553.         [564] = 148620, -- "Prideful Gladiator's Cloud Serpent"
  554.         [568] = 149801, -- "Emerald Hippogryph"
  555.         [571] = 153489, -- "Iron Skyreaver"
  556.         [593] = 163024, -- "Warforged Nightmare"
  557.         [594] = 163025, -- "Grinning Reaver"
  558.         [600] = 155741, -- "Dread Raven"
  559.         [634] = 171828, -- "Solar Spirehawk"
  560.         [664] = 175700, -- "Emerald Drake"
  561.         [741] = 180545, -- "Mystic Runesaber"
  562.         [751] = 182912, -- "Felsteel Annihilator"
  563.         [753] = 183117, -- "Corrupted Dreadwing"
  564.         [764] = 189999, -- "Grove Warden"
  565.         [772] = 191633, -- "Soaring Skyterror"
  566.         [778] = 194464, -- "Eclipse Dragonhawk"
  567.         [781] = 201098, -- "Infinite Timereaver"
  568.         [802] = 215159, -- "Long-Forgotten Hippogryph"
  569.         [803] = 215545, -- "Fel Bat (Test)"
  570.         [845] = 223814, -- "Mechanized Lumber Extractor"
  571.         [846] = 225765, -- "Leyfeather Hippogryph"
  572.         [848] = 227986, -- "Vindictive Gladiator's Storm Dragon"
  573.         [849] = 227988, -- "Fearless Gladiator's Storm Dragon"
  574.         [850] = 227989, -- "Cruel Gladiator's Storm Dragon"
  575.         [851] = 227991, -- "Ferocious Gladiator's Storm Dragon"
  576.         [852] = 227994, -- "Fierce Gladiator's Storm Dragon"
  577.         [853] = 227995, -- "Demonic Gladiator's Storm Dragon"
  578.         [881] = 230987, -- "Arcanist's Manasaber"
  579.         [883] = 231428, -- "Smoldering Ember Wyrm"
  580.     },
  581.     [254] = {
  582.         [420] = 98718, -- "Subdued Seahorse"
  583.         [800] = 214791, -- "Brinedeep Bottom-Feeder"
  584.         [838] = 223018, -- "Fathom Dweller"
  585.         [855] = 228919, -- "Darkwater Skate"
  586.     },
  587.     [269] = {
  588.         [449] = 118089, -- "Azure Water Strider"
  589.         [488] = 127271, -- "Crimson Water Strider"
  590.     },
  591.     [284] = {
  592.         [678] = 179244, -- "Chauffeured Mechano-Hog"
  593.         [679] = 179245, -- "Chauffeured Mekgineer's Chopper"
  594.     },
  595. }

On another note, it's also possible to use this macro if you just want random flying, otherwise land mounts
Code:
/run local j,t,b=C_MountJournal,{},0+SecureCmdOptionParse"[flyable]248;230"for i=1,j.GetNumMounts()do if select(5,j.GetMountInfoByID(i))and bit.band(select(5,j.GetMountInfoExtraByID(i)),b)==b then tinsert(t,i)end end _=#t>0 and j.SummonByID(t[random(#t)])

Last edited by Ketho : 03-05-17 at 11:43 AM.
  Reply With Quote
03-05-17, 01:40 PM   #7
Uggers
A Fallenroot Satyr
 
Uggers's Avatar
Join Date: May 2008
Posts: 26
Many many thanks

Really appreciate the help in getting this working again!.

I think the main thing that I always liked unlike other mount addons is the simple fact it shows me the icon of the next mount after I mount, and I can right click to rotate through them randomly if i want to change.
  Reply With Quote
03-05-17, 03:11 PM   #8
Uggers
A Fallenroot Satyr
 
Uggers's Avatar
Join Date: May 2008
Posts: 26
Mmm only think I can't get it to recognize is if you have no mount skill.

I tried adding;

Line 76+ 234
Lua Code:
  1. chauffer = {},

Line 292
Lua Code:
  1. elseif IsSpellKnown(179244) then -- Chauffer Only
  2.         self.db.char.mount_skill = 0
  3.     end

Line 380
Lua Code:
  1. if mountType == 284 then
  2.                 self.db.char.mounts["chauffer"] = self.db.char.mounts["chauffer"] or {}
  3.                 self.db.char.mounts["chauffer"][spellID] = true
  4.             end
Line 580
Lua Code:
  1. if self.db.char.mount_skill == 0 then
  2.         self.db.char.mounts["chauffer"] = true;
  3.     end
  Reply With Quote
03-05-17, 03:56 PM   #9
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
It's probably easier to check if you're below level 20

https://github.com/Ketho/MountManage...0b496822350131

Last edited by Ketho : 03-05-17 at 04:20 PM.
  Reply With Quote
03-05-17, 04:14 PM   #10
Uggers
A Fallenroot Satyr
 
Uggers's Avatar
Join Date: May 2008
Posts: 26
It didn't error out and it created the macro,

However it was devoid of anything, and when I added the /script from an character it worked on the left click wouldn't do anything and right click said there was no mount available of the current character.

Not sure if

Lua Code:
  1. if self.db.char.mount_skill == 0 then
  2.         return nil
  3.     end

on 583 is a problem? or the fact I'm on an alliance char as you put

Lua Code:
  1. local id = (UnitFactionGroup("player") == "Horde") and 678 or 679
  Reply With Quote
03-05-17, 04:18 PM   #11
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
It's working for me at least, on both level 1 alliance/horde chars
It shouldn't even get to line 583, it first checks if you're level 20 before and summons the Chauffeured mount instead of any random mounts

Are you using the same source?
https://raw.githubusercontent.com/Ke...untManager.lua

Last edited by Ketho : 03-05-17 at 04:36 PM.
  Reply With Quote
03-05-17, 04:38 PM   #12
Uggers
A Fallenroot Satyr
 
Uggers's Avatar
Join Date: May 2008
Posts: 26
So wierd,

Just made a random lvl 1 with only mountmanager but it fails on the macro.

It generates a Green Macro Box, with nothing in it

If I put
/script MountManagerButton:Click(GetMouseButtonClicked());

Into the macro that doesn't work either
  Reply With Quote
03-05-17, 04:42 PM   #13
Uggers
A Fallenroot Satyr
 
Uggers's Avatar
Join Date: May 2008
Posts: 26
Disregard the above,

I was totally editing the wrong file, I had a 2nd notepad++ tab open with a version on my desk top
so I was saving it and reloading ui expecting something to happen..... it didn't

So I've edited the proper version and lo and behold it works!

Last edited by Uggers : 03-05-17 at 04:48 PM.
  Reply With Quote

WoWInterface » Developer Discussions » Lua/XML Help » Mount Journal Help


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off