Thread: Attuning items
View Single Post
  #5  
Old 02-17-2013, 04:20 PM
LordAdakos
Sarnak
 
Join Date: Dec 2007
Posts: 60
Default

I was using
Code:
if (plugin::check_handin(\%itemcount, $item_id => 1, $reagent => 1))
		{
quest::emote(" blah blah blah");
quest::summonitem($item_id_to_give_to_player);
              }

Edit: oooh Thanks! This should work?

Code:
if (plugin::check_handin(\%itemcount, $item_id => 1, $reagent => 1))
		{
$client->SummonItem($item_id_to_give_to_player,0,1)

              }

Thank you, I'll do that right away!

Last edited by LordAdakos; 02-17-2013 at 04:32 PM.. Reason: Thanks
Reply With Quote