darksavior
New Member
- Joined
- Aug 25, 2014
- Messages
- 21
In last singular Shaman spell Ascendance dont casts, whenever True or False in options
(Ench shaman)
How to fix it?
(Ench shaman)
How to fix it?
https://www.thebuddyforum.com/honor...y-driven-cc-plain-version-3-a.html#post880296In last singular Shaman spell Ascendance dont casts, whenever True or False in options
(Ench shaman)
How to fix it?
Hi bobby53,
Thanks for all the work you are putting into this.
I've been using Singular for my Fury warrior and there are two things I would like you to look at.
1.
There is no support for the Sudden Death talent. I've manually edited this into my own routine as highest priority in both normal range and execute range:
//Execute when Sudden Death procs
Spell.Cast("Execute", ret => StyxWoW.Me.HasAura("Sudden Death")),
2.
Noxxic says that you should only use Bloodthirst when not Enraged. In my opinion this is only true when you've talented Unquenchable Thirst.
The problem with this is that sometimes the routine skips a GCD because it is Enraged, but has no rage for any abilities. This seems like a waste of a GCD.
BT also generates rage so I don't think it should be skipped when you do not have Unquenchable Thirst and are Enraged.
On Icy Veins it says:
Use Bloodthirst:
When you are not Enraged, if you have chosen the Unquenchable Thirst talent.
When you are not Enraged, or you have less than 80 Rage, if you have not chosen the Unquenchable Thirst talent.
I've manually edited the requirements for BT into:
//Bloodthirst on cooldown when not Enraged or RagePercent < 80. Procs Bloodsurge.
Spell.Cast("Bloodthirst", ret => !IsEnraged || Me.RagePercent < 80),
Hope this helps...
I added a log for the routine if you might want to look at it.
Quick Note: just posted two releases in quick succession. If you run a Death Knight, be sure to use 4.0.0.3826 if you use Glyph of Blood Boil (fixes for exception occurring in that specific case)
-Bobby53
When doing LFR on my fury warrior when my Battle Shout gets overwritten by a hunter buff or dk buff it automatically does Battle Shout again. This looks really bottish because this happens a lot (70 battle shouts in I think 1 LFR, see attached log).
Could you put in a check if there is a similair buff already active so that it does not spam Battle Shout.