mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
getting current with takp. see changelog https://www.takproject.net/forums/index.php?threads/8-16-2023.25731/
This commit is contained in:
parent
2b1e017239
commit
ffe87ddcc1
81 changed files with 617 additions and 52 deletions
10
akanon/Clockwork_IVB.lua
Normal file
10
akanon/Clockwork_IVB.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
17
akanon/Clockwork_MM.lua
Normal file
17
akanon/Clockwork_MM.lua
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
function event_spawn(e)
|
||||
eq.set_timer("depop",70000);
|
||||
end
|
||||
|
||||
function event_combat(e)
|
||||
if(e.joined) then
|
||||
if(not eq.is_paused_timer("depop")) then
|
||||
eq.pause_timer("depop");
|
||||
end
|
||||
else
|
||||
eq.resume_timer("depop");
|
||||
end
|
||||
end
|
||||
|
||||
function event_timer(e)
|
||||
eq.depop();
|
||||
end
|
||||
10
akanon/Clockwork_MX.lua
Normal file
10
akanon/Clockwork_MX.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
10
akanon/Clockwork_XIB.lua
Normal file
10
akanon/Clockwork_XIB.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
10
akanon/Clockwork_XIIB.lua
Normal file
10
akanon/Clockwork_XIIB.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
|
|
@ -1,4 +1,14 @@
|
|||
-- Converted to .lua by Speedz
|
||||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
|
||||
function event_trade(e)
|
||||
local item_lib = require("items");
|
||||
|
|
|
|||
10
akanon/Clockwork_XIIIB.lua
Normal file
10
akanon/Clockwork_XIIIB.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
10
akanon/Clockwork_XIXA.lua
Normal file
10
akanon/Clockwork_XIXA.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
10
akanon/Clockwork_XVA.lua
Normal file
10
akanon/Clockwork_XVA.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
10
akanon/Clockwork_XVIB.lua
Normal file
10
akanon/Clockwork_XVIB.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
10
akanon/Clockwork_XVIIA.lua
Normal file
10
akanon/Clockwork_XVIIA.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
10
akanon/Clockwork_XVIIB.lua
Normal file
10
akanon/Clockwork_XVIIB.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
|
|
@ -1,4 +1,15 @@
|
|||
-- Converted to .lua by Speedz
|
||||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
function event_trade(e)
|
||||
local item_lib = require("items");
|
||||
|
|
|
|||
10
akanon/Clockwork_XVIIIB.lua
Normal file
10
akanon/Clockwork_XVIIIB.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
10
akanon/Clockwork_XXA.lua
Normal file
10
akanon/Clockwork_XXA.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
10
akanon/Clockwork_XXB.lua
Normal file
10
akanon/Clockwork_XXB.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
10
akanon/Clockwork_XXIA.lua
Normal file
10
akanon/Clockwork_XXIA.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
10
akanon/Clockwork_XXIB.lua
Normal file
10
akanon/Clockwork_XXIB.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
10
akanon/Clockwork_XXIIB.lua
Normal file
10
akanon/Clockwork_XXIIB.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
10
akanon/Clockwork_XXIIIA.lua
Normal file
10
akanon/Clockwork_XXIIIA.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
10
akanon/Clockwork_XXIXB.lua
Normal file
10
akanon/Clockwork_XXIXB.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
10
akanon/Clockwork_XXVA.lua
Normal file
10
akanon/Clockwork_XXVA.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
|
|
@ -1,3 +1,14 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
|
||||
function event_trade(e)
|
||||
local item_lib = require("items");
|
||||
if (item_lib.check_turn_in(e.self, e.trade, {item1 = 13844})) then
|
||||
|
|
|
|||
10
akanon/Clockwork_XXVIIB.lua
Normal file
10
akanon/Clockwork_XXVIIB.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
|
|
@ -1,3 +1,14 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
|
||||
function event_trade(e)
|
||||
local item_lib = require("items");
|
||||
if (item_lib.check_turn_in(e.self, e.trade, {item1 = 13844})) then
|
||||
|
|
|
|||
10
akanon/Clockwork_XXVIIIB.lua
Normal file
10
akanon/Clockwork_XXVIIIB.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
function event_death_complete(e)
|
||||
local rand = math.random(2);
|
||||
if(rand == 1) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(55392,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(55392,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
|
|
@ -1,3 +1,11 @@
|
|||
function event_say(e)
|
||||
if(e.message:findi("hail")) then
|
||||
e.self:Say("Praise be to Marr, my friend! Welcome to the temple. If you are not a member of the congregation, please speak with our priests. I am sure they can give you guidance.");
|
||||
elseif(e.message:findi("healing")) then
|
||||
e.self:Say("It is not my duty to see to the wounded. You must seek out Plur Etinu. He is in here somewhere.");
|
||||
end
|
||||
end
|
||||
|
||||
function event_trade(e)
|
||||
local item_lib = require("items");
|
||||
item_lib.return_items(e.self, e.other, e.trade);
|
||||
|
|
|
|||
|
|
@ -1,17 +1,23 @@
|
|||
function event_say(e)
|
||||
local fac = e.other:GetFaction(e.self);
|
||||
|
||||
if(e.message:findi("hail")) then
|
||||
e.self:Say("It is a good thing to see new faces visiting our temple. We are the source of strength within this city. Do not be fooled by the Freeport Militia. They are not warriors of valor. [Join the fight against the Freeport Militia].");
|
||||
elseif(e.message:findi("join the fight")) then
|
||||
e.self:Say("You are wise. If you are a paladin, either speak with Theron of this temple or visit the Hall of Truth here in North Freeport. Clerics should concetrate on keeping the knights strong and healthy. Would you care to [assist the Temple of Marr]?");
|
||||
if(e.other:GetFactionValue(e.self) >= -100) then
|
||||
e.self:Say("You are wise. If you are a paladin, either speak with Theron of this temple or visit the Hall of Truth here in North Freeport. Clerics should concetrate on keeping the knights strong and healthy. Would you care to [assist the Temple of Marr]?");
|
||||
else
|
||||
e.self:Say("The passion of the Queen of Love does not favor you. Begone from my sight!");
|
||||
end
|
||||
elseif(e.message:findi("assist")) then
|
||||
if(fac < 5) then
|
||||
if(e.other:GetFactionValue(e.self) >= 100) then
|
||||
e.self:Say("Good. Take this Potion of Marr to the Sentries of Passion. They are the protectors of this temple. Start in alphabetical order and the first shall take but a sip then you shall take it to the next in order of the alphabet. There are but eight sentries. Sentry Andlin to Sentry Xyrin. Go.");
|
||||
e.other:SummonCursorItem(12127); -- Item: Full Potion of Marr
|
||||
else
|
||||
elseif(e.other:GetFactionValue(e.self) >= 0) then
|
||||
e.self:Say("The path you walk is correct, but you have further to travel before you need worry about this.");
|
||||
else
|
||||
e.self:Say("The passion of the Queen of Love does not favor you. Begone from my sight!");
|
||||
end
|
||||
elseif(e.message:findi("heal")) then
|
||||
e.self:Say("It is not my duty to see to the wounded. You must seek out Plur Etinu. He is in here somewhere.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ function GoblinSE(e)
|
|||
if(math.random(100) > 45) then
|
||||
goblin = 92011;
|
||||
else
|
||||
goblin = eq.ChooseRandom(92004,92009,92012,92020,92021,92022,92023,92024);
|
||||
goblin = eq.ChooseRandom(92004,92009,92012,92020,92021,92022,92023,92024,92197,92198);
|
||||
end
|
||||
if(location == 6) then
|
||||
eq.spawn2(goblin,28,0,-3247,-2839,-376,0);
|
||||
|
|
@ -196,6 +196,14 @@ function Goblin9Death(e)
|
|||
GiantSW(e);
|
||||
end
|
||||
|
||||
function Goblin10Death(e)
|
||||
GiantSW(e);
|
||||
end
|
||||
|
||||
function Goblin11Death(e)
|
||||
GiantSW(e);
|
||||
end
|
||||
|
||||
function Giant1Death(e)
|
||||
BurynaiNW(e);
|
||||
end
|
||||
|
|
@ -352,6 +360,8 @@ function event_encounter_load(e)
|
|||
eq.register_npc_event("FMCycle", Event.death_complete, 92022, Goblin7Death);
|
||||
eq.register_npc_event("FMCycle", Event.death_complete, 92023, Goblin8Death);
|
||||
eq.register_npc_event("FMCycle", Event.death_complete, 92024, Goblin9Death);
|
||||
eq.register_npc_event("FMCycle", Event.death_complete, 92197, Goblin10Death);
|
||||
eq.register_npc_event("FMCycle", Event.death_complete, 92198, Goblin11Death);
|
||||
eq.register_npc_event("FMCycle", Event.death_complete, 92055, Giant1Death);
|
||||
eq.register_npc_event("FMCycle", Event.death_complete, 92030, Giant2Death);
|
||||
eq.register_npc_event("FMCycle", Event.death_complete, 92025, Giant3Death);
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
function event_say(e)
|
||||
if(e.message:findi("hail")) then
|
||||
e.self:Say("How dare you speak to me, you impudent sack of nauseating refuse! For this outrage of insubordination I call forth the vengeance of House Mistmoore! You now have little time left to live. Enjoy it.");
|
||||
eq.attack(e.other:GetName());
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -4,9 +4,15 @@ function event_say(e)
|
|||
elseif(e.message:findi("electrum-bladed wakizashi")) then
|
||||
e.self:Say("HA! As if a mortal such as yourself is worthy of such a weapon. Leave me to my mission - my purpose in life - the slaying of those who brought me into this existence, then exiled me from this place.");
|
||||
elseif(e.message:findi("mother")) then
|
||||
e.self:Say("My mother was named Issis. She is, to my knowledge, employed as Lord Mistmoores maid.");
|
||||
e.self:Say("My mother was named Issis. She is, to my knowledge, employed as Lord Mistmoore's maid.");
|
||||
elseif(e.message:findi("father")) then
|
||||
e.self:Say("Syncall is my fathers name. He serves as Lord Mistmoores butler.");
|
||||
e.self:Say("Syncall is my father's name. He serves as Lord Mistmoore's butler.");
|
||||
elseif(e.message:findi("purpose")) then
|
||||
e.self:Say("My mission is to free those who made me what I am, avenge my exile and take revenge upon all vampires.");
|
||||
elseif(e.message:findi("made you")) then
|
||||
e.self:Say("Both of my parents are vampires. My mother was fourth generation of the Mistmoore lineage. On the night my soul returned to this realm, my mother bestowed the curse of immortality upon my father. Nine moons later, I glimpsed my first vision of this world with these tainted eyes. It was not until some time later that they discovered I was different.");
|
||||
elseif(e.message:findi("different")) then
|
||||
e.self:Say("Since my mother was a vampire, my blood, too, was of the accursed lineage. However, the Mistmoore blood ran thin in my veins. My body was imbued with many of the attributes of a vampire but my soul was not corrupted and my will prevailed over the curse. For this, I was cast out and banished. And so, I hunt vampires. There is no more.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -17,16 +17,20 @@ function event_say(e)
|
|||
elseif(e.message:findi("boat disaster")) then
|
||||
e.self:Say("I was returning to my temple in Freeport in a small boat when the storm hit. I soon found myself shipwrecked on this evil island of undead. The words of Marr tell me to destroy these beings, but I am far too weak. If I only had a sip of the [Potion of Marr].");
|
||||
elseif(e.message:findi("potion of marr")) then
|
||||
e.self:Say("The Potion of Marr was created for the Sentries of Passion. It makes us alert and energetic. It will work only on sentries such as myself. It is distributed by Serna Tasknon of the Temple of Marr in Freeport.");
|
||||
eq.start(62);
|
||||
e.self:SetRunning(true);
|
||||
if(e.other:GetFactionValue(e.self) >= 0) then
|
||||
e.self:Say("The Potion of Marr was created for the Sentries of Passion. It makes us alert and energetic. It will work only on sentries such as myself. It is distributed by Serna Tasknon of the Temple of Marr in Freeport.");
|
||||
eq.start(62);
|
||||
e.self:SetRunning(true);
|
||||
else
|
||||
e.self:Say("The passion of the Queen of Love does not favor you. Begone from my sight!"));
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
function event_trade(e)
|
||||
local item_lib = require("items");
|
||||
|
||||
if(item_lib.check_turn_in(e.self, e.trade, {item1 = 12134})) then
|
||||
if(e.other:GetFactionValue(e.self) >= 0 and item_lib.check_turn_in(e.self, e.trade, {item1 = 12134})) then
|
||||
e.self:Say("I thank you. I cannot do battle at this moment. I am summoned elsewhere. May Marr guide you from this isle.");
|
||||
e.other:Faction(e.self,362,20,0); -- Faction: Priests of Marr
|
||||
e.other:Faction(e.self,330,-3,0); -- Faction: The Freeport Militia
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ function ControllerTimer(e)
|
|||
eq.set_timer(TIMER, 1080000); -- 18 mins
|
||||
end
|
||||
|
||||
RepopIsland(ISLAND_SPAWNIDS);
|
||||
RepopIsland();
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ local TRIUMVIRATE_LOCS = {
|
|||
{ 28, -560, 35.5, 189 },
|
||||
};
|
||||
|
||||
local triKills, bossWave = 0, 0, 0;
|
||||
local triKills, bossWave = 0, 0;
|
||||
local bossTimer;
|
||||
|
||||
function WarderDeath(e)
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
local MAX_CLIENTS = 60;
|
||||
local POTIMEA_CONTROLLER_TYPE = 219053;
|
||||
local POTIMEB_CONTROLLER_TYPE = 223077;
|
||||
local EVENTS_CONTROLLER = 223078;
|
||||
local EVENTS_CONTROLLER_TYPE = 223078;
|
||||
local QUARM_TYPE = 223008;
|
||||
|
||||
local EMOTE_STRINGS = {
|
||||
|
|
@ -498,7 +498,7 @@ function DepopZone()
|
|||
|
||||
if ( npc_list ) then
|
||||
for npc in npc_list.entries do
|
||||
if ( npc.valid and npc:GetNPCTypeID() ~= POTIMEB_CONTROLLER_TYPE and npc:GetNPCTypeID() ~= EVENTS_CONTROLLER ) then
|
||||
if ( npc.valid and npc:GetNPCTypeID() ~= POTIMEB_CONTROLLER_TYPE and npc:GetNPCTypeID() ~= EVENTS_CONTROLLER_TYPE ) then
|
||||
npc:Depop();
|
||||
end
|
||||
end
|
||||
|
|
@ -589,6 +589,7 @@ function event_signal(e)
|
|||
eq.debug("Error: Time instance qglobals are corrupted! Instance ID: "..instanceID);
|
||||
return;
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
zoneInstanceID = instanceID;
|
||||
|
|
@ -840,7 +841,7 @@ function event_timer(e)
|
|||
local _, _, trialNum = e.timer:find("^trial(%d)start$");
|
||||
trialNum = tonumber(trialNum);
|
||||
if ( trialNum ) then
|
||||
eq.signal(EVENTS_CONTROLLER, tonumber("1"..trialNum.."1"), 0, tostring(zoneBossTable[1][trialNum]));
|
||||
eq.signal(EVENTS_CONTROLLER_TYPE, tonumber("1"..trialNum.."1"), 0, tostring(zoneBossTable[1][trialNum]));
|
||||
eq.debug("Trial "..trialNum.." spawned. Boss status == "..tostring(zoneBossTable[1][trialNum]));
|
||||
end
|
||||
end
|
||||
|
|
@ -909,7 +910,7 @@ function PhaseStart()
|
|||
data = data..b;
|
||||
end
|
||||
|
||||
eq.signal(EVENTS_CONTROLLER, zonePhase*100+1, 0, data);
|
||||
eq.signal(EVENTS_CONTROLLER_TYPE, zonePhase*100+1, 0, data);
|
||||
end
|
||||
|
||||
function PhaseDialog()
|
||||
|
|
|
|||
|
|
@ -235,14 +235,6 @@ function Phase2Signal(e)
|
|||
shadows = Unpacket(e.data, true, true);
|
||||
SpawnPhase();
|
||||
kills, undead1, undead2, undead3, ralthosAdds = 0, 0, 0, 0, 0;
|
||||
|
||||
elseif ( e.signal == 100 ) then -- depopulate zone
|
||||
|
||||
for _, t in pairs(MOBS) do
|
||||
for _, t2 in pairs(t) do
|
||||
eq.depop_all(t2[1]);
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -99,14 +99,6 @@ function Phase3Signal(e)
|
|||
kills = 0;
|
||||
wave = 0;
|
||||
SpawnPhase();
|
||||
|
||||
elseif ( e.signal == 100 ) then -- depopulate zone
|
||||
|
||||
for _, typ in ipairs(BOSSES) do
|
||||
eq.depop_all(typ);
|
||||
end
|
||||
|
||||
|
||||
end
|
||||
end
|
||||
|
||||
|
|
@ -209,6 +201,31 @@ function SpawnWave()
|
|||
end
|
||||
end
|
||||
|
||||
function IsAllMobsAggro()
|
||||
local npc_list = eq.get_entity_list():GetNPCList();
|
||||
local typeid;
|
||||
local count = 0;
|
||||
for npc in npc_list.entries do
|
||||
typeid = npc:GetNPCTypeID();
|
||||
|
||||
for _, wid in ipairs(WAVES[wave]) do
|
||||
|
||||
if ( wid == typeid ) then
|
||||
if ( not npc:IsEngaged() ) then
|
||||
return false;
|
||||
else
|
||||
count = count + 1;
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
if ( count > 0 ) then
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
end
|
||||
end
|
||||
|
||||
function DeathComplete(e)
|
||||
kills = kills + 1;
|
||||
|
||||
|
|
@ -236,7 +253,7 @@ end
|
|||
|
||||
function MobCombat(e)
|
||||
if ( e.joined ) then
|
||||
eq.set_timer("hatelink", 1000);
|
||||
eq.set_timer("hatelink", 2000);
|
||||
mobsAggro = mobsAggro + 1;
|
||||
else
|
||||
mobsAggro = mobsAggro - 1;
|
||||
|
|
@ -249,7 +266,7 @@ function MobTimer(e)
|
|||
if ( e.timer == "hatelink" ) then
|
||||
-- this prevents kiting all the mobs around and peeling them off one at a time
|
||||
|
||||
if ( mobsAggro > 4 and e.self:GetX() < 1400 ) then
|
||||
if ( mobsAggro > 4 and IsAllMobsAggro() and e.self:GetX() < 1400 ) then
|
||||
|
||||
local elist = eq.get_entity_list();
|
||||
local topHater, mob;
|
||||
|
|
@ -257,7 +274,7 @@ function MobTimer(e)
|
|||
|
||||
for i, id in ipairs(waveIDs) do
|
||||
mob = elist:GetMob(id);
|
||||
if ( mob.valid and mob:IsEngaged() and mob:GetX() < 1375 and not mob:CombatRange(mob:GetTarget()) ) then
|
||||
if ( mob.valid and mob:IsEngaged() and mob:GetX() < 1375 and not mob:CombatRange(mob:GetTarget()) and mob:GetHPRatio() > 95 ) then
|
||||
if ( mob:GetHateAmount(mob:GetHateTop(), false) > topHate ) then
|
||||
topHate = mob:GetHateAmount(mob:GetHateTop(), false);
|
||||
topHater = mob:GetHateTop();
|
||||
|
|
@ -271,10 +288,10 @@ function MobTimer(e)
|
|||
|
||||
for i, id in ipairs(waveIDs) do
|
||||
mob = elist:GetMob(id);
|
||||
if ( mob.valid and mob:IsEngaged() and not mob:CombatRange(mob:GetTarget()) ) then
|
||||
if ( mob.valid and mob:IsEngaged() and not mob:CombatRange(mob:GetTarget()) and mob:GetHPRatio() > 95 ) then
|
||||
if ( mob:GetHateAmount(mob:GetHateTop(), false) < topHate ) then
|
||||
mob:SetHate(topHater, topHate);
|
||||
--eq.debug(mob:GetName().."'s top hater is now "..topHater:GetName());
|
||||
eq.debug("anti kite: "..mob:GetName().."'s top hater is now "..topHater:GetName());
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -255,7 +255,7 @@ function QuarmDeath(e)
|
|||
eq.debug("Error: Quarm did not power up correctly. Depoping corpse.");
|
||||
e.self:ClearItemList();
|
||||
e.self:Depop();
|
||||
eq.depop_all(corpseType);
|
||||
eq.depop_all(e.self:GetNPCTypeID());
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
function event_say(e)
|
||||
if(e.message:findi("hail")) then
|
||||
e.self:Say("Welcome to the Shrine of the Diseased! You will be repaid for your service when your soul crosses the void into Bertoxxulous' waiting arms. Are you available to [do His bidding], or are you [too busy]?");
|
||||
elseif(e.message:findi("do His bidding")) then
|
||||
elseif(e.message:findi("do his bidding")) then
|
||||
e.self:Say("That is good. We need you to go and speak with [Commander Kane Bayle] of the Qeynos Militia. You will find him at the gatehouse. Tell him that the disease is spreading. Now go.");
|
||||
elseif(e.message:findi("Kane")) then
|
||||
e.self:Say("Commander Kane Bayle is a new member of the Shrine of Bertoxxulous. He will assist us in turning the city of Qeynos from thunder to plague.");
|
||||
|
|
|
|||
|
|
@ -29,6 +29,12 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -35,6 +35,12 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -29,5 +29,11 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -34,6 +34,12 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -39,6 +39,12 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -29,7 +29,13 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
end
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
||||
function event_signal(e)
|
||||
|
|
|
|||
|
|
@ -29,6 +29,12 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -29,6 +29,12 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -33,6 +33,12 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -31,6 +31,12 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -30,6 +30,12 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -29,5 +29,11 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -29,6 +29,12 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -29,5 +29,11 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -29,6 +29,12 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -29,6 +29,12 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -29,6 +29,12 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -29,6 +29,12 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -29,5 +29,11 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -40,6 +40,12 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -44,5 +44,9 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -29,5 +29,11 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -29,5 +29,11 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -31,5 +31,11 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -31,6 +31,12 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -29,5 +29,11 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -29,5 +29,11 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -31,5 +31,9 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -31,6 +31,10 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -30,6 +30,12 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -33,5 +33,9 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -31,5 +31,9 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -29,5 +29,11 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -31,5 +31,9 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -31,5 +31,9 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -31,5 +31,9 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,9 +1,39 @@
|
|||
function event_say(e)
|
||||
if(e.message:findi("hail")) then
|
||||
e.self:Say("Hail! Please leave here immediately. This no place for the common citizen.");
|
||||
elseif(e.message:findi("kane"))then
|
||||
e.self:Say("Commander Kane is a religious man. He is attending services. Now, run along!");
|
||||
elseif(e.message:findi("sabertooth") or e.message:findi("blackburrow") or e.message:findi("gnoll")) then
|
||||
e.self:Say("Blast those dogs! The Sabertooths is what they call themselves around here. They have a nest, or whatever you call it, up there east of Surefall Glade. We can always use help here, keeping those dirty gnolls away from our fine city. Talk to Captain Tillin in South Qeynos and tell him you want to join the fight.");
|
||||
elseif(e.message:findi("gnoll")) then
|
||||
e.self:Say("Blast those dogs! The Sabertooths is what they call themselves around here. They have a nest, or whatever you call it, up there east of Surefall Glade. We can always use help here, keeping those dirty gnolls away from our fine city. Talk to Captain Tillin in South Qeynos and tell him you want to join the fight.");
|
||||
elseif(e.message:findi("weapon")) then
|
||||
e.self:Say("This city has been blessed with the craftsmanship of the Ironforges. Their weapons are supreme. Their shop can be found near the Temple of Life in North Qeynos. You may also try the local warrior guild.");
|
||||
elseif(e.message:findi("order of the three")) then
|
||||
e.self:Say("The Order of Three consists of the three positive circles of the arcane known as magic, enchantment and wizardry. This guild keeps very busy in its hall near the arena. All in Qeynos respect their powers.");
|
||||
elseif(e.message:findi("monk guild")) then
|
||||
e.self:Say("In North Qeynos sits the house of the Silent Fist Clan. These monks are welcome in Qeynos and often assist in training the Qeynos Guard in hand to hand combat.");
|
||||
elseif(e.message:findi("bank")) then
|
||||
e.self:Say("Qeynos Hold in South Qeynos is just across from the arena. You know, over the bridge behind Firepride's.");
|
||||
elseif(e.message:findi("port") or e.message:findi("dock")) then
|
||||
e.self:Say("The port of Qeynos is located in South Qeynos. From here one may catch the ship to Erudin.");
|
||||
elseif(e.message:findi("kane")) then
|
||||
e.self:Say("Commander Kane Bayle is the commander of all the Qeynos Guard. He is second only to his brother, Antonius Bayle. His post is in the guard house at the city gates. Mind you, do not bother him, he has a bit of a temper.");
|
||||
elseif(e.message:findi("circle.* unseen hand")) then
|
||||
e.self:Say("The Circle of the Unseen Hand? I have heard nothing of them. Are they some sort of performing magic troupe?");
|
||||
elseif(e.message:findi("paladin guild") or e.message:findi("cleric guild")) then
|
||||
e.self:Say("Within Qeynos are the Knights of Thunder and the Priests of Life. Both of these orders consist of clerics and paladins and are respected by all. The Hall of Thunder lies in South Qeynos and the Temple of Life is in North Qeynos.");
|
||||
elseif(e.message:findi("necromancer guild") or e.message:findi("shadowknight guild")) then
|
||||
e.self:Say("What gibberish are you spouting? There is not, nor will there ever be, such an organization as that within a hundred miles of Qeynos, not with the Qeynos Guard on patrol. Next you will be inquiring of a rogue guild! Really!");
|
||||
elseif(e.message:findi("ranger guild") or e.message:findi("druid guild")) then
|
||||
e.self:Say("I believe you shall find the Protectors of the Pine and Jaggedpine Treefolk in the hollow of Surefall Glade.");
|
||||
elseif(e.message:findi("jaggedpine treefolk")) then
|
||||
e.self:Say("In Surefall Glade there are druids called the Jaggedpine Treefolk. These men and women often assist our army during times of war.");
|
||||
elseif(e.message:findi("linarius")) then
|
||||
e.self:Say("The Qeynos Tower Guards of the hills and plains are commanded by Captain Linarius Graffe. He often has much to report. He is posted in a keep which spans a river. I believe it is in the northern Plains of Karana.");
|
||||
elseif(e.message:findi("south qeynos")) then
|
||||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -29,5 +29,11 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -27,5 +27,11 @@ function event_say(e)
|
|||
e.self:Say("The Qeynos Tower Guards of the hills and plains are commanded by Captain Linarius Graffe. He often has much to report. He is posted in a keep which spans a river. I believe it is in the northern Plains of Karana.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -52,6 +52,12 @@ function event_say(e)
|
|||
e.self:Say("The passages to North Qeynos can be found near the bard's guild or next to the Clock of Ak'Anon.");
|
||||
elseif(e.message:findi("inn") or e.message:findi("rest")) then
|
||||
e.self:Say("If you need a place to rest, I highly recommend the Lion's Mane Inn and Tavern. Poor adventurers all huddle together in one of the backrooms of Fish's.");
|
||||
elseif(e.message:findi("antonius")) then
|
||||
e.self:Say("Antonius Bayle is the ruler of Qeynos. He is such a great man that they renamed this continent after him. He brought Qeynos to the glory it now is. He formed the mightest army on Norrath, the Qeynos Guard. It is through his guidance that we shall protect all nations of Antonica from any evil threat. He does not venture into the city streets often. He is quite busy.");
|
||||
elseif(e.message:findi("tillin")) then
|
||||
e.self:Say("Captain Tillin Brightblade is the commander of the Qeynos City Guard. Extermination of the Sabertooths is his paramount concern. He has recently begun to hire mercenaries to assist in the extermination. If you wish to help out then go and speak with him. He is most often found discussing tactics with Ebon Strongbear at arena.");
|
||||
elseif(e.message:findi("saber") or e.message:findi("gnoll") or e.message:findi("blackburrow"))then
|
||||
e.self:Say("What was that you said? You mentioned the Sabertooths of Blackburrow? Those gnolls have caused this city trouble harm for too long. We have yet to force them from Qeynos Hills. I hear rumors of a few merchants who even dare to sell the outland Blackburrow Stout which is brewed by the gnolls. Foolish!! We call upon all citizens to assist in ridding our land of the gnolls. If you wish to join the fight then speak with Captain Tillin.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -5,17 +5,17 @@ function event_death_complete(e)
|
|||
end
|
||||
if(rand == 2) then
|
||||
eq.spawn2(2176,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(2176,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(2176,0,0,e.self:GetX()+1,e.self:GetY()+1,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 3) then
|
||||
eq.spawn2(2176,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(2176,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(2176,0,0,e.self:GetX()-10,e.self:GetY()-10,e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(2176,0,0,e.self:GetX()+1,e.self:GetY()+1,e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(2176,0,0,e.self:GetX()-1,e.self:GetY()-1,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
if(rand == 4) then
|
||||
eq.spawn2(2176,0,0,e.self:GetX(),e.self:GetY(),e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(2176,0,0,e.self:GetX()+10,e.self:GetY()+10,e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(2176,0,0,e.self:GetX()-10,e.self:GetY()-10,e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(2176,0,0,e.self:GetX()-5,e.self:GetY()-5,e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(2176,0,0,e.self:GetX()+1,e.self:GetY()+1,e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(2176,0,0,e.self:GetX()-1,e.self:GetY()-1,e.self:GetZ(),e.self:GetHeading());
|
||||
eq.spawn2(2176,0,0,e.self:GetX()-1,e.self:GetY()+1,e.self:GetZ(),e.self:GetHeading());
|
||||
end
|
||||
end
|
||||
|
|
@ -22,6 +22,8 @@ function event_say(e)
|
|||
e.self:Say("Aye, always there. Like this small bag I wear around my neck. The last gift of my dying mother. It holds a fine dust, a dust she collected during her short life, that she believed brought her luck. It's speckled, flecked as the night sky is with stars.");
|
||||
elseif(e.message:findi("speckled flecked dust")) then
|
||||
e.self:Say("I've had this little bit of dust, all I have of my mother, for many years now. It's the only reminder I have of her. She said it was special, magical, a warmth to help me through the nights. Even if my life were in the balance, I would have a hard time giving it up.");
|
||||
elseif(e.message:findi("giving it up")) then
|
||||
e.self:Emote("stares at you with a flame in her eye. 'Did you hear everything I just told you? There is no way I will let go of this pouch. You find me another reminder and maybe I'll let it go. Not until then. Good luck doing that. Last anyone saw my mother she was exploring the blasted wastes of the newly discovered lands.");
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue