View Single Post
04-14-13, 05:25 AM   #6
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,925
thanks.

Looks like I can solo dtk with my paladin so just ran through it without addons and can see it working but none of my debug code is showing which is worrying:

Lua Code:
  1. local eventFrame = CreateFrame("Frame","XUI_ActionBar_Events")
  2.  
  3. local function CheckEvents(self,event,...)
  4.     local args = { ... }
  5.     print(event,args[1],args[2],args[3],args[4],args[5])
  6.  
  7.     print("HasVehicleActionBar() = ", HasVehicleActionBar())
  8.     print("HasOverrideActionBar() = ", HasOverrideActionBar())
  9.     print("HasTempShapeshiftActionBar() = ", HasTempShapeshiftActionBar())
  10.     print("HasBonusActionBar() = ", HasBonusActionBar())
  11.     print("HasTempShapeshiftActionBar() = ", HasTempShapeshiftActionBar())
  12.    
  13. end
  14.  
  15.  
  16. eventFrame:RegisterEvent("ACTIONBAR_PAGE_CHANGED")
  17. eventFrame:RegisterEvent("UPDATE_BONUS_ACTIONBAR")
  18. eventFrame:RegisterEvent("UPDATE_VEHICLE_ACTIONBAR")
  19. eventFrame:RegisterEvent("UPDATE_OVERRIDE_ACTIONBAR")
  20. eventFrame:RegisterEvent("UPDATE_SHAPESHIFT_FORM")
  21. eventFrame:RegisterEvent("UPDATE_POSSESS_BAR")
  22. eventFrame:RegisterEvent("UPDATE_EXTRA_ACTIONBAR")

So now testing the tournament ground area to see if my debug tests are working there.

edit: oops, forgot to set the script to run rofl .. oh well need to empty the bags after the first run , so will reset and try again.

edit2: second screenshot shows what my mini addon does. As you can see it correctly recognises that it has loaded the vehicle action bar.
Attached Thumbnails
Click image for larger version

Name:	WoWScrnShot_041413_121944.jpg
Views:	642
Size:	245.7 KB
ID:	7673  Click image for larger version

Name:	WoWScrnShot_041413_122856.jpg
Views:	594
Size:	270.2 KB
ID:	7675  
__________________


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

Last edited by Xrystal : 04-14-13 at 05:39 AM.