Hey there!
I have one issue and one inquiry and I hope you can help me out.
The Issue
In my profile with CapabilityFlags.Interrupting not being honored by my rogue. I haven't tried it with other characters yet, so I can't say if it is a general issue. I use the following code before engaging Maloriak in Blackwing Descent:
Code:
<CustomBehavior File="RunCode">
<![CDATA[
Logging.Write(System.Windows.Media.Colors.Chocolate, "[Profile Message]: Disabling interrupts in the combat routine.");
RoutineManager.SetCapabilityState(CapabilityFlags.Interrupting, CapabilityState.Disallowed);
await Coroutine.Yield();
]]>
</CustomBehavior>
My rogues ignores that flag and still interrupts his spells. In the class config interrupts are set to true, but I set the flag specifically to override it and I feel custom settings should supercede the general class configurations, because otherwise we as developers don't have a way to handle special cases like this one.
I placed a logmark in the file directly after the interrupt is being used and you can find the confirmation of the changed capability flag in this line.
Code:
[09:42:08.425 D] Capability state flags changed. Interrupting: DontCare -> Disallowed.
EDIT: The character also uses interrupt when I disable the class setting completely. I added a log for this as well.
EDIT 2: When I disable the general interrupt setting, Kick is no longer used.
Log with only capability disallowed:
View attachment 8344 2015-10-15 11.41.txt
Log with interrupt class setting disabled:
View attachment 7800 2015-10-15 11.58.txt
PS: If you can, I could really use an ETA for a fix, because my product release depends on it.
The Inquiry
In the Throne of the Four Winds raid the endboss Al'Akir (
http://www.wowhead.com/npc=46753/alakir) is sitting on an invisible box to avoid that people run "under" him. When a melee character tries to attack him, he constantly wants to find a way to get into line of sight and instead of really attacking him, the characters runs around with the occasional autohit. Is there a way to disable the LoS check or somehow increase the "CombatReach" of that NPC so that it works?