View Single Post
  #1  
Old 12-28-2014, 11:51 AM
Bandor
Hill Giant
 
Join Date: May 2014
Posts: 209
Default Trouble with spell scriber

So he is not wanting to scribe anything lol. Have searched the forums and dont see anything that appears to be wrong though I could be largely mistaken. I want him to scribe all spells/discs up to level 35.

Code:
#Quest file for Mesa - Scribe Anso

sub EVENT_SAY {
  if($text=~/hail/i) {
    quest::say("Hail $class. I can teach you your spells and tomes,up to the 35th level. Do you seek to learn [spells] or [tomes]");
  }
  if($text=~/spells/i) {
    quest::scribespells (35);
  }
   if($text=~/tomes/i) {
    quest::traindiscs 35;
  }
  }
__________________
Owner and Developer - Everquest: A New World
Reply With Quote