mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
12 lines
No EOL
353 B
Lua
12 lines
No EOL
353 B
Lua
function event_spawn(e)
|
|
eq.set_timer("stop",5000);
|
|
end
|
|
|
|
function event_timer(e)
|
|
eq.signal(1095,1); -- NPC: Bassanio_Weekin Satchels
|
|
eq.signal(1120,1); -- NPC: Gahna_Salbeen Satchels
|
|
eq.signal(1115,1); -- NPC: Barthal Weapons
|
|
eq.signal(1078,1); -- NPC: Moran_Smith Weapons
|
|
eq.signal(1094,1); -- NPC: Solani_Dayadil Armor
|
|
eq.stop_timer("stop");
|
|
end |