12345678910111213141516171819202122232425262728293031323334 |
- --[[
- Script Name : Spells/Commoner/GreySpottedWargwithRedSaddle.lua
- Script Author : Skywalker646
- Script Date : 2020.04.19 08:04:19
- Script Purpose :
- :
- --]]
- function precast(Caster)
- if GetMount(Caster) > 0 then
- return false
- end
- return true
- end
- -- Summons a mount to ride that increases your ground speed by 130%
- function cast(Caster, Target, Speed)
- -- Summons a mount
- SetMount(Caster, 7218)
- SetMountColor(Caster, 255, 255, 255, 255, 0, 0)
- Say(Caster, "Model might not be accurate")
- --Increases your ground speed by 130%
- AddSpellBonus(Caster, 611, Speed)
- end
- function remove(Caster, Target)
- SetMount(Caster, 0)
- RemoveSpellBonus(Caster)
- end
|