|
|
Source code |
1 |
/run BugMessageFrame:Show() |
Quoted from "Noguai;604379"
Please report the errors you have. The first ones (about 3) are the most important errors, because mostly the rest only happened because one of these.
Quoted from "neverpkangel;604382"
Error Amount 1/46:
call ChatFramChannelChange's OnEvent, line: [string '?']:393: attempt to index global 'g_ChannelChangeConfig' (a nil value)
Quoted from "trav42073;604511"
I have been having this error for months now, and a month or so started getting dc a lot and heavy lag, so uninstalled all addons. and imho xbar sucks compared to zzinfobar. I went through and did one addon at a time to narrow down that xbar was causing error.when I changed from xbar to zzinfobar the above error message quit popping up. dunno why.
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
-- Fix g_ChannelChangeConfig error on early chat messages while loading
function HighLight(ID)
if not g_ChannelChangeConfig then return end
local b1 , b2 ;
b1 = getglobal("ChatFrameChannelChangeButton"..ID.."Highlight_");
b2 = getglobal("ChatFrameChannelChangeButton"..ID.."Highlight2_");
local b3 = getglobal("ChatFrameChannelChangeButton"..ID.."MainHighlight");
if(g_ChannelChangeConfig.HighLight_Persist) then
b1:Show();
b2:Show();
b3:Show();
elseif(g_ChannelChangeConfig.HighLight) then
b1:Show();
b2:Show();
b3:Show();
b1.playCount = 0;
b1.alphaValue = 0.2;
b1.state = nil;
else
b1:Hide();
b2:Hide();
b3:Hide();
end
end
|
Quoted from "Noguai;604385"
Seems like UMM needs Sol but hasn't included it to the addons files.
Download the Sol library from http://rom.curseforge.com/addons/sol/ and install it like a normal addon.
That should solve the error. If not, just report the new error messages.
Quoted from "neverpkangel;604382"
Error Amount 1/46:
call ChatFramChannelChange's OnEvent, line: [string '?']:393: attempt to index global 'g_ChannelChangeConfig' (a nil value)
Quoted from "trav42073;604511"
I have been having this error for months now, and a month or so started getting dc a lot and heavy lag, so uninstalled all addons. and imho xbar sucks compared to zzinfobar. I went through and did one addon at a time to narrow down that xbar was causing error.when I changed from xbar to zzinfobar the above error message quit popping up. dunno why.