mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
27 lines
471 B
Lua
Executable file
27 lines
471 B
Lua
Executable file
--[[
|
|
Script Name : Spells/Commoner/testblank.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2023.09.07 12:09:45
|
|
Script Purpose : Spell Stuff
|
|
:
|
|
--]]
|
|
|
|
function precast(Caster, Target)
|
|
--Set conditions for doing spell stuff
|
|
end
|
|
|
|
|
|
function cast(Caster, Target)
|
|
--Do spell stuff
|
|
end
|
|
|
|
|
|
function tick(Caster, Target)
|
|
--Do DoT stuff
|
|
end
|
|
|
|
|
|
function remove(Caster, Target)
|
|
--Undo spell stuff
|
|
end
|
|
|