I am haveing some trouble with this quest. I did a direct cut and past from the above post and added it to my own quest. First thing I noticed is when you hail the mob Spells_Wizard she automatically says both parts of the quest. I have double checked it and can't see any reason she should say the quest section spells without the player actually saying spells? Anyways here is what the text reads, hopefully it won't look to sloppy in the forum:
sub EVENT_SAY
{
if ($text=~ /Hail/i){quest::say("Hello $name, are you interested in haveing your [spells] scribed?");}
if ($text=~ /spells/i){quest::say("You have come to the right person, however I need you to do me a small favor. I do not like those thieves that have been hanging around the sewers. You do know where I am talking about right? It is the ones to the left of the gates of Freeport which lead you to North Freeport. Anyways bring me one of there daggers and I will teach you all the spells that a $class can use.");}
}
sub EVENT_ITEM
{
if ($itemcount{1451} == 1){quest::say("Thank you for your troubles $name. As promised here is your spells.");
quest::scribespells(65);
quest::exp(25);}
}
|