mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
17 lines
No EOL
364 B
Lua
Executable file
17 lines
No EOL
364 B
Lua
Executable file
--[[
|
|
Script Name : a courier costume
|
|
Script Purpose :
|
|
Script Author : premierio015
|
|
Script Date : 07/01/2021
|
|
Script Notes : quest item -> sets illuision
|
|
--]]
|
|
|
|
function equipped(Item, Player)
|
|
CastSpell(Player, 5459, 1)
|
|
end
|
|
|
|
function unequipped(Item, Player)
|
|
if HasSpellEffect(Player, 5459, 1) then
|
|
CastSpell(Player, 5459, 1)
|
|
end
|
|
end |