View Single Post
  #13  
Old 07-29-2005, 02:15 AM
FaerinTelDanor
Sarnak
 
Join Date: Jul 2005
Location: Ottawa, Ontario. Canada
Posts: 30
Default

Code:
://EQEMU/Quests/tox/knarlthenne_skurl.pl

############################################
# Developer: Faerin
# Modified: July 28, 2005
# Database: PEQ-Kunark
############################################
# *** NPC INFORMATION ***
#
# NAME: knarthenne_skurl
# ID: 38058
# Class: Warrior
# Level: 50
# Zone: Toxxulia Forest
############################################
# *** Quest Info ***
# Class: ShadowKnight
# Level Range: 50-60
# Quest Name: SK Epic
############################################
# *** Items Needed ***
#
############################################
# *** Rewards **
#
# 1) #17051 - Soul Case
############################################ 
sub EVENT_SAY
{
  if($text=~/Hail/i)
  {
    quest::say("Ah, you do not possess the heart of an innocent. Be gone with you!");
  }

  if($text=~/heart of an innocent/i)
  {
    quest::say("What's that? Heart of the Innocent, you say?! Ages, it has been, since I was last asked that. The Heart of the Innocent is an item of great power. Few are they who have ever commanded the dark magic of such an object. It is the bound soul of a pure mortal, rare indeed. Take this hollow gem, and combine with it the heart of one who is pure. If your hand is steady and your mind is clear, you shall have what you seek.");
    quest::summonitem("17051");
  }
}
Reply With Quote