View Single Post
08-13-15, 02:44 PM   #10
Lombra
A Molten Giant
 
Lombra's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2006
Posts: 554
Make a simpler program to troubleshoot it from the top. Maybe disable some other addons if you're getting spammed by this.

Code:
if IsAddOnLoaded("Skada") then
	print("Skada is already loaded")
else
	local f = CreateFrame("Frame")
	f:RegisterEvent("ADDON_LOADED")
	f:SetScript("OnEvent", print)
end
__________________
Grab your sword and fight the Horde!
  Reply With Quote