MaxMuster
Well-Known Member
- Joined
- Jan 30, 2012
- Messages
- 1,735
- Reaction score
- 25
You should add something like this for Greater Healing:
because
so you have more healing, for less mana by the same cast time
i dont know if it will better before or after
and i would set
before:
and you should add the spell "Power Word: Shield"
and i made some changes for the Proc of Surge of Light:
but i dont know if its good or not ^^
i will test my cc changes later ^^
// Casts Greater Heal if target's HP is lower than 70 and player already has 2 Serendipity Stack
if (hp < 70 && (Me.HasAura("Serendipity") && Me.Auras["Serendipity"].StackCount == 2) && Cast.Spell("Greater Heal", tar))
return true;
because
Flash Healing
5765 Mana for 18588 Healing
Cast Time: 1,26
Greater Healing without Serendipity Buff:
5559 Mana for 24787 Healing
Cast Time: 2,11
2 Stacks Serendipity Debuff:
-40% Cast Time
-20% Mana
Greater Healing with Serendipity Buff (2 Stacks):
4447 Mana for 24787 Healing
Cast Time: 1,26
so you have more healing, for less mana by the same cast time
i dont know if it will better before or after
if (Me.Combat && Cast.GroupNeedBuff("Prayer of Mending") && Cast.Spell("Prayer of Mending", tank))
return true;
and i would set
if ((hp < HolyPriestSettings.Instance.Renew || Helpers.PlayerHasAggro(tar)) && Cast.Buff("Renew", tar))
return true;
before:
if (Me.HasAura("Serendipity") && hp < HolyPriestSettings.Instance.GreaterHeal && Cast.Spell("Greater Heal", tar))
return true;
and you should add the spell "Power Word: Shield"
if (tank.HealthPercent < 30 && Me.ManaPercent > 70 && Cast.Buff("Power Word: Shield", tank))
return true;
and i made some changes for the Proc of Surge of Light:
//Changes by Spegeli
// Casts Greater Healing if Surge of Light Procs (and Aura TimeLeft > 5.0 Seconds), Serendipity has 2 Stacks and Player Mana > 70%, so we dont lost 1 Stack that we get from the Free Cast of Flash Heal
if (hp < 80 && (Me.HasAura("Surge of Light") && Me.Auras["Surge of Light"].TimeLeft.Seconds > 5.0) && (Me.HasAura("Serendipity") && Me.Auras["Serendipity"].StackCount == 2) && Me.ManaPercent > 70 && Cast.Spell("Greater Heal", tar))
return true;
// Casts Flash Heal for Free if Surge of Light Procs and we have 0 or 1 Serendipity Stacks
if (hp < 80 && Me.HasAura("Surge of Light") && (!Me.HasAura("Serendipity") || Me.Auras["Serendipity"].StackCount < 2) && Cast.Spell("Flash Heal", tar))
return true;
// Casts Flash Heal for Free if Surge of Light Procs, Target HP is < 90% and Aura TimeLeft < 5.0 Seconds
if (hp < 90 && (Me.HasAura("Surge of Light") && Me.Auras["Surge of Light"].TimeLeft.Seconds < 5.0) && Cast.Spell("Flash Heal", tar))
return true;
//Changes by Spegeli
but i dont know if its good or not ^^
i will test my cc changes later ^^
Attachments
Last edited:






