View Single Post
  #22  
Old 02-03-2009, 07:32 PM
trevius's Avatar
trevius
Developer
 
Join Date: Aug 2006
Location: USA
Posts: 5,946
Default

The best solution to testing what the problem is, is to simplify the quest as much as possible and then add in stuff one by one and test it after each time you update it until you have it completed the way you want to. So, try just running this script and see what happens:
Code:
sub EVENT_ITEM {

  if (plugin::check_handin(\%itemcount, 1568 => 1)) {
      quest::say("I got your turn in.  Here is your reward.");
      quest::summonitem(1001);
  }

}
If that works, then your script itself is just written wrong. If that doesn't work, then you have an issue with plugins or perl.
__________________
Trevazar/Trevius Owner of: Storm Haven
Everquest Emulator FAQ (Frequently Asked Questions) - Read It!
Reply With Quote