mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
8 lines
157 B
Lua
8 lines
157 B
Lua
-- depop script for a trap mob in VT
|
|
|
|
function event_timer(e)
|
|
if e.timer == 'depop' then
|
|
eq.stop_timer(e.timer);
|
|
eq.depop();
|
|
end
|
|
end
|