peq-quests/potimeb/Innoruuk.lua
Trust 23f42c0c37 [DZ PoTimeA/B] PoTime Revamp incl DZ Support
GM Commands can be had by a by typinc /say help in PoTimeB Instance.
2021-01-02 00:57:17 -05:00

16 lines
377 B
Lua

-- Fake Inny (223000)
local event_counter = 0;
function event_signal(e)
-- signal 1 comes from my army
if (e.signal == 1) then
event_counter = event_counter + 1;
if (event_counter == 12) then
-- spawn real Innoruuk
eq.spawn2(223167,0,0,303.3,306,13.3,323);
eq.signal(223097,223000); -- Add Trash Lockout
-- make myself go away!
eq.depop();
end
end
end