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;
}
}