mirror of
https://github.com/proxeeus/quests
synced 2026-08-22 10:29:07 -04:00
fluff fixes
This commit is contained in:
parent
927e801e8d
commit
10f47eef36
10 changed files with 64 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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.. .. ..");
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
@ -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)
|
||||
|
|
|
|||
3
qeytoqrg/a_gnoll_hunter.lua
Normal file
3
qeytoqrg/a_gnoll_hunter.lua
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
function event_combat(e)
|
||||
e.self:Say("You have trespassed long enough on Sabertooth land!");
|
||||
end
|
||||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
|
|
@ -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
9
qrg/Krystal_Aspen.lua
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue