RedAncientChampionsFlyingSymbol.lua 658 B

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : Spells/Commoner/RedAncientChampionsFlyingSymbol.lua
  3. Script Author : Skywalker646
  4. Script Date : 2020.05.10 08:05:27
  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, SkillAmt)
  15. --Summons a mount to ride
  16. SetMount(Caster, 9010)
  17. SetMountColor(Caster, 255, 255, 0, 255, 0, 0)
  18. -- Increases your ground speed by 130%
  19. AddSpellBonus(Caster, 611, Speed)
  20. end
  21. function remove(Caster, Target)
  22. SetMount(Caster, 0)
  23. RemoveSpellBonus(Caster)
  24. end