Rickster
-
Posts
30 -
Joined
-
Last visited
Reputation Activity
-
Rickster got a reaction from Sonat in Rotation won't start with some Nighthold bosses
I have found that in the new Nighthold instance that some bosses (not all) Wrotation will not start until you enter the 2nd phase of the fight.
Bosses include:
Star Augur Etraeus
Elisande
Guldan, and one more that I can't remember?
The issue is that once combat starts, Wrotation just does nothing. I have to manually do my rotation until the 2 phase hits (this seems to be the only consistent thing that relates to all scenarios) then the rotation starts working as normal.
Anyone else having this issue? Ranged DPS class (BM hunter) and I have tried "attack all selected targets" and "launch rotation when combat starts" options with no effect...
Thanks!
-
Rickster got a reaction from Droidz in How to cancel the current cast?
Using "is Spell Useable" was not always triggering as it should, the ultimate solution is to use "is Spell Overlayed" in conjunction with "casting Spell Name" in the conditionals.
========= Conditionals =========
is spell overlayed: Kill Shot, True
casting spell name: Cobra Shot, true
=============================
That in addition to the LUA spell entries above:
SpellStopCasting();
SpellStopCasting();
CastSpellByName("Kill Shot");
It is working great!
Thanks again,
Rick
-
Rickster got a reaction from Droidz in How to cancel the current cast?
Now we're cookin with gasoline!
SpellStopCasting();
SpellStopCasting();
CastSpellByName("Kill Shot");
Did the trick!
Thanks