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

Code:
://EQEMU/Quests/qcat/teydar.pl

############################################
# Developer: Faerin
# Modified: July 28, 2005
# Database: PEQ-Kunark
############################################
# *** NPC INFORMATION ***
#
# NAME: teydar
# ID: 45044
# Class: Warrior
# Level: 60
# Zone: Qeynos Aqueducts
############################################
# *** Quest Info ***
# Class: ShadowKnight
# Level Range: 50-60
# Quest Name: SK Epic
############################################
# *** Items Needed ***
#
# 1) #14372 - Drake Spine
# 2) #14371 - Decrepit Hide
# 3) #16507 - Bar of Enchanted Platinum
############################################
# *** Rewards **
#
# 1) #14366 - Decrepit Sheath
############################################ 
sub EVENT_SAY
{
  if($text=~/Hail/i)
  {
    quest::say("Hello $name, It's good to see another shadowknight. I'm Teydar, I've made it my life to fashion suitable scabbard and sheaths for our order.");
  }

  if($text=~/decrepit sheath/i)
  {
    quest::say("The object you desire is very difficult to fashion, nearly impossible, really. All I can offer to do is try. The real difficulty is the contents that give the sheath its power. They have to be of an almost equal evil. I think some kind of decrepit hide, a drake spine along with a bar of enchanted platinum should prove enough to make this item.");
  }
}

sub EVENT_ITEM
{
  if ($itemcount{14372} == 1 && $itemcount{14371} == 1 && $itemcount{16507} == 1)
  {
    quest::say("I did it! The pieces you got me were perfect! It took a huge effort on my part to craft this, of course. it saddens me that I'm unable to keep one of my best works. A deal is a deal. There is honor among shadowknights.");
    quest::ding();
    quest::exp(250);
    quest::summonitem("14366");
  }
}
Reply With Quote