This repository has been archived by the owner on Feb 5, 2025. It is now read-only.
forked from RetributionEQ/quests
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Bug] Quest Error fix in qey2hh1 (#122)
- Loading branch information
Showing
6 changed files
with
26 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
-- Hollow Skull | ||
-- items: 18010 | ||
|
||
function event_say(e) | ||
if(e.message:findi("hail")) then | ||
if e.message:findi("hail") then | ||
e.self:Say(string.format("%s! Make it quick I am in a [hurry].",e.other:GetName())); | ||
elseif(e.message:findi("hurry")) then | ||
elseif e.message:findi("hurry") then | ||
e.self:Say("I was in Paw receantly and stole a skull and now an [assassin] is hunting me down, even after returning the skull to him."); | ||
elseif(e.message:findi("assassin")) then | ||
elseif e.message:findi("assassin") then | ||
e.self:Say(string.format("Look %s, I don't have time to talk! If you want to help me deliver this [message].",e.other:GetName())); | ||
elseif(e.message:findi("message")) then | ||
elseif e.message:findi("message") then | ||
e.self:Say("Hurry now and take this to my brother, Hyrill Pon in Freeport, and before you go take that skull back from the assassin"); | ||
e.other:SummonItem(18010); -- Item: Torn Parchment | ||
eq.spawn2(12182,0,0,-15188.57,1270.43,68.72,218); -- NPC: a_Splitpaw_assassin | ||
e.self:Say("oh no, there he is!"); | ||
end | ||
end | ||
|
||
-- END of FILE zone: ID:12167 -- Yiz_Pon.pl | ||
function event_trade(e) | ||
local item_lib = require("items"); | ||
item_lib.return_items(e.self, e.other, e.trade) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
function event_combat(e) | ||
if(e.joined == true) then | ||
e.self:Say(string.format("Time to die %s!",e.other:GetCleanName())); | ||
end | ||
end | ||
if e.joined then | ||
e.self:Say(string.format("Time to die %s!",e.other:GetCleanName())); | ||
end | ||
end | ||
|
||
function event_trade(e) | ||
local item_lib = require("items"); | ||
item_lib.return_items(e.self, e.other, e.trade) | ||
end |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.