mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
32 lines
No EOL
619 B
Lua
Executable file
32 lines
No EOL
619 B
Lua
Executable file
--[[
|
|
Script Name : Spells/Commoner/SpiritSteed.lua
|
|
Script Author : Skywalker646
|
|
Script Date : 2020.05.14 08:05:17
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
function precast(Caster)
|
|
if GetMount(Caster) > 0 then
|
|
return false
|
|
end
|
|
|
|
return true
|
|
end
|
|
|
|
function cast(Caster, Target, Speed, SkillAmt)
|
|
--Summons a mount to ride
|
|
SetMount(Caster, 6921)
|
|
|
|
|
|
-- Increases your ground speed by 130%
|
|
AddSpellBonus(Caster, 611, Speed)
|
|
|
|
|
|
end
|
|
|
|
function remove(Caster, Target)
|
|
SetMount(Caster, 0)
|
|
RemoveSpellBonus(Caster)
|
|
RemoveSkillBonus(Caster)
|
|
end |