Spacee (Katastrofen) 0 Report post Posted January 10, 2017 The error I got was specifically at line 98 of the SM_Tooltip.lua file. I fixed it by putting some error-catching code in there. If you want this fixed, go to your SM_Tooltip.lua file and navigate to line 96. Then replace the block of code that starts there with the following: local macroname, pic; if ( this ) then local name = this:GetName(); if ( name == nil or name == '' ) then name = "this:"; end macroname=getglobal(name.."Name"); if ( macroname ) then macroname:SetText(name); end pic = getglobal(name.."Icon"); if ( pic ) then pic:SetTexture(icon); end end This should remove the error. 0 Share this post Link to post Share on other sites