WoWInterface

WoWInterface (https://www.wowinterface.com/forums/index.php)
-   General Authoring Discussion (https://www.wowinterface.com/forums/forumdisplay.php?f=20)
-   -   Need of assistance with someone with beta access (https://www.wowinterface.com/forums/showthread.php?t=50006)

10leej 10-04-14 01:10 PM

Need of assistance with someone with beta access
 
1 Attachment(s)
I'm just curious as to how horribly broken BobUI and oUF_Bob are in WoD.

If it's gonna require a major overhaul I might just scrap them and start over but I can't test nowadays as I live out of range of a proper internet service (I have to use satellite >.>) and can only really only do any testing on weekends.

I highly recommend just running with the following addons enable:

!Beautycase (not necessary but makes fancy grey borders and there's extensive support in the BobUI addon)
BobSkins
BobUI
BobUI-Setup
Click Menu
oUF
oUF: Bob

Beta file included

MiRai 10-04-14 01:48 PM

If someone doesn't test it for you, can you test it yourself on the PTR? Doesn't the PTR have the same build as the beta internally without WoD content?

Duugu 10-04-14 02:23 PM

My guess without testing it: the sheer checkbox change from 1/nil to true/false will break most of it.
I would say simply testing the MoP version on WoD without updating those common stuff doesn't make much sense.

Beta servers are down atm btw.

I'll try it if the servers are back - even if it is more or less nonsensical. :)

10leej 10-04-14 02:41 PM

Quote:

Originally Posted by MiRai (Post 297409)
If someone doesn't test it for you, can you test it yourself on the PTR? Doesn't the PTR have the same build as the beta internally without WoD content?

I'd have to download the ptr client which my isp gives me a 15GB data cap then cuts off my intenet for the month if I go over and the comp I use on the weekends is a completely differe one from the one I have available on weekdays.

ObbleYeah 10-04-14 02:50 PM

if you have anything to do with the watchframe on live then you'll get some errors at least, since it's been rewritten extensively.

Fizzlemizz 10-04-14 03:19 PM

Quote:

Originally Posted by ObbleYeah (Post 297413)
if you have anything to do with the watchframe on live then you'll get some errors at least, since it's been rewritten extensively.

And the updated version of AceDB-3.0.

10leej 10-04-14 03:20 PM

Quote:

Originally Posted by ObbleYeah (Post 297413)
if you have anything to do with the watchframe on live then you'll get some errors at least, since it's been rewritten extensively.

I do a little bit with the watch frame I'll have to see how it's been changed I haven't logged in to live since June to be honest

All i did do was move it
Lua Code:
  1. WatchFrameCollapseExpandButton:ClearAllPoints()
  2. WatchFrameCollapseExpandButton.ClearAllPoints = function() end
  3. WatchFrameCollapseExpandButton:SetPoint("BOTTOMLEFT", Minimap, 0,0)
  4. WatchFrameCollapseExpandButton:SetAlpha(0)
  5. WatchFrameCollapseExpandButton:SetFrameStrata("MEDIUM")
  6. WatchFrameCollapseExpandButton:SetFrameLevel(2)
  7.  
  8. local function init()
  9.     local wf = _G['WatchFrame']
  10.     wf:ClearAllPoints()
  11.     wf.ClearAllPoints = function() end
  12.     wf:SetPoint(unpack(cfg.watch.position))
  13.     wf.SetPoint = function() end
  14.     wf:SetHeight(cfg.watch.height)  
  15.     wf:SetFrameStrata("LOW")
  16. end
  17. local a = CreateFrame("Frame")
  18. a:SetScript("OnEvent", function(self, event)
  19.     if(event=="PLAYER_LOGIN") then
  20.         init()
  21.     end
  22. end)
  23. a:RegisterEvent("PLAYER_LOGIN")
  24. local f = CreateFrame("Frame")

Quote:

Originally Posted by Fizzlemizz (Post 297414)
And the updated version of AceDB-3.0.

I actually don't use any Ace libraries myself so thats shouldn't be an issue.

Fizzlemizz 10-04-14 03:22 PM

Recount does.

Edit: the Watchframe has changed name to ObjectiveTrackerFrame and been redesigned.

10leej 10-04-14 03:24 PM

Quote:

Originally Posted by Fizzlemizz (Post 297416)
Recount does.

That it does but I'll let those guys update it, I'm only working with my addons right now. (BobUI is a standalone addon in the compilation)

def9 10-05-14 09:17 AM

Ok I logged in with bobui turned on this morning and got 67 errors. Reading through the laundry list I noticed Recount and DBM were listed in many.

I submitted the lua error code via the bug report system for you to take a look at for the single error I get evertime I log in with the two above culprits turned off. The lack of actions bars on my screen made combat fun for sure.

Duugu 10-05-14 10:18 AM

I've disabled everthing except:
  • !Beautycase
  • BobSkins
  • BobUI
  • BobUI-Setup
  • Click Menue
  • oUF
  • oUF Smooth Update
  • oUF: Bob

With the following errors fixed it at least loads up without any further errors. Don't know if something is missing though. (There's no BobUI config panel or something, right?)

core.lua
SetCVar("mapQuestDifficulty", 1) is nil

macro.lua
MAX_NUM_TALENTS is nil

minimap.lua
WatchFrame stuff

bag.lua
_G["BankFrameItem"..i.."IconQuestTexture"] is nil
_G[nameframe:GetName().."Left"] is nil

bars.lua
PVPMicroButton is Nil

[e]
Guess there's something missing below the action bars? Maybe the micro bar?


10leej 10-05-14 10:31 AM

Quote:

Originally Posted by Duugu (Post 297432)
With the following errors fixed it at least loads up without any further errors. Don't know if something is missing though. (There's no BobUI config panel or something, right?)

No never got around to making an in game config. There's also no actual micro menu that's hidden at the top of BobUI>modules>actionbars>bar.lua I use Click Menu to handle the micromenu functions. However looks like everything is for the most part fine, thanks for taking the time to do all that for me :)

def9 got your error report try commenting out BobUI>modules>actionbars>bar.lua line 42 and 43 (thats also whats causing the actionbars to error out as it's towards the top)

Lua Code:
  1. PVPMicroButton:SetScale(0.0001)
  2. PVPMicroButton:EnableMouse(false)

Anyways I'll see about getting those fixes posted. Got a beta page setup pending a certain someones approval of course.

Resike 10-05-14 11:30 AM

Quote:

Originally Posted by 10leej (Post 297434)
No never got around to making an in game config. There's also no actual micro menu that's hidden at the top of BobUI>modules>actionbars>bar.lua I use Click Menu to handle the micromenu functions. However looks like everything is for the most part fine, thanks for taking the time to do all that for me :)

def9 got your error report try commenting out BobUI>modules>actionbars>bar.lua line 42 and 43 (thats also whats causing the actionbars to error out as it's towards the top)

Lua Code:
  1. PVPMicroButton:SetScale(0.0001)
  2. PVPMicroButton:EnableMouse(false)

Anyways I'll see about getting those fixes posted. Got a beta page setup pending a certain someones approval of course.

I've only logged into the beta once, but i'm pretty sure about the PVPMicroButton got removed, and there is a new LFDMicroButton to replace any pve and pvp tabs.

10leej 10-05-14 11:32 AM

Quote:

Originally Posted by Resike (Post 297439)
I've only logged into the beta once, but i'm pretty sure about the PVPMicroButton got removed, and there is a new LFDMicroButton to replace any pve and pvp tabs.

Well I do have LFDMicroButton hidden already so We'll see how that turns out.

ObbleYeah 10-05-14 11:33 AM

re: pvp micro-button: it did. For a month or so I thought is was just disabled for the beta :o

re:
Quote:

bag.lua
_G["BankFrameItem"..i.."IconQuestTexture"] is nil
this is now passed through a new frame which also adds item quality colouring, so the quest texture has been removed or renamed. I think the new frame called BankFrameItem1IconBorder, there's similar instances of it for bag and character buttons, and it will conflict with your skinning mod.

10leej 10-05-14 11:35 AM

Quote:

Originally Posted by ObbleYeah (Post 297441)
re: pvp micro-button: it did. For a month or so I thought is was just disabled for the beta :o

Well glad to see their consolidating stuff. Anyways got the OP updated with the beta version


All times are GMT -6. The time now is 05:04 AM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2004 - 2022 MMOUI