Quick and Dirty Party Proc Notification Hack (QDPPN)
This post got me thinking: http://www.dual-boxing.com/showthread.php?t=28653
So I went and found an addon that did something when the toon proc'd.....something.
I main wanted this for Art of War procs on my ret paladin so that I know exactly when to hit Exorcism or Flash of Light. This is a quick and dirty hack, just to show you how easy this was to overcome.
EventAlert: http://wow.curse.com/downloads/wow-a...ad/368509.aspx
Install it and open: WoW\Interface\Addons\EventAlert\EventAlert.lua
Find:
Quote:
function EventAlert_DoAlert()
if (EA_Config.ShowFlash == true) then
UIFrameFadeIn(LowHealthFrame, 1, 0, 1);
UIFrameFadeOut(LowHealthFrame, 2, 1, 0);
Add After:
Quote:
-- This line will call out to Partychat
-- SendChatMessage("Art of War! - INSTANT EXLOLCISM INCOMING!!", "PARTY", "Common", index);
-- This line will call out to Say
-- SendChatMessage("Art of War! - INSTANT EXLOLCISM INCOMING!!", "SAY", "Common", index);
-- This line will whisper a toon named Satinworship
-- SendChatMessage("Art of War! - INSTANT EXLOLCISM INCOMING!!", "WHISPER", "Common", "Satinworship");
Uncomment (remove the --) from one of the lines that starts with "SendChatMessage" the examples I've given you are party, whisper, and say. For Whisper, you need to change the toon's name from Satinworship to your other toon's name.
You may have to do some trickery for it if your class is tracking multiple procs, or you can just do /ea opt and go uncheck the procs you don't want to look for.
Example using /say
http://www.halosrealm.com/images/eventalert.jpg