Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Kanthurn, npc which gives additional hints for the Paladin 1.0 epic #1346

Merged
merged 1 commit into from
Jun 20, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions lakerathe/Kanthurn.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
-- Kanthurn (51096)
-- Paladin 1.0 Epic Quest npc giving hints
-- https://everquest.allakhazam.com/db/npc.html?id=24011
--
-- related to PAL 1.0. Verified on live the text is availabe for all classes.

function event_say(e)
if(e.message:findi("hail")) then
e.self:Say("Hello, " .. e.other:GetName() .. ". Have you heard of [Rineval] Talyas?");
elseif(e.message:findi("rineval")) then
e.self:Say("Rineval is a strange, but special young lady. I've been told that she can read and write in ways that only a few in Norrath can. She usually does not speak of this, however I am a dear friend of hers. Say that you are in need of a scribe. If she asks you who told you this mention my name.");
end
end