View Single Post
  #5  
Old 04-21-2006, 12:44 AM
Richardo
Banned
 
Join Date: Oct 2003
Location: Mattmecks Basement
Posts: 546
Default

if (plugin::check_handin(\%itemcount, 05013 => 1,))\

may be easier to us this..

if ($itemcount{5013} => 1)

and Ylosh

sub EVENT_ITEM {
if (plugin::check_handin(\%itemcount, 05013 => 1,))
{ <==========
quest::say("Thank you sir, You have returned with my trusty sword. The moment I set eyes on you, I knew you were different. I am a man of my word, my most prized possesion. I hope it will help you in your adventures. "); }
quest::summonitem(01365);
quest::exp(20000);
}
}

it has an opening bracket so it will only respond the current functions if that specific item was given.

Last edited by Lexen1; 04-21-2006 at 08:46 AM..
Reply With Quote