View Single Post
03-01-24, 05:14 AM   #9
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,938
Good news and Bad news

Good news - button works ( it moves, it toggles etc )

Bad news - apparently the dragonriding mounts don't get selected when listing mounts. And none of the mounts that are listed show up as dragonriding able.

Code used:
Lua Code:
  1. local function BuildDynamicFlightMountsList()
  2.    
  3.     local mountIDs = C_MountJournal.GetMountIDs()
  4.    
  5.     for i = 1,#mountIDs do
  6.         local name, spellID, icon, isActive, isUsable, sourceType, isFavorite, isFactionSpecific, faction, shouldHideOnChar, isCollected, mountID, isForDragonriding = C_MountJournal.GetMountInfoByID(i)
  7.  
  8.         XMount_MountList[i] = {
  9.             ["index"] = i,
  10.             ["mountID"] = mountID,
  11.             ["name"] = name,
  12.             ["spellID"] = spellID,
  13.             ["icon"] = icon,
  14.             ["isActive"] = isActive,
  15.             ["isUsable"] = isUsable,
  16.             ["isCollected"] = isCollected,
  17.             ["isForDragonriding"] = isForDragonriding,
  18.         }
  19.     end    
  20.  
  21. end

It returned an over 9000 line table list containing over 1000 entries ( many blank ) and my Dragonriding Proto-Drakes weren't there ( I have 2 on my max level warlock ). And none of the other mounts are showing as Dragonriding.

I even went to Stormwind ( an annoying option as I haven't got the portal set up on the Dragon Isles ) and even resorted to simplifying the code to

Lua Code:
  1. XMount_MountList[i] = C_MountJournal.GetMountInfoByID(i)

In case they had changed the return values

Neither of my Dragonriding mounts are in the mount list generated. Despite being in my mount screen when selecting collected known dragonriding as filters.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
  Reply With Quote