Skip to content

Commit

Permalink
improve Rineval prompts to be more in line with live
Browse files Browse the repository at this point in the history
  • Loading branch information
martinlindhe committed Jun 19, 2022
1 parent 07624f4 commit b695b4e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions qeynos2/Rineval_Talyas.lua
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
-- items: 19071, 19070, 1000, 18302
function event_say(e)
if(e.message:findi("hail")) then
e.self:Say(string.format("hello, %s",e.other:GetName()));
e.self:Say("hello, " .. e.other:GetName());
elseif(e.message:findi("scribe")) then
e.self:Emote(string.format("looks at %s strangely. 'Who told you this?'",e.other:GetName()));
elseif(e.message:findi("Karn")) then
e.self:Say("'I see. If a scribe is what you seek, then bring me the torn books of fire and ice. A donation of 1000 platinum is needed as well. The donation will be offered as a blessing to the gods.");
e.self:Emote("looks at " .. e.other:GetName() .. " strangely. 'Who told you this?'");
elseif(e.message:findi("told me")) then
-- NOTE: this is buggy but live-like. The real prompt should be "Kanthurn" or "Kanthurn told me", but that does not work on live /june 2022
e.self:Say("I see. If a scribe is what you seek, then bring me the torn books of fire and ice. A donation of 1000 platinum is needed as well. The donation will be offered as a blessing to the gods.");
end
end

Expand Down

0 comments on commit b695b4e

Please sign in to comment.