Hi been having some issues making a quest work properly with just a single mob, if i put the quest under the global quests folder as default.pl the quest works fine, but i don't want every mob on the server giving out the same quest.
i tried putting the quest in the correct single mob format i.e.
Code:
./quests/arena/157953.pl
however the mob doesn't respond when its in this file, any idea why it won't work, and also any info on where i can find the source for a peral enabled zone.exe so i can add my own little bits of code to it before its compiled, thanks much for reading my post =)
incase its a problem with my quest here is the innital part of it that starts out the quest this isn't he whole quest.
157953.pl
Code:
sub EVENT_SAY
{
if ($text=~ /Hail/i){quest::say("Hello $name, I am the Arcane Lore Keeper, it is my job to travel the world searching for the true Arcane Powers, and then teaching those who wish to learn it, the powers that i find. Do you wish to [learn] of what powers i have found?");}
if ($text=~ /learn/i){quest::say("Very good, you must first prove to me that you are powerful enough to handle the powers which i will teach you, are you [willing] to possibly sacrifice your life in trying to prove to me that you are worthy?");}
if ($text=~ /willing/i){quest::emote("Looks you up and down, and nods"); quest::say("Your first task will be to slay a minion of my enemy, if you bring me his head as proof then i will continue with your training. you will find him living in the lost city of vesker, beware, i know not where he resides there but he will not be easily reached."); quest::spawn(x,x,x,x,x,x);}
}