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