Skip to content

Commit

Permalink
Update Cata Surv
Browse files Browse the repository at this point in the history
  • Loading branch information
doadin committed Jan 27, 2025
1 parent 45fd22c commit d30468d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Specialization/Cata/Survival.lua
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function Survival:aoe()
if (MaxDps:CheckSpellUsable(classtable.MultiShot, 'MultiShot')) and cooldown[classtable.MultiShot].ready then
if not setSpell then setSpell = classtable.MultiShot end
end
if (MaxDps:CheckSpellUsable(classtable.KillShot, 'KillShot')) and cooldown[classtable.KillShot].ready then
if (MaxDps:CheckSpellUsable(classtable.KillShot, 'KillShot')) and (targethealthPerc <20) and cooldown[classtable.KillShot].ready then
if not setSpell then setSpell = classtable.KillShot end
end
if (MaxDps:CheckSpellUsable(classtable.ExplosiveShot, 'ExplosiveShot')) and (buff[classtable.LockandLoadBuff].up and debuff[classtable.ExplosiveShotDeBuff].remains <1 + 1) and cooldown[classtable.ExplosiveShot].ready then
Expand Down Expand Up @@ -146,7 +146,7 @@ function Survival:cleave()
if (MaxDps:CheckSpellUsable(classtable.SerpentSting, 'SerpentSting')) and (not debuff[classtable.SerpentStingDeBuff].up and ttd >= 6) and cooldown[classtable.SerpentSting].ready then
if not setSpell then setSpell = classtable.SerpentSting end
end
if (MaxDps:CheckSpellUsable(classtable.KillShot, 'KillShot')) and cooldown[classtable.KillShot].ready then
if (MaxDps:CheckSpellUsable(classtable.KillShot, 'KillShot')) and (targethealthPerc <20) and cooldown[classtable.KillShot].ready then
if not setSpell then setSpell = classtable.KillShot end
end
if (MaxDps:CheckSpellUsable(classtable.ExplosiveShot, 'ExplosiveShot')) and (debuff[classtable.ExplosiveShotDeBuff].remains <1 + 1) and cooldown[classtable.ExplosiveShot].ready then
Expand Down Expand Up @@ -187,7 +187,7 @@ function Survival:single()
if (MaxDps:CheckSpellUsable(classtable.SerpentSting, 'SerpentSting')) and (not debuff[classtable.SerpentStingDeBuff].up and not (MaxDps.spellHistory[1] == classtable.SerpentSting)) and cooldown[classtable.SerpentSting].ready then
if not setSpell then setSpell = classtable.SerpentSting end
end
if (MaxDps:CheckSpellUsable(classtable.KillShot, 'KillShot')) and cooldown[classtable.KillShot].ready then
if (MaxDps:CheckSpellUsable(classtable.KillShot, 'KillShot')) and (targethealthPerc <20) and cooldown[classtable.KillShot].ready then
if not setSpell then setSpell = classtable.KillShot end
end
if (MaxDps:CheckSpellUsable(classtable.ExplosiveShot, 'ExplosiveShot')) and (debuff[classtable.ExplosiveShotDeBuff].remains <1 + 1) and cooldown[classtable.ExplosiveShot].ready then
Expand Down

0 comments on commit d30468d

Please sign in to comment.