| mwmdragon | 
			04-24-2005 06:48 AM | 
		 
		 
		 
		
			Opal_Darkbriar.pl (Updated)   
		
		
		
	Code: 
	
  
############################################ 
# ZONE: West Freeport (freportw) 
# DATABASE: PEQ-Velious 
# LAST EDIT DATE: April 24,2005 
# VERSION: 1.0 
# BASE QUEST BY: PEQ Quest Team 
# DEVELOPER: MWMDRAGON 
# 
# *** NPC INFORMATION *** 
# 
# NAME: Opal_Darkbriar 
# ID: 9073 
# TYPE: Guild Master Wizard 
# RACE: High Elf 
# LEVEL: 61 
# 
# *** ITEMS GIVEN OR TAKEN *** 
# 
# A tattered note ID-18739 
# Patched Violet Robe ID-13558 
# Testament of Vanear ID-13991 
# Marnek's Wand ID- MISSING 
# Sapphire of Souls ID- MISSING 
# Wand of the Burning Dead ID- MISSING 
# 
# *** QUESTS INVOLVED IN *** 
# 
#1 Wizard Newbie Note 
#2 Wand of Burning Dead (BROKEN - Items Needed) 
# 
# *** QUESTS AVAILABLE TO *** 
# 
#1 Wizard 
#2 Necromancer , Wizard 
# 
############################################ 
 
 
sub EVENT_SAY 
{ 
  if ($text=~/Hail/i) 
  { 
  quest::say("Hello."); 
  } 
 
} 
 
 
sub EVENT_ITEM 
{ 
  # A tattered note ID-18739 
  if ($item1=="18739") 
  { 
  quest::say("Thanks."); 
  # Patched Violet Robe ID-13558 
  summonitem("13558"); 
  exp("100"); 
  } 
 
} 
#END of FILE Zone:freportw  ID:9073 -- Opal_Darkbriar 
  
	 |