mirror of
https://github.com/proxeeus/quests
synced 2026-08-22 10:29:07 -04:00
14 lines
No EOL
477 B
Lua
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 |