mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
36 lines
No EOL
525 B
Lua
Executable file
36 lines
No EOL
525 B
Lua
Executable file
--[[
|
|
Script Name :
|
|
Script Purpose :
|
|
Script Author :
|
|
Script Date : 4/4/2020
|
|
Script Notes :
|
|
--]]
|
|
|
|
function obtained(Item, Player)
|
|
end
|
|
|
|
function removed(Item, Player)
|
|
end
|
|
|
|
function destroyed(Item, Player)
|
|
end
|
|
|
|
function examined(Item, Player)
|
|
end
|
|
|
|
function used(Item, Player)
|
|
end
|
|
|
|
function cast(Item, Player)
|
|
end
|
|
|
|
function equipped(Item, Player)
|
|
CastSpell(Player, 5430)
|
|
end
|
|
|
|
function unequipped(Item, Player)
|
|
CastSpell(Player, 5430)
|
|
end
|
|
|
|
function proc(Item, Caster, Target, Type)
|
|
end |