mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
15 lines
206 B
Lua
15 lines
206 B
Lua
function event_signal(e)
|
|
|
|
if ( e.signal == 1 ) then
|
|
|
|
e.self:SetAppearance(3);
|
|
eq.set_timer("depop", 3600000);
|
|
|
|
end
|
|
end
|
|
|
|
function event_timer(e)
|
|
if ( e.timer == "depop" ) then
|
|
eq.depop();
|
|
end
|
|
end
|