Thread: New to EQEmu
View Single Post
  #1  
Old 06-23-2007, 11:29 AM
Yohkoh
Fire Beetle
 
Join Date: Jun 2007
Location: CT
Posts: 6
Default New to EQEmu

Hi,

I just installed an EQemu Server following Techguy's latest server installation guide. So I've installed perl , using PEQ and copied the files I downloaded using winCVS to my EQEmu\Quest folder. The only thing I have done different was to use EQEmu-0.7.0-1002 instead of EQEmu-0.7.0-992

Doing the simple quest where I turn in 4 Rat Whiskers to Exterminator Gilea in Neriakc. I can hail and get a response but when I hand in 4 Rat Whiskers nothing happens and I loose the items without a reward. Here is the script from PEQ file Exterminator_Gilea.pl:

sub EVENT_SAY {
if($text=~/Hail/i){ #Start of Exterminate the Vermin Quest (Scripted By: Fatty Beerbelly)
quest::say("Hello, $name. I was hired to eradicate all these pesky rodents running around the city, but there are too many of them. If you could help me by bringing back four of their whiskers I should have a few spare coins for you.");
}
}

sub EVENT_ITEM {
#Handin: 4x Rat Whiskers
if(plugin::check_handin(\%itemcount, 13071 => 4)){ #End of Exterminate the Vermin (Scripted By: Fatty Beerbelly)
quest::say("Well there are still many rodents around, but I will honor my deal. Here are your coins. Now I must get back to work.");
quest::faction(87,10); # +Darkguard Inner
quest::faction(69,10); # +Dark Bargainers
quest::faction(155,10); # +Indigo Brotherhood
quest::faction(260,-10); # -Primordial Malice
quest::exp(5);
quest::givecash(1,1,1,0);
}
}

Being I am new to EQEmu, I expect I am missing something in my setup. Any suggestions?

Yohkoh
Reply With Quote