View Single Post
10-15-10, 01:27 PM   #38
Ecyrul
A Kobold Labourer
Join Date: Oct 2010
Posts: 1
I was having a multitude of Lua errors as well, so I opened up the carbonite.lua in Addon Studio for Wow and went to the line 6433 (thats where most of the errors seemed to start) it seemed the declaration was not complete, missing a couple ,, etc. however adding them didn't fix my issues. so I went back in and deleted this Code Portion
for n=1,lbC do
local des1,typ,don=GetQuestLogLeaderBoard(n,qi)
if des1~=cur[n] or don~=cur[n+100] then
if opt["QWAddChanged"] then
if cha1==nil then
cha1=true
end
end
local s1,_,olC1=strfind(cur[n] or "",": (%d+)/")
if s1 then
olC1=tonumber(olC1)
end
local s1,_,neC=strfind(des1,": (%d+)/")
if s1 then
neC=tonumber(neC)
end
if don or(olC1 and neC and neC>olC1) then
self:Cap(cur2,n)
end
laC=cur
paS=true
end
end
I am in no way a coder (obviously by the Delete rather than fix),
but removing this statement has fixed all of my LUA errors, it fixed my Quest Log and my FPS (due to the repeating error)
I don't know what I removed functionality wise but hopefully it may help you pinpoint the problem, also the ONLY other addon I had running was Addon Control Panel