This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
If you are getting LUA errors after ready checks in dungeons/raids (error on line 276, SetAlpha, etc-etc), then a TEMPORARY solution is the following:
1) Open the World of Warcraft -> _retail_ -> Interface -> Addons -> ShadowedUnitFrames -> modules -> indicators.lua file with any text editor (e.g. Notepad or whatever you want)
2) Find the line: function Indicators:UpdateReadyCheck(frame,event) (this is line 258)
3) Immediately below this line enter the following: return end
4) Below this line enter a comment: --[[
5) Close the comment with --]] before the line function Indicators:UpdateFlags(frame)
So your code should something like this:
function Indicators:UpdateReadyCheck(frame, event)
return end
--[[
local FADEOUT_TIME = 6
if( not frame.indicators.ready or not frame.indicators.ready.enabled ) then return end
-- We're done, and should fade it out if it's shown
if( event == "READY_CHECK_FINISHED" ) then
if( not frame.indicators.ready:IsShown() ) then return end
<code continues for many more lines>
frame.indicators:SetScript("OnUpdate", nil)
frame.indicators.ready.status = status
frame.indicators.ready:SetAlpha(1.0)
frame.indicators.ready:Show()
end
--]]
Thanks mate
To post a comment, please login or register a new account.