SpiritTotemoftheChokidai.lua 493 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : Spells/Commoner/SpiritTotemoftheChokidai.lua
  3. Script Author : neatz09
  4. Script Date : 2020.04.05 08:04:09
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Increases Speed of caster by 45.0%
  9. function cast(Caster, Target, OutSpd)
  10. if (GetLevel(Caster) >= 65)
  11. then
  12. SetIllusion(Caster, 7323)
  13. AddSpellBonus(Caster, 609, OutSpd)
  14. end
  15. end
  16. function remove(Caster, Target)
  17. RemoveSpellBonus(Caster)
  18. SetIllusion(Caster, 0)
  19. end