Can't get my quest to work. This is how i have it set up, Im using 5.5 dr 1. I have perl and scaler both installed. And i check with guide and shows that scaller is instaled right
I put the quest in emu directory. c:\emu2\quests\qeynos
I saved the file as 3414.pl
That is one of the npcs on the dock Marlin something.
I hail him and get no responce. Tried it on multi pc's with my quest and bone chip quest from guide and never get no responce both files look like this
Quote:
sub EVENT_Say
{
if($text=~ /Hail/i){quest::say("Hail $name. I need your help recovering some [ingredients].");}
if($text=~/ingrededients/i){quest::say("I need two wolf pets and two bone chips. If you bring me these I will reward you.");}
}
sub EVENT_ITEM
{
if ($item1{31792} == 2)($item2{13073}== 2){quest::say("Thank you, $name, take this as a reward.");
quest::exp(200);
quest::spawnitem(6351);}
}
|
and the onei got from guide
Quote:
sub EVENT_SAY
{
if ($text~= /Hail/i){quest::say("Hail $name. We of Tunare are charged with protecting the Great Mother from the forces of Innoruk. Even now the evil minions of this foul deity are despoiling our great forest. Will you help us [protect the mother]?");}
if ($text~= /perform a task/i){quest::say("Just outside the gates of Felwithe the forces of Innoruk gather in the guise of decaying skeletons. Bring me four sets of bone chips as proof of your vigilance. I assure you that your faith shall not go unrewarded.");}
}
sub EVENT_ITEM
{
if ($itemcount{13331} == 4){quest::say("Praise Tunare - I knew that you would be victorious. I reward you with this spell, and pray that it will help you in your fight against the unholy forces of Innoruk.");
quest::exp(125);
quest::faction(32,5);
quest::faction(57,-1);
quest::spawnitem(15374);}
}
|
I rebooted server multiple times trying to get it to work, cant seem to get it to work. Not sure if i scripted it wrong or something, but if i did, i dont see why the one from the guide wouldn't work. Someone told me you need RC1 bins, i did a search on boards couldnt find anything about them, and didnt read anythig on guide so i wasnt sure.
Any help with this is appreciated