QuickFlurry.lua 469 B

123456789101112131415161718
  1. --[[
  2. Script Name : Spells/Scout/Rogue/QuickFlurry.lua
  3. Script Author : neatz09
  4. Script Date : 2019.12.14 03:12:44
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Inflicts 24 - 40 melee damage on target
  9. function cast(Caster, Target, DmgType, MinVal, MaxVal)
  10. SpellDamage(Target, DmgType, MinVal, MaxVal)
  11. -- Inflicts 24 - 40 melee damage on target
  12. if LastSpellAttackHit() then
  13. SpellDamage(Target, DmgType, MinVal, MaxVal)
  14. end
  15. end