View Single Post
  #1  
Old 11-04-2004, 11:29 PM
Laviathon
Sarnak
 
Join Date: Aug 2003
Location: NY
Posts: 78
Default Quest Generator ????

i downloaded this , it is a nice and easy way to make quests but what i am wondering is were do i put the quests .. i made up a quick one and just hit generate Values and it made a quest for a prismatic ring
when i open the quest in notepad this is what it says

Code:
#!/bin/perl
sub EVENT_SAY {
if($text=~/Hail/i) {
quest::say("Hey $name.  I am looking for a Band of Prismatic Focus.  If you can bring me one, I will reward you."); }
}
sub EVENT_ITEM {
if($itemcount{26991} == 1) {
quest::say("Much obliged.");
quest::exp(151);
}
}
the quest made a folder that said paineel so i put that folder in my C:\eqemu\quests dir .. how do i get the quest implemented ?
so people can use it ??

thank you for your time
__________________
Reply With Quote