I'm almost done with my pyromancer's CC but I have 2 issues to resolve first.
1- I'm trying to cast Cinder Burst only when you can make it instant (You have 2 Pyromancer's Armor buff)
Tried this: CreateSpellCast("Cinder Burst", extra => GigaRift.Me.HasBuff("Pyromancer's Armor") && GigaRift.Me.HasBuff("Pyromancer's Armor"))
It works, but it's casted when it's not on CD.
2- Casting Inferno when mob has <= 30% health
Already tryed CreateSpellCast, CreateBuff and none works for me:
CreateSpellCast("Inferno", extra => GigaRift.Me.CurrentTarget.Health <= 30)
1- I'm trying to cast Cinder Burst only when you can make it instant (You have 2 Pyromancer's Armor buff)
Tried this: CreateSpellCast("Cinder Burst", extra => GigaRift.Me.HasBuff("Pyromancer's Armor") && GigaRift.Me.HasBuff("Pyromancer's Armor"))
It works, but it's casted when it's not on CD.
2- Casting Inferno when mob has <= 30% health
Already tryed CreateSpellCast, CreateBuff and none works for me:
CreateSpellCast("Inferno", extra => GigaRift.Me.CurrentTarget.Health <= 30)