Mendpct.lua 476 B

12345678910111213141516
  1. --[[
  2. Script Name : Spells/Fighter/Brawler/Monk/Mendpct.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.19 03:10:18
  5. Script Purpose :
  6. :
  7. --]]
  8. function cast(Caster, Target, CureLvls, MinVal, MaxVal)
  9. -- Dispels 7 levels of noxious hostile effects on target
  10. CureByType(CureLvls, 3);
  11. --Heals target for 8.1 - 9.9% of max health
  12. SpellHeal("Heal", GetPCTOfHP(Caster, MinVal), GetPCTOfHP(Caster, MaxVal),0 , 2, 1)
  13. end