View Single Post
  #1  
Old 01-11-2008, 10:59 AM
janusd
Sarnak
 
Join Date: Jan 2008
Posts: 47
Default Necromancer Spells

Here's the quest for Necromancer spell turn-ins in the Overthere. Also posted on the PEQ boards.

Code:
########################
#Quest Name: Necromancer Spells
#Author: JanusD
#Zone: The Overthere
#NPC Name: Vaean the Night
#NPC ID: 93113
#Quest Items Needed: Spell: Convergence (19423), Spell: Defoliation(19296), Spell: Splurt(19294), and Spell: Thrall of Bones(19299)
########################

sub EVENT_SAY 
{ 
if($text =~ /Hail/i) 
  { 
  quest::say("Ahh, welcome! More souls to succumb to the inhabitants of the Outlands! My army of undead will grow stronger by the day, but it would be a pity if you perished before doing a [mortal bidding] for me."); 
  } 

if($text=~/mortal bidding/i) 
  { 
  quest::say("I see it as a win-win situation for me. If you succeed, I'll gain more power from the knowledge you bring back to me. If you fail, you become another addition to my undead minions. Thus, you cannot fail me in returning a scroll of Splurt, Defoliation, Covergence, or Thrall of Bones. In return, I will part with a scroll of mine."); 
  } 

sub EVENT_ITEM 
{ 
  if(($itemcount{19423} == 1) || ($itemcount{19296} == 1) || ($itemcount{19294} == 1) || ($itemcount{19299} == 1)) 
  { 
  quest::say("Here is the scroll that I promised. We have both gained much knowledge today. I hope to do business with you again soon. Farewell."); 
  quest::ChooseRandom(19297,19421,19408,19409); 
  quest::exp(500); 
  } 
} 


#End of file

Last edited by janusd; 01-11-2008 at 07:02 PM..
Reply With Quote