HotwiredGnomishHoverpad.lua 718 B

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : Spells/Commoner/HotwiredGnomishHoverpad.lua
  3. Script Author : Skywalker646
  4. Script Date : 2020.04.20 08:04:35
  5. Script Purpose :
  6. :
  7. --]]
  8. function precast(Caster)
  9. if GetMount(Caster) > 0 then
  10. return false
  11. end
  12. return true
  13. end
  14. function cast(Caster, Target, Speed)
  15. -- Summons a mount
  16. SetMount(Caster, 11347)
  17. --Increases your ground speed by 130%
  18. AddSpellBonus(Caster, 611, Speed)
  19. -- Reduces maximum falling speed of caster.
  20. AddControlEffect(Caster, 13)
  21. end
  22. function remove(Caster, Target)
  23. SetMount(Caster, 0)
  24. RemoveSpellBonus(Caster)
  25. RemoveSkillBonus(Caster)
  26. RemoveControlEffect(Caster, 13)
  27. end