View Single Post
  #1  
Old 04-06-2014, 05:41 PM
Esildor
Hill Giant
 
Join Date: Feb 2010
Posts: 207
Default Quest not returning items

Hi,

Not sure why this won't return items, I'm assuming because of the platinum requirement as well?

Code:
sub EVENT_ITEM {		
		if (($platinum >= 1000) && plugin::check_handin(\%itemcount, 132595 => 1))
		{
			quest::summonitem(132594);
			plugin::Whisper("Here you go $name, remember, I had nothing to do with this.");
			quest::exp(1000);
			quest::ding();
		}	
	
		else
		{
			quest::say("Sorry, $name, but I have no use for that.");
		}
	}

	plugin::return_items(\%itemcount);

}
Reply With Quote