Are you tired of seeing 30 lines of "So-and-so's addon has loaded" each and every time you log into World of Warcraft? Yeah, me too.
No longer do you have to resort to such extreme measures as hand-editing all of your addons, hypnotism, or binge drinking to achieve some peace of mind when logging in to your game. StopTheSpam uses classified Soviet technology to stamp out the endless stream of addon loading messages while still letting system messages and the guild message-of-the-day pass through. It's so amazingly awesome and powerful that it it'll rock your socks and leave you coming back for more! But don't take my word for it, check out these testimonials from actual users:
"StopTheSpam freed me of the loading messages once and for all! -hic-" -- Christina Lewis, Tire Salesperson
"lol teh best mod EVAR!!!@#" -- Steven Strickland, 8th Grade Chemistry Teacher
"What's an addon?" -- Old Man Murphy, Old Man
What are you waiting for? Install StopTheSpam and start enjoying life today!
Change Log:
2.02.20000 - Including the embedded libs is a Good Thing.
2.01.20000 - Rewrote using only the AceHook mixin for clean
unhooking. All other embedded libraries removed. Interface update
for The Burning Crusade beta.
2.00.11200 - Rewritten using Ace2 embedded libraries. AceHook-2.1 is
used to hook the chat frames, AceDebug-2.0 for debug messages, and
AceEvent-2.0 to stop the filter. Filter rules have been moved to
their own file. The rule for BugSack/BugGrabber has been rewritten
and re-enabled.
Originally posted by WitchKing Beyond updating the TOC (which most anyone with a text editor can accomplish), I think the majority of folks are looking for a way to update the filter rules to include addons that manage to sneak past.
Would like to see this updated. I'm tired of the addons showing up.
Beyond updating the TOC (which most anyone with a text editor can accomplish), I think the majority of folks are looking for a way to update the filter rules to include addons that manage to sneak past.
Loading spam from Extended Quest Log is getting through. Here's (I think) the relevant code:
Code:
function EQL_QuestLog_OnEvent(event)
if (event == "VARIABLES_LOADED") then
DEFAULT_CHAT_FRAME:AddMessage("Extended QuestLog "..EQL3_QUESTLOG_VERSION.." Loaded for "..UnitName("player").. " of "..GetRealmName()..".", 1, 1, 1, 1)
fixed. my bad on that one. I hacked out the timestamps stuff I had in there and missed something. I should probably check my mod a little more often to see if it needs some TLC
Yeah, problem is with lines 15-18 in linkSnag.lua. The author hooks the chat frame's AddMessage method with an undefined function, essentially erasing it. It would break any addon that hooks AddMessage and based on the comments I saw on c-g, that's exactly what is happening.
I'll post a comment over there and hopefully the author fixes the bug soon.
Edit: if you delete or comment out those lines, it should solve the problem. Check out my comment at the above link.