RilissianWarRhino.lua 722 B

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : Spells/Commoner/RilissianWarRhino.lua
  3. Script Author : Skywalker646
  4. Script Date : 2020.05.11 08:05:01
  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, Range, Speed)
  15. -- Summons a mount
  16. SetMount(Caster, 7206)
  17. SetMountColor(Caster, 139, 0, 0, 0, 0, 0)
  18. -- Increase melee weapon range of caster by 1
  19. AddSpellBonus(Caster, 666, Range)
  20. --Increases your Ground Speed by 130%
  21. AddSpellBonus(Caster, 611, Speed)
  22. end
  23. function remove(Caster, Target)
  24. RemoveSpellBonus(Caster)
  25. SetMount(Caster, 0)
  26. end