GreySpottedWargwithRedSaddle.lua 754 B

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : Spells/Commoner/GreySpottedWargwithRedSaddle.lua
  3. Script Author : Skywalker646
  4. Script Date : 2020.04.19 08:04:19
  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. -- Summons a mount to ride that increases your ground speed by 130%
  15. function cast(Caster, Target, Speed)
  16. -- Summons a mount
  17. SetMount(Caster, 7218)
  18. SetMountColor(Caster, 255, 255, 255, 255, 0, 0)
  19. Say(Caster, "Model might not be accurate")
  20. --Increases your ground speed by 130%
  21. AddSpellBonus(Caster, 611, Speed)
  22. end
  23. function remove(Caster, Target)
  24. SetMount(Caster, 0)
  25. RemoveSpellBonus(Caster)
  26. end