eqmod-proxeeus-quests/highpass/Guard_Stald.lua
2018-07-14 15:03:01 +02:00

14 lines
No EOL
477 B
Lua

function event_combat(e)
if(e.joined) then
e.self:Say(
(eq.ChooseRandom(string.format("Time to die, %s.", e.other:GetName()),
"Your intolerable reputation insults all in this realm!",
"Your foul deeds have earned my contempt!",
"I shall rid the land of another infamous villain!",
"Your actions and history are a personal affront to all I stand for!")));
end
end
function event_death_complete(e)
e.self:Say("My comrades will avenge my death.");
end