View Single Post
  #4  
Old 07-20-2009, 09:08 PM
Capheus
Hill Giant
 
Join Date: Apr 2008
Location: Milwaukee
Posts: 141
Default

This should take care of your handin problems. Using eq "Shadowknight" for the shadowknight part of the handin and ne "Shadowknight" for everyone else. In the skickies there should be links to the perl system here to make things easier.

Trevius has some good links to look at here: http://www.eqemulator.net/forums/showthread.php?t=26075

Code:
sub EVENT_ITEM { 

 if (plugin::check_handin(\%itemcount,8911=>1)) {
  
  if ($class eq "Shadowknight") {
   quest::say("Very good, but maybe you should keep this. I believe you will have more use for it than I. Maybe Dsarrik can help you.");
   quest::exp(10000);
   quest::summonitem("8911");
  }

  if ($class ne "Shadowknight") {
   quest::say("Well now look at that! I believe you, $name, have done a great deed this day!");
   quest::exp(10000);
  }

 }
 plugin::return_items(\%itemcount);
}
Reply With Quote