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

Code:
://EQEMU/Quests/hole/#ghost_of_glohnor.pl

############################################
# Developer: Faerin
# Modified: July 28, 2005
# Database: PEQ-Kunark
############################################
# *** NPC INFORMATION ***
#
# NAME: ghost_of_glohnor
# ID: 39082
# Class: Warrior
# Level: 50
# Zone: The Hole
############################################
# *** Quest Info ***
# Class: ShadowKnight
# Level Range: 50-60
# Quest Name: SK Epic
############################################
# *** Items Needed ***
#
# 1) #14377 - Dark Shroud
############################################
# *** Rewards **
#
# 1) Loot - #14378 - Head of Glohnor
# 2) Loot - #14379 - Glohnor Wrappings
############################################ 

sub EVENT_ITEM
{
  if($itemcount{14377} == 1)
  {
    quest::spawn2(39165,0,0,$x,$y,$z,$h);
    quest::ding();
    quest::depop;
  }
}
Reply With Quote