Download
(26Kb)
Download
Updated: 01-21-11 09:08 PM
Pictures
File Info
Updated:01-21-11 09:08 PM
Created:unknown
Downloads:228,139
Favorites:379
MD5:

EventAlert  Popular! (More than 5000 hits)

Version: 4.7.6
by: CurtisTheGreat [More]

The addon will notify you in the middle of your screen with an icon, name of the spell that has procced, the time left on the proc and will make a subtle sound. EventAlert is also able to handle more than one proc at a time (this option was not available in previous versions).

I am not fond of addons that have very complicated installation and setups. The mod should work on install without any config, but if you wish to change any options use the following command: /ea options
To see a more detailed list of what options are avaiable to the mod, just check out the screenshot of the options pane.

This mod tracks the following events/procs:

  • Death Knight
    • Cinderglacier (Runeforging)
    • Dark Transformation
    • Killing Machine
    • Rime (Freezing Fog)
    • Rune Strike
    • Sudden Doom
    Druid
    • Combo Points
    • Eclipse
    • Nature's Grace
    • Predator's Swiftness
    • Omen of Clarity
    • Owlkin Frenzy
    • Shooting Stars
    Hunter
    • Counterstrike
    • Kill Shot
    • Master Marksman
    • Rapid Killing
    Mage
    • Arcane Blast
    • Arcane Concentration
    • Blazing Speed
    • Brain Freeze
    • Fingers of Frost
    • Firestarter
    • Hot Streak
    • Impact
    Paladin
    • Art of War
    • Daybreak
    • Denounce
    • Grand Crusader
    • Hand of Light
    • Infusion of Light
    • Hammer of Wrath
    • Holy Power
    • Sacred Duty
    • Surge of Light
    Priest
    • Borrowed Time
    • Dark Evangelism
    • Evangelism
    • Serendipity
    • Shadow Orb
    • Surge of Light
    Rogue
    • Combo Points
    Shaman
    • Elemental Focus
    • Lava Surge
    • Lightning Shield
    • Maelstrom Weapon
    • Tidal Waves
    Warlock
    • Backdraft
    • Backlash
    • Decimation
    • Empowered Imp
    • Eradication
    • Molten Core
    • Nightfall
    • Shadowburn
    Warrior
    • Battle Trance
    • Bloodsurge
    • Execute
    • Incite
    • Lambs to the Slaughter
    • Overpower
    • Revenge
    • Sudden Death
    • Sword and Board
    • Taste for Blood
    • Thunderstruck
    • Victory Rush


Quick Backstory: I created this addon as a test for myself as my first "from the ground up" addon. Most of my coding in WoW LUA was taking other addons and just fixing them so they work from minor bugs or whatnot.

Anyhow, I needed a mod that was lightweight and did only what I wanted it to do, and that was warn me when one of my spells or talents procced something I needed. Thus, EventAlert was born. There are likely to be bugs, explosions and not so good things that may come from this mod. I'm sorry in advance! If you find a bug, please let me know so I can fix it.

Also, if anyone finds a spell/talent/etc that they want watched, please let me know and I will add it!

4.7.6
Bugfix: Fixed problem with spell charges not showing up on alerts.
Bugfix: Fixed problem with alerts not showing when options changed without a reload.
Change: Added option to show/hide spell charges.

To see the full change log, view the changelog.txt file included in the EventAlert zip file.
Post A Reply Comment Options
Unread 06-21-16, 02:01 PM  
samvx
A Defias Bandit
 
samvx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 118
Uploads: 3
Legion update? some ideas

Hello CurtisTheGreat thanks for your work, i love it this addon!
1. Have you tested it on Legion? (some one did it?) --
2. I have some ideas to visual options:
2.1 Glow proc animation (image example)

2.2 Set timer into the icon , like omnicc or some like that. (I mean omnicc support)

I dont know if this will be possible but anyway tnanks in advance.


Edit: Abandoned? Any suggestion? No weakAura fan
Last edited by samvx : 02-02-18 at 05:43 PM.
Report comment to moderator  
Reply With Quote
Unread 03-18-13, 02:36 PM  
domking
A Kobold Labourer

Forum posts: 0
File comments: 87
Uploads: 0
How do i add hunter focus fire to event alert? I have been trying to but it doesnt chime when focus fire is triggered
Report comment to moderator  
Reply With Quote
Unread 03-11-12, 04:05 PM  
Visious
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Re: add custom spell

I have a question, is there any way to put icons vertically?
Report comment to moderator  
Reply With Quote
Unread 09-05-11, 08:40 PM  
samvx
A Defias Bandit
 
samvx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 118
Uploads: 3
add custom spell

how i do it..ty for help
Report comment to moderator  
Reply With Quote
Unread 08-23-11, 01:41 PM  
Raintola
A Kobold Labourer

Forum posts: 0
File comments: 7
Uploads: 0
Apparently the most recent edit has caused mod has stopped alerting Elemental shamans for when Lightning Shield reaches 6 stacks. I get no LUA error or anything, it just doesn't sound the alert. Also tried to create a custom warning for my rogue's Murderous Intent and it refuses to sound the alert for this aswell.

Murderous Intent: http://www.wowhead.com/spell=14159
Report comment to moderator  
Reply With Quote
Unread 06-30-11, 09:41 PM  
kenyawn
A Kobold Labourer

Forum posts: 0
File comments: 18
Uploads: 0
Originally posted by mfrnka
Needs new LUA edit as of 4.2.

Find the section below in main.lua.

if (event == "COMBAT_LOG_EVENT_UNFILTERED") then

local EA_eventType = select(2, ...);
local EA_arg7 = select(7, ...);
local EA_arg9 = select(9, ...);
local EA_arg10 = select(10, ...);
local EA_arg13 = select(13, ...);

If you have previously edited it, it may have different numbers after select(.

Change this section to:

if (event == "COMBAT_LOG_EVENT_UNFILTERED") then

local EA_eventType = select(2, ...);
local EA_arg7 = select(9, ...);
local EA_arg9 = select(12, ...);
local EA_arg10 = select(13, ...);
local EA_arg13 = select(16, ...);


Thanks to Floppy on another addon site for this info.
worked like a charm, tyvm for the info
Report comment to moderator  
Reply With Quote
Unread 06-29-11, 12:34 PM  
mfrnka
Premium Member

Forum posts: 26
File comments: 20
Uploads: 0
Needs new LUA edit as of 4.2.

Find the section below in main.lua.

if (event == "COMBAT_LOG_EVENT_UNFILTERED") then

local EA_eventType = select(2, ...);
local EA_arg7 = select(7, ...);
local EA_arg9 = select(9, ...);
local EA_arg10 = select(10, ...);
local EA_arg13 = select(13, ...);

If you have previously edited it, it may have different numbers after select(.

Change this section to:

if (event == "COMBAT_LOG_EVENT_UNFILTERED") then

local EA_eventType = select(2, ...);
local EA_arg7 = select(9, ...);
local EA_arg9 = select(12, ...);
local EA_arg10 = select(13, ...);
local EA_arg13 = select(16, ...);


Thanks to Floppy on another addon site for this info.
Report comment to moderator  
Reply With Quote
Unread 06-28-11, 08:46 PM  
kenyawn
A Kobold Labourer

Forum posts: 0
File comments: 18
Uploads: 0
will this addon be updated to the new icons?
Report comment to moderator  
Reply With Quote
Unread 06-28-11, 08:42 PM  
kenyawn
A Kobold Labourer

Forum posts: 0
File comments: 18
Uploads: 0
@ Badzilla, there is a function already in Alert icon Options. unlock them, show/hide to get the test to pop up, then drag it to where you want
Report comment to moderator  
Reply With Quote
Unread 06-25-11, 04:28 PM  
Badzilla
A Kobold Labourer

Forum posts: 0
File comments: 28
Uploads: 0
you should add a function so that you can move the icons to anywhere on your screen just a tip... don't really like it in the center and i don't have enough knowledge to move it myself
Report comment to moderator  
Reply With Quote
Unread 05-18-11, 10:17 AM  
Mitham
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
Originally posted by lol_19
For 4.1:

1. Download the latest official version.

2. Open "--- \World of Warcraft\Interface\AddOns\EventAlert\lua\main.lua" with Word, Editor, ..

3. Edit

local EA_arg7 = select(7, ...);
local EA_arg9 = select(9, ...);
local EA_arg10 = select(10, ...);
local EA_arg13 = select(13, ...);


to

local EA_arg7 = select(8, ...);
local EA_arg9 = select(10, ...);
local EA_arg10 = select(11, ...);
local EA_arg13 = select(14, ...);


4. save the as "main.lua" and /reload WoW.
Worked for me just fine. Thanks for the fix. =)
Report comment to moderator  
Reply With Quote
Unread 05-03-11, 06:23 PM  
Iwa Washi
A Kobold Labourer

Forum posts: 0
File comments: 38
Uploads: 0
Originally posted by lol_19
local EA_arg7 = select(7, ...);
local EA_arg9 = select(9, ...);
local EA_arg10 = select(10, ...);
local EA_arg13 = select(13, ...);

to

local EA_arg7 = select(8, ...);
local EA_arg9 = select(10, ...);
local EA_arg10 = select(11, ...);
local EA_arg13 = select(14, ...);

Doesn't work for me. No procs at all. Broken addon is broken.
Report comment to moderator  
Reply With Quote
Unread 05-01-11, 03:30 AM  
lol_19
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
Originally posted by Betonz
What does this code should fix mate?
Procs reappear.

- Its still marked as "out of date" -

no matter. enable "load out dated mods"

if it still doesnt work just wait for an official update
Last edited by lol_19 : 05-01-11 at 03:35 AM.
Report comment to moderator  
Reply With Quote
Unread 04-30-11, 06:44 AM  
Betonz
A Kobold Labourer

Forum posts: 0
File comments: 85
Uploads: 0
Originally posted by lol_19
local EA_arg7 = select(7, ...);
local EA_arg9 = select(9, ...);
local EA_arg10 = select(10, ...);
local EA_arg13 = select(13, ...);


to

local EA_arg7 = select(8, ...);
local EA_arg9 = select(10, ...);
local EA_arg10 = select(11, ...);
local EA_arg13 = select(14, ...);

What does this code should fix mate?
Its still marked as "out of date".
Last edited by Betonz : 04-30-11 at 06:44 AM.
Report comment to moderator  
Reply With Quote
Unread 04-28-11, 03:54 PM  
lol_19
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
For 4.1:

1. Download the latest official version.

2. Open "--- \World of Warcraft\Interface\AddOns\EventAlert\lua\main.lua" with Word, Editor, ..

3. Edit

local EA_arg7 = select(7, ...);
local EA_arg9 = select(9, ...);
local EA_arg10 = select(10, ...);
local EA_arg13 = select(13, ...);


to

local EA_arg7 = select(8, ...);
local EA_arg9 = select(10, ...);
local EA_arg10 = select(11, ...);
local EA_arg13 = select(14, ...);


4. save the as "main.lua" and /reload WoW.
Last edited by lol_19 : 04-28-11 at 03:58 PM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: