I'm not having the issue. I have people in my guild w/ public, officer's, and both. See all of'em. Of course, not everyone can see an officer's note, unless it's turned on for their rank.
I tried disabling and re-enabling the plugin, but I'm still getting Updating...
Here's the error I get:
[2006/09/19 14:38:33-201]: <unknown>:
<in C code>: in function `sort'
FuBar_GuildFu\FuBar_GuildFu.lua:200: in function `OnDataUpdate'
FuBarPlugin-2.0\FuBarPlugin-2.0.lua:157: in function `UpdateData'
FuBarPlugin-2.0\FuBarPlugin-2.0.lua:144: in function `Update'
FuBarPlugin-2.0\FuBarPlugin-2.0.lua:278: in function `Show'
FuBarPlugin-2.0\FuBarPlugin-2.0.lua:835: in function <...Ons\BigWigs\Libs\FuBarPlugin-2.0\FuBarPlugin-2.0.lua:833>
FuBarPlugin-2.0\FuBarPlugin-2.0.lua:853: in function `OnEmbedEnable'
AceDB\AceDB-2.0.lua:988: in function `ToggleActive'
FuBarPlugin-2.0\FuBarPlugin-2.0.lua:256: in function `?'
Dewdrop\Dewdrop-2.0.lua:466: in function <...ce\AddOns\ag_UnitFrames\libs\Dewdrop\Dewdrop-2.0.lua:421>
FuBar_GuildFu is working fine now... I just had to switch to an alt and create another profile. I then used that new profile (with the working GuildFu) on my main char and it works.
I guess I'm the only one that never got the error but my tooltip/text never updates after the initial population.
So, this has been bugging the crap out of me because I deleted all my saved variable files, and still on my main, it doesn't update. :) But it does on my alt. So, I uncommented some of the debugging statements and moved them around, and this is what I found:
function FuBar_GuildFu:GUILD_ROSTER_UPDATE()
if not arg1 or (arg1 and arg7 and arg8) then
-- print("[GuildFu] Debug: GUILD_ROSTER_UPDATE fired with args...", not arg1)
self:Update()
end
end
This code is never passing the conditional for me, the debug never printed after I uncommented it. So, I moved the debug statement outside the if to see what arg1 is. It prints out "GUILD_ROSTER_UPDATE fired with args... unusable." I changed it to print out "not arg1" and it prints "false", and "arg1 arg7 arg8" prints out "unusable nil nil."
So, mystery solved on why my main never gets tooltip updates. The code is never called! For now, I commented out the entire if statement and just had it always call self:Update(). I have no idea why this works on my alt and not me though, or what the expected arguments are (it's not clear from wowwiki what they're supposed to be). I'm in AQ40 at the moment or I'd log my alt in and see what the debug statements say for her.
I'm in AQ40 at the moment or I'd log my alt in and see what the debug statements say for her.
Checked my alt this morning, and her arg1 arg7 and arg8 are all "nil", so I don't know why one character's arg1 is "unusable" and the other one is "nil" but I guess that finally explains why one char doesn't update. :)
when I have guildies in zones which a long zone name like "Warsong Gulch" or "Un'gora Crater" the display gets a little chaotic and hard to read because of linebreaks in the zone name which seem only to effect the zone cell itself, not the entire row, so the broken zone name in two rows is also on the line of th next row, leading to not good reading.
As there is more then enough space on the screen it would be nice to get rid of that forced unwanted linebreaks at all.
They both had a "Fixed broken externals for AceLocale-2.2" update (see trac revision log), and AceLocale-2.2 is not in the Ace2 trunk right now, only in branches... guess that broke them, until AceLocale-2.2 is in the trunk or you checkout the branches version of this library.
The thing that is preventing me from moving to this FuBar 2.0 trunk version from Tekkub's Ace1/FuBar 1.2 branch version (of Garfield's FuBar 1.0 original):
Tekkub's has the ability to rightclick a guild member name to either party invite or whisper (off of a right-click menu, as is standard FuBar behavior).
The current Ace2/FuBar2 trunk version by Elkano doesn't allow this. There are no right-click menus. Have to remember special mouse clicks on a guild member name to party invite or whisper.
Not a major deal for some people, but enough to prevent me from moving to the new Ace2 version. Could those menus be added back? So that those who prefer menu access to functions rather than remembering click sequences also be...happy? :)
Is it just me that cannot figure out how to display someones class in the tooltip, or is that option missing? I know it dortoff displays trough color, but I mean, would be nice to see Rogue when someone is a rogue... (Rebuilding a guild, getting lots of members, never remember their classes :P )
Is it just me that cannot figure out how to display someones class in the tooltip, or is that option missing? I know it dortoff displays trough color, but I mean, would be nice to see Rogue when someone is a rogue... (Rebuilding a guild, getting lots of members, never remember their classes :P )
try options, I am currently displaying the class of all my guildmates.
After doing an SVN update of both guildfu and friendsfu (dunno if they're the same author?) I received these two identical errors (line ##s aside of course):
Error: attempt to call method 'HasModule' (a nil value)
AddOn: FuBar_FriendsFu
File: FuBar_FriendsFu.lua
Line: 222
Count: 1
--------------------------------------------------
Error: attempt to call method 'HasModule' (a nil value)
AddOn: FuBar_GuildFu
File: FuBar_GuildFu.lua
Line: 304
Count: 1
I get that anytime I mouse over it to see whose on. Anyone know if it's some ancient option i still have or if another addon might be interfering with it?
I'm not having the issue. I have people in my guild w/ public, officer's, and both. See all of'em. Of course, not everyone can see an officer's note, unless it's turned on for their rank.
FuBar_GuildFu is working fine now... I just had to switch to an alt and create another profile. I then used that new profile (with the working GuildFu) on my main char and it works.
After enabling and disabling, when I mouse-over, I get this error.
Edit 1: Ok, I've searched all my addons and only find one that has a different version of Tablet, I'll try disabling that one.
Edit 2: Disabling the other add-on did not solve the problem, I'm still getting the above error and the list is not updating.
Edit 3: I deleted the FuBar_GuildFu.lua and it is working as before.
I'll try if deleting the FuBar_GuildFu.lua will solve the problem for me as well.
So, this has been bugging the crap out of me because I deleted all my saved variable files, and still on my main, it doesn't update. :) But it does on my alt. So, I uncommented some of the debugging statements and moved them around, and this is what I found:
This code is never passing the conditional for me, the debug never printed after I uncommented it. So, I moved the debug statement outside the if to see what arg1 is. It prints out "GUILD_ROSTER_UPDATE fired with args... unusable." I changed it to print out "not arg1" and it prints "false", and "arg1 arg7 arg8" prints out "unusable nil nil."
So, mystery solved on why my main never gets tooltip updates. The code is never called! For now, I commented out the entire if statement and just had it always call self:Update(). I have no idea why this works on my alt and not me though, or what the expected arguments are (it's not clear from wowwiki what they're supposed to be). I'm in AQ40 at the moment or I'd log my alt in and see what the debug statements say for her.
Checked my alt this morning, and her arg1 arg7 and arg8 are all "nil", so I don't know why one character's arg1 is "unusable" and the other one is "nil" but I guess that finally explains why one char doesn't update. :)
when I have guildies in zones which a long zone name like "Warsong Gulch" or "Un'gora Crater" the display gets a little chaotic and hard to read because of linebreaks in the zone name which seem only to effect the zone cell itself, not the entire row, so the broken zone name in two rows is also on the line of th next row, leading to not good reading.
As there is more then enough space on the screen it would be nice to get rid of that forced unwanted linebreaks at all.
Thanks
Although I would still like to see the whole linebreaking thing gone in the first place.
Otherwise it works really fine ! (no linebreaks either)
Tekkub's has the ability to rightclick a guild member name to either party invite or whisper (off of a right-click menu, as is standard FuBar behavior).
The current Ace2/FuBar2 trunk version by Elkano doesn't allow this. There are no right-click menus. Have to remember special mouse clicks on a guild member name to party invite or whisper.
Not a major deal for some people, but enough to prevent me from moving to the new Ace2 version. Could those menus be added back? So that those who prefer menu access to functions rather than remembering click sequences also be...happy? :)
[2007/01/20 13:29:24-632-x15]: FuBar_GuildFu-2.2\FuBar_GuildFu.lua:488: Tourist-2.0: Bad argument #2 to `IsBattleground' (string expected, got nil)
---
try options, I am currently displaying the class of all my guildmates.
Error: attempt to call method 'HasModule' (a nil value)
AddOn: FuBar_FriendsFu
File: FuBar_FriendsFu.lua
Line: 222
Count: 1
--------------------------------------------------
Error: attempt to call method 'HasModule' (a nil value)
AddOn: FuBar_GuildFu
File: FuBar_GuildFu.lua
Line: 304
Count: 1
I get that anytime I mouse over it to see whose on. Anyone know if it's some ancient option i still have or if another addon might be interfering with it?