View Single Post
  #6  
Old 08-08-2010, 05:04 PM
Bellos
Hill Giant
 
Join Date: Jul 2007
Posts: 111
Default

question, This isnt working. I cant find any good item turn in quest examples.

The NPC does nothing when he is handed the item.

Code:
sub EVENT_ITEM {

	if (plugin::check_handin(\%itemcount, 1391 => 1)) {
	quest::say("It seems the orcs are trying to summon an Ancient Demon. Please go and stop them before its to late!!");
	}

	else {
 	    plugin::return_items(\%itemcount);
    	quest::say("I have no use for this item, $name.  Take it back.");
	}  
}
Reply With Quote