Palatos_Kynarn.lua - Quest File
xxxxxxxxxx
1
-- items: 13817, 12145, 13818
2
function event_say(e)
3
if(e.message:findi("hail")) then
4
e.self:Say("What do you want? Can't you see that I wish to be alone?! I have no need nor desire to speak with anyone. I have a minor dilemma to ponder and the only person I wish to speak with is the [captain].");
5
elseif(e.message:findi("captain")) then
6
e.self:Say("If you have to ask that. you should not be in this fine establishment.");
7
elseif(e.message:findi("danaria sent me")) then
8
e.self:Say("If you are working for Danaria, you have been misguided. You will go back to her empty handed. Now leave. The [captain] and I have some business to discuss.");
9
end
10
end
11
12
function event_trade(e)
13
local item_lib = require("items");
14
15
if(item_lib.check_turn_in(e.trade, {item1 = 13817,item2 = 13817,item3 = 13817,item4 = 13817})) then -- 4x Capt. Orlin's Spiced Ale
16
e.self:Say("Ahh.. I.. Need help.. You.. take this.. Go build.. boat beacon. Ask gnomes about.. boat beacon. They know how.. Then bring back.. Unnnhh!! Prexus help me!! I will never drink again.");
17
e.other:Message(15,"In his drunkedness, Palatos advises you to seek out Svinal Wyspin, a Gnome merchant in North Freeport.");
18
e.other:SummonItem(12145); -- Beacon Mount
19
e.other:Ding();
20
e.other:Faction(231,1,0); -- Craftkeepers
21
e.other:Faction(266,1,0); -- High Council of Erudin
22
e.other:Faction(267,1,0); -- High Guard of Erudin
23
e.other:Faction(265,-1,0); -- Heretics
24
e.other:AddEXP(100);
25
e.other:GiveCash(0,0,0,0);
26
elseif(item_lib.check_turn_in(e.trade, {item1 = 13818})) then
27
e.self:Say("Thanks.. That saved me a lot of money. Now I can spend more time with the captain before I give this back to Lenka Stoutheart. Here is a little so...mething.");
28
e.other:Ding();
29
e.other:Faction(231,1,0); -- Craftkeepers
30
e.other:Faction(266,1,0); -- High Council of Erudin
31
e.other:Faction(267,1,0); -- High Guard of Erudin
32
e.other:Faction(265,-1,0); -- Heretics
33
e.other:AddEXP(200);
34
e.other:GiveCash(0,0,0,1);
35
end
36
item_lib.return_items(e.self, e.other, e.trade)
37
end
38
39
-- END of FILE Zone:freporte ID:10112 -- Palatos_Kynarn
40
41
42
43
Quest Source: 28 May 2022