Guard_Bribbely.lua - Quest File
xxxxxxxxxx
1
-- items: 55003
2
function event_say(e)
3
if(e.message:findi("nadox")) then
4
e.self:Say("How am I supposed to know? Sounds like some darn troll lair. You're the adventurer, why don't you go investigate it. I will stay here to look for more clues.");
5
end
6
end
7
8
9
10
function event_trade(e)
11
local item_lib = require("items");
12
13
if(item_lib.check_turn_in(e.trade, {item1 = 55003})) then
14
e.self:Say("Yes, what is it, citizen?' Bribbely reads the note from Jasmine. 'Great, just what I need.' Guard Bribbely sighs. 'I have been a member of the guard for twenty years, investigating countless thefts and other crimes against Freeport and you think you can just waltz in here and solve this? You adventurers are all the same. Ok, 'investigator', if you think you are so smart, here is what we know so far: After the trolls attacked the ship, one of them was left behind and captured by us. After being beat, er questioned, the troll eventually told us that they were from Broken Skull Rock and that is probably where they took our captured ship. He didn't know about any mail, but says that any loot onboard was most likely taken to the [Crypts of Nadox] to await distribution by treasure sorters to the trolls there as payment. Further questioning revealed that a ship on the shores of Stonebrunt can take people to Broken Skull.");
15
end
16
item_lib.return_items(e.self, e.other, e.trade)
17
end
18
Quest Source: 28 May 2022