peq-quests/qeynos2/Guard_Rashik.lua
2023-08-15 11:39:43 -04:00

11 lines
419 B
Lua

function event_combat(e)
if e.joined then
e.self:Say(string.format("Time to die %s!",e.other:GetCleanName()));
end
end
function event_say(e)
if(e.message:findi("hail")) then
e.self:Say(string.format("Hello, %s! My name is Rashik Hiccs adn I would like to welcome you to Qenos on behalf of all the guards. If you get into trouble, just find one of us and we will help you out.",e.other:GetName()));
end
end