InterruptBar
Description
A basic mod that tracks enemy interrupt abilities on a neat little bar. I consider this mod feature complete.
- Feral Charge
- Counterspell
- Pummel
- Kick, and
- Spell Lock
- Mind Freeze
- Skull Bash
- Rebuke
Usage
Left Click the bar to move it. Go to the options to lock the bar. You can also hide buttons until they're active.
Type /ib in-game for a list of options
In the options you can make it so the bar only shows when an ability is fired.
Customization
To edit the order of abilities open InterruptBar.lua and change the order of the numbers in the 'order' table. Each number is labeled indicating what spell it is.
Adding new abilities isn't intended.
-
View User Profile
-
Send Message
Posted Nov 14, 2009Greets
-
View User Profile
-
Send Message
Posted Oct 23, 2009Fixable?
-
View User Profile
-
Send Message
Posted Oct 12, 2009local spellids = {[6552] = 10, [72] = 12, [2139] = 24, [19647] = 24, [16979] = 15, [1766] = 10, [47528] = 10, [47476] = 120, [10308] = 60, [48827] = 30, [57994] = 6}
local order = {6552, 72, 2139, 19647, 16979, 1766, 47528, 47476, 10308, 48827, 57994}
This adds shield bash, strangulate, hammer of justice, avenger's shield and wind shear.
-
View User Profile
-
Send Message
Posted Aug 29, 20091. Open up InterruptBar.lua with a simple text editor, notepad is perfect.
2. Go to www.wowhead.com and search for your spell, in this case Hammer of Justice, http://www.wowhead.com/?spell=10308.
3. You see "spell=10308"? That's the spell ID.
4. Now go to InterruptBar.lua and find the line "local spellids = "
5. In between { and }, at the end, add "[10308] = 60". 10308 is the ID of the spell, the number is for how long cooldown it is.
6. Go to "local order = "
7. Same thing here, in between { and } add in the end "10308" which is the spell id
Now you're done!
Here is my lines if you're lazy:
local spellids = {[6552] = 10, [2139] = 24, [19647] = 24, [16979] = 15, [1766] = 10, [47528] = 10, [10308] = 60, [72] = 12}
local order = {6552, 2139, 19647, 1766, 47528, 16979, 10308, 72}
-
View User Profile
-
Send Message
Posted Dec 27, 2009-
View User Profile
-
Send Message
Posted Aug 4, 2009There's no point in tracking 90% of those interrupts though.
-
View User Profile
-
Send Message
Posted Jul 2, 2009-
View User Profile
-
Send Message
Posted Jun 23, 2009-
View User Profile
-
Send Message
Posted Jun 23, 2009This mod is really not "feature complete".
Its lacking tracking of several interrupts: Shield Bash, Earth Shock & Wind Shock. When those interrupts are cast, the mod is useless.
-
View User Profile
-
Send Message
Posted Jun 5, 2009-
View User Profile
-
Send Message
Posted Apr 26, 2009-
View User Profile
-
Send Message
Posted Mar 18, 2009/ib hidden command hides that bar, upon use they appear with the cd time ticking down in the center. Would love to see strangulate added to this, however.
-
View User Profile
-
Send Message
Posted Jan 20, 2009