| Tested: | Hour of Twilight 4.3 |
| Updated: | 04-21-12 07:40 PM |
| Created: | unknown |
| Downloads: | 66,963 |
| Favorites: | 984 |
| MD5: |

).File Name |
Version |
Size |
Author |
Date |
r43 |
21kB |
Aranarth |
06-28-11 01:48 PM |
|
r42 |
21kB |
Aranarth |
05-07-11 03:01 PM |
|
r41 |
21kB |
Aranarth |
05-07-11 12:31 PM |
|
r40 |
21kB |
Aranarth |
05-03-11 11:41 AM |
|
r39 |
21kB |
Aranarth |
02-08-11 12:50 PM |
|
r38 |
21kB |
Aranarth |
02-03-11 01:47 PM |
|
r37 |
19kB |
Aranarth |
11-06-10 04:23 PM |
|
r36 |
19kB |
Aranarth |
10-12-10 01:05 AM |
|
r34 |
18kB |
Aranarth |
08-03-10 05:39 PM |
|
r33 |
18kB |
Aranarth |
07-30-10 05:52 AM |
|
r32 |
18kB |
Aranarth |
07-25-10 09:03 PM |
|
r30 |
17kB |
Aranarth |
07-15-10 01:38 PM |
|
r29 |
15kB |
Aranarth |
07-08-10 03:20 PM |
|
r28 |
14kB |
Aranarth |
07-07-10 03:48 PM |
|
r27 |
14kB |
Aranarth |
07-07-10 02:12 PM |
|
r26 |
14kB |
Aranarth |
07-06-10 07:44 PM |
|
r25 |
15kB |
Aranarth |
07-04-10 05:04 PM |
|
r23 |
12kB |
Aranarth |
01-21-10 08:04 AM |
|
r22 |
13kB |
Aranarth |
08-09-09 11:31 AM |
|
r21 |
14kB |
Aranarth |
08-01-09 06:47 AM |
|
r19 |
13kB |
Aranarth |
07-02-09 03:42 PM |
|
r12 |
13kB |
Aranarth |
12-15-08 05:39 AM |
![]() |
Comment Options |
|
|
|
|
Re: Re: Re: Re: Skinner and the guild XP bar?
New version up which includes fixes for status messages, D3 friends support, and correct toc version so "load out of date" is no longer required to be checked to use.
Last edited by MysticalOS : 05-08-12 at 06:49 PM.
|
|
|
|
|
|
||
|
Re: Re: Re: Skinner and the guild XP bar?
![]() |
||
|
|
|
|
||
|
A Kobold Labourer
Forum posts: 0
File comments: 3
Uploads: 0
|
Re: Re: Re: Skinner and the guild XP bar?
|
|
|
|
|
|
|
|
I'm more lazy then MysticalOS
Code:
local t_status = { [0] = "", [1] = CHAT_FLAG_AFK, [2] = CHAT_FLAG_DND }
function f:GUILD_ROSTER_UPDATE()
for k, v in next, guildEntries do del(v) guildEntries[k]=nil end
local r,g,b = unpack(colors.officerNote)
local officerColor = ("\124cff%.2x%.2x%.2x"):format( r*255, g*255, b*255 )
for i=1, (GetNumGuildMembers()) do
local name, rank, rankIndex, level, class, zone, note, offnote, connected, status, engClass, achPoints, achRank, isMobile = GetGuildRosterInfo(i)
status = t_status[status] or "unknown: "..status
...
|
|
|
|
|
|
|
|
Re: Re: Skinner and the guild XP bar?
looks like 4.3.2 made a subtle api change
GetGuildRosterInfo now returns status as a number value instead of a string, so available is 0, 1 is away etc. so on the broker menu, players have random numbers next to name now code eneds to be added that says if status 0 = return '' if it's 1 return ''Away", if it's 2 it's DND/busy. here is my lazy hack for now Code:
function f:GUILD_ROSTER_UPDATE()
for k, v in next, guildEntries do del(v) guildEntries[k]=nil end
local r,g,b = unpack(colors.officerNote)
local officerColor = ("\124cff%.2x%.2x%.2x"):format( r*255, g*255, b*255 )
for i=1, (GetNumGuildMembers()) do
local name, rank, rankIndex, level, class, zone, note, offnote, connected, status, engClass, achPoints, achRank, isMobile = GetGuildRosterInfo(i)
if connected or isMobile then
local notes = note ~= "" and (offnote == "" and note or ("%s |cffffcc00-|r %s%s"):format(note, officerColor, offnote)) or
offnote == "" and "|cffffcc00-" or officerColor..offnote
if status == 0 then status = ""
elseif status == 1 then status = CHAT_FLAG_AFK
elseif status == 2 then status = CHAT_FLAG_DND
end
guildEntries[#guildEntries+1] = new( L[class] or "", name or "", level or 0, zone or UNKNOWN, notes, isMobile and "<Mobile>" or status or "", rankIndex or 0, rank or 0, i, isMobile )
end
end
UpdateGuildBlockText()
if isGuild and f:IsShown() then UpdateTablet() end
end
. Code could be cleaner looking though but this works.
Last edited by MysticalOS : 02-01-12 at 04:21 PM.
|
|
|
|
|
|
|
|
Re: Skinner and the guild XP bar?
@Aphelion78:
Not sure if it's of any help but the global name for the XP bar is "ABGF_XPBar". It's created using the following Blizzard's template: "GuildProgressBarTemplate". You can find its definition in Blizzard_GuildUI.xml. |
|
|
|
|
|
|
|
Skinner and the guild XP bar?
I've been poking around in the LUA looking for a way to skin the xp bar in the tooltip via Skinner. I realize that there already is a Skinner (Skinme) file for this addon but it leaves the xpbar all ugly looking and it clashes with my ui (yeah, I'm a tad picky that way). I tried messing with the glazeStatusBar(xpbar) code in the skinner file but it didn't change anything. Could any anyone be of help with this? My knowledge of LUA is pretty limited but I'm learning it rather quick. Thank you!
![]() |
|
|
|
|
|
|
|
Aranarth, u cancelled your account...?
So who's gonna take care of this great addon? |
|
|
|
|
|
|
|
@Eincrou:
I canceled my account 5 month ago so I can't help much. But it seems you don't have the last version: I don't have the same lines as in your error. Hope this helps. |
|
|
|
|
|
|
|
I don't receive that error with Bazooka.
__________________
Author/maintainer of TinyDPS and Conquistador. |
|
|
|
|
|
|
|
A Murloc Raider
Forum posts: 5
File comments: 17
Uploads: 0
|
Error when mousing over the Broker feed. I use Bazooka to display Broker.
Code:
Date: 2011-11-30 12:31:39
ID: 1
Error occured in: Global
Count: 10
Message: ..\FrameXML\UIParent.lua line 3438:
attempt to perform arithmetic on local 'level' (a nil value)
Debug:
[C]: ?
..\FrameXML\UIParent.lua:3438:
..\FrameXML\UIParent.lua:3437
...ra_Broker_Guild_Friends\Ara_Broker_Guild_Friends.lua:574:
...ra_Broker_Guild_Friends\Ara_Broker_Guild_Friends.lua:506
...ra_Broker_Guild_Friends\Ara_Broker_Guild_Friends.lua:787:
...ra_Broker_Guild_Friends\Ara_Broker_Guild_Friends.lua:755
...ra_Broker_Guild_Friends\Ara_Broker_Guild_Friends.lua:651:
...ra_Broker_Guild_Friends\Ara_Broker_Guild_Friends.lua:623
...ra_Broker_Guild_Friends\Ara_Broker_Guild_Friends.lua:1304: OnEnter()
Bazooka\Bazooka.lua:1396: showTip()
Bazooka\Bazooka.lua:1224:
Bazooka\Bazooka.lua:1215
|
|
|
|
|
|
|
A Kobold Labourer
Forum posts: 0
File comments: 52
Uploads: 0
|
Suggestion
Would it be possible to add an option to the Guild broker that shows your current guild rep, xp to next lvl, xp left to gain for the week, etc?
|
|
|
|
|
|
|
Re: Re: Re: How can i put this on Elvui Datatext
still tainting tho
8/25 20:34:54.281 An action was blocked in combat because of taint from Ara_Broker_Guild_Friends - RaidFrame:Hide() 8/25 20:34:54.281 Interface\FrameXML\FriendsFrame.lua:78 FriendsFrame_ShowSubFrame() 8/25 20:34:54.281 Interface\FrameXML\FriendsFrame.lua:256 FriendsFrame_Update() 8/25 20:34:54.281 Interface\FrameXML\FriendsFrame.lua:240 8/25 20:34:54.281 FriendsFrame:Show() 8/25 20:34:54.281 Interface\FrameXML\UIParent.lua:1508 <unnamed>:SetUIPanel() 8/25 20:34:54.281 Interface\FrameXML\UIParent.lua:1352 <unnamed>:ShowUIPanel() 8/25 20:34:54.281 Interface\FrameXML\UIParent.lua:1239 8/25 20:34:54.281 <unnamed>:SetAttribute() 8/25 20:34:54.281 Interface\FrameXML\UIParent.lua:1943 ShowUIPanel() 8/25 20:34:54.281 Interface\FrameXML\FriendsFrame.lua:1084 ToggleFriendsFrame() 8/25 20:34:54.281 Interface\AddOns\Ara_Broker_Guild_Friends\Ara_Broker_Guild_Friends.lua:1322 OnClick() 8/25 20:34:54.281 Interface\AddOns\Bazooka\Bazooka.lua:1254
Last edited by MysticalOS : 08-30-11 at 10:41 PM.
|
|
|
|
|
|
||
|
Re: Re: How can i put this on Elvui Datatext
http://wow.go-hero.net/framexml/14333/FriendsFrame.lua Line 2073 I don't know much about how WoW indexes friends, or what the toonID or presenceID is, so I'm hoping that you're in a better position to actually figure out how to use that function. |
||
|
|
![]() |