Guard_Liben.lua - Quest File
xxxxxxxxxx
1
function event_combat(e)
2
if(e.joined == true) then
3
e.self:Say(string.format("Time to die %s!",e.other:GetCleanName()));
4
end
5
end
6
7
function event_say(e)
8
if(e.message:findi("hail")) then
9
e.self:Say(string.format("Hello there. %s. Guard Liben at your service. You can walk the streets of Qeynos and feel safe knowing that we guards are here to protect you. Just be careful not to fall in with the [wrong crowd].",e.other:GetName()));
10
elseif(e.message:findi("wrong crowd")) then
11
e.self:Say("Oh you know. the Circle. The Circle of Unseen Hands is what they call themselves. They are a bunch of thieves and murderers. Just stay clear of them. if you know what's good for you.");
12
end
13
end
14
Quest Source: 28 May 2022