Thread Tools Display Modes
04-13-13, 08:09 AM   #1
tawaraya
A Murloc Raider
Join Date: Jan 2010
Posts: 7
action bar wont show on last boss in dtk

on last boss in drak tharon keep when boss changes u into skeleton the action bar for the skeleton buttons doesnt show any idea how to fix that?

using nui5 incase u wondering which
 
04-13-13, 10:42 AM   #2
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,929
Looking at the some web searches on that boss it looks like there may be problems getting the right bar to appear.

2 Sep 2012 - http://us.battle.net/wow/en/forum/topic/6490009164 - When Tharon'ja transforms the group to undead, the special action bar does not appear.

14 Feb 2013 - http://us.battle.net/wow/en/forum/topic/7922982721 - Tharonja removed all my abilities

30 Dec 2012 - http://www.curse.com/forums/games/wo...itching-during - On the last boss of Drak'Tharon Keep, where you get transformed into a skeleton, your first action bar should switch to a new set of abilities. Mine doesn't.

Reply on the last one .. 'With both BT4 and Dominos, there is an option per action bar to switch with vehicle, but I believe it is off by default. In any case, I'm fairly certain that's what you want. '

So sounds like there is another macro action bar setting that needs to be set for this type of thing that might be hidden somewhere in Bartender and Dominos.
__________________


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
 
04-13-13, 05:08 PM   #3
tawaraya
A Murloc Raider
Join Date: Jan 2010
Posts: 7
dont have bt4 and dominos installed in addons only have nui installed for addon so is there a way to turn that action bar on in nui
 
04-13-13, 08:48 PM   #4
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,929
nUI should automatically change action bars so I suspect there is another setting that bartender addon knows about that nUI doesn't. hopefully it is easy to find.


Edit 1: I was posting those example links to help explain that it is a blizz fault that is likely causing it as it was happening without any addons for someone.

Edit 2: Unfortunately I can't see what setting nUI needs to make as I cannot locate the settings in bartender that even remotely looks like how nUI sets its bars up with. And without an easier way of testing I can't even play with it to track down the setting like I did with all the other possible settings.

Edit 3: Looking at the blizz coding it is possible that it is linked to the following which may or may not be in nUI .

Lua Code:
  1. elseif (HasTempShapeshiftActionBar()) then
  2.       MainMenuBarArtFrame:SetAttribute("actionpage", GetTempShapeshiftBarIndex());

I will try and take a look before I start playing tomorrow.
__________________


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-13-13 at 08:58 PM.
 
04-14-13, 04:43 AM   #5
tawaraya
A Murloc Raider
Join Date: Jan 2010
Posts: 7
does same thing with quest in vash

vision of the past: invasion of vashj'ir
reoccupation

if u want to know which class playing it on its a monk thought i let u know if that helps

Last edited by tawaraya : 04-14-13 at 05:16 AM.
 
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,929
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:	643
Size:	245.7 KB
ID:	7673  Click image for larger version

Name:	WoWScrnShot_041413_122856.jpg
Views:	595
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.
 
04-14-13, 06:12 AM   #7
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,929
Okay, looks like I was right. Draktharon Keep uses the TempShapeshift Bar for those abilities.

Now to see how nUI can be fixed to work with it.
Attached Thumbnails
Click image for larger version

Name:	WoWScrnShot_041413_131027.jpg
Views:	692
Size:	306.1 KB
ID:	7676  Click image for larger version

Name:	WoWScrnShot_041413_131042.jpg
Views:	613
Size:	294.9 KB
ID:	7677  
__________________


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
 
 

WoWInterface » Featured Projects » nUI, MozzFullWorldMap and PartySpotter » Support » nUI: Bug Reports » action bar wont show on last boss in dtk


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