DeathlyPallor.lua 478 B

12345678910111213141516
  1. --[[
  2. Script Name : Spells/Mage/Summoner/Necromancer/DeathlyPallor.lua
  3. Script Author : neatz09
  4. Script Date : 2019.10.19 05:10:27
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Info from spell_display_effects (remove from script when done)
  9. -- Feigns Death with 100% chance of success
  10. function cast(Caster, Target)
  11. SetServerControlFlag(Target, 5, 1, 1);
  12. ClearHate(Target)
  13. SendMessage(Caster, "Your feign death succeeded", "yellow")
  14. end