fluff fixes

This commit is contained in:
proxeeus 2023-07-07 15:15:18 +02:00
parent 927e801e8d
commit 10f47eef36
10 changed files with 64 additions and 4 deletions

View file

@ -97,11 +97,14 @@ end
function event_combat(e)
if(e.joined == true) then
e.self:Say(string.format("Time to die %s!",e.other:GetCleanName()));
e.self:Say(string.format("Never fear!! Guard Cheslin is here!! Die, foul beast!");
end
end
function event_slay(e)
e.self:Say("Another victory for the Qeynos Guards and the mighty Cheslin, master swordsman!!");
end
function event_death_complete(e)
e.self:Say("My comrades will avenge my death.");
e.self:Say("The Qeynos Guards shall avenge me. You just wait and see!");
end

View file

@ -1,6 +1,11 @@
# Hadden
# by Proxeeus
sub EVENT_COMBAT {
if ($combat_state == 1) {
quest::say("Ah.. Though you appear so puny, I'm sure your flesh will make good bait!");
}
}
sub EVENT_DEATH_COMPLETE{
quest::say("Arrrhhh.. The Merchants of Qeynos.. are many.. and powerful.. .. you won't get away.. with.. this.. hor.. orr.. rible.. .. ..");

View file

@ -6,4 +6,10 @@ end
function event_death_complete(e)
e.self:Say("My comrades will avenge my death.");
end
function event_combat(e)
if(e.joined) then
e.self:Say("Natural selection at work.");
end
end

View file

@ -1,6 +1,6 @@
function event_say(e)
if(e.message:findi("hail")) then
e.self:Say(string.format("Hail. %s. I am Niclaus Ressinn. loyal Paladin of Life. I am scouting the Qeynos Hills on orders from High Priestess Jahnda. We have received reports of undead prowling these hills of late.",e.other:GetName()));
e.self:Say(string.format("Hail. %s. I am Niclaus Ressinn, loyal Paladin of Life. I am scouting the Qeynos Hills on orders from High Priestess Jahnda. We have received reports of undead prowling these hills of late.",e.other:GetName()));
end
end
@ -23,3 +23,13 @@ function event_waypoint_arrive(e)
e.self:SetRunning(false);
end
end
function event_combat(e)
if(e.joined) then
e.self:Say("Guards!! Guards!!");
end
end
function event_death_complete(e)
e.self:Say("My comrades will avenge my death.");
end

View file

@ -7,7 +7,7 @@ function event_say(e)
end
function event_combat(e)
e.self:Say("Mighty Karana, help me show the inveriors the true power of rain and storm!");
e.self:Say("Mighty Karana, help me show the inferiors the true power of rain and storm!");
end
function event_trade(e)

View file

@ -0,0 +1,3 @@
function event_combat(e)
e.self:Say("You have trespassed long enough on Sabertooth land!");
end

View file

@ -20,3 +20,13 @@ function event_waypoint_arrive(e)
eq.set_anim(3027,0);
end
end
function event_combat(e)
if(e.joined) then
e.self:Say("You will regret your actions.");
end
end
function event_death_complete(e)
e.self:Say("My comrades will avenge my death.");
end

View file

@ -61,3 +61,7 @@ function event_combat(e)
e.self:Say("I will have to teach you to respect Tunare.");
end
end
function event_death_complete(e)
e.self:Say("My comrades will avenge my death.");
end

View file

@ -26,3 +26,13 @@ function event_trade(e)
end
item_lib.return_items(e.self, e.other, e.trade)
end
function event_combat(e)
if(e.joined) then
e.self:Say("You have much to learn.");
end
end
function event_death_complete(e)
e.self:Say("My comrades will avenge my death.");
end

9
qrg/Krystal_Aspen.lua Normal file
View file

@ -0,0 +1,9 @@
function event_combat(e)
if(e.joined) then
e.self:Say("Natural selection at work.");
end
end
function event_death_complete(e)
e.self:Say("My comrades will avenge my death.");
end