gonemental
Member
- Joined
- Nov 14, 2010
- Messages
- 295
- Reaction score
- 11
I realized after I had this wrote that Someone had updated Strix's Interrupter Plugin. I decided to release it anyways. Test it out and let me know what you think. I probably did a few things the hard way and I am open to suggestions if you have any better ideas.
Basically what this Plugin will do is Interrupt Spells. I have a settings file setup that will allow you to to only interrupt certain ones or you can have it interrupt them all. It will not check for Immune Spells. If you set the AddUnknownSpells to true it will keep a list of Spells that you can choose to Interrupt or not later on.
The Plugin and settings file must be installed into the /Plugins/Interrupter Directory. Just unzip the file into the base of your Plugins folder and you should be set.
I have not tested this very throughly let me know if you run across any bugs.
There are a few Options within the Plugin.
The Settings file is pretty straightforward.
Basically what this Plugin will do is Interrupt Spells. I have a settings file setup that will allow you to to only interrupt certain ones or you can have it interrupt them all. It will not check for Immune Spells. If you set the AddUnknownSpells to true it will keep a list of Spells that you can choose to Interrupt or not later on.
The Plugin and settings file must be installed into the /Plugins/Interrupter Directory. Just unzip the file into the base of your Plugins folder and you should be set.
I have not tested this very throughly let me know if you run across any bugs.
There are a few Options within the Plugin.
Code:
//Only Use the Spells that you Have set to true?
private bool OnlyuseInterruptList = false;
//Do you want to Blacklist newly added Spells? example "true" or "false"
private string UnknownSpellDefaultValue = "true";
//Add Unknown Spells?
private bool AddUnknownSpells = true;
//Automatically Blacklist an Unknown Spell?
private bool BlacklistUnknownSpells = false;
//If you want to see the Logging messages
private bool DebugSpam = false;
Code:
<Spell Name="Pyroblast" Interrupt="true"/>
<Spell Name="Scorch" Interrupt="false"/>
[code]
[U]Known Issues[/U]
**Fixed** AddUnknownSpells Adds Multiple entries to the config file.
**Fixed**Slow Response when interrupting
Attachments
Last edited: