View Single Post
  #7  
Old 07-16-2008, 11:08 PM
ChaosSlayer
Demi-God
 
Join Date: May 2007
Posts: 1,032
Default

oh yeah i think you have a missing parentesis. like A LOT of them

Code:
sub EVENT_ITEM
{  - OPENED  1 
  if($class eq "Wizard")
  {  - OPENED 2 
    if (plugin::check_handin(\%itemcount, 1079 => 1))
    { - OPENED 3 
    	if ($gold == 15) 
              { - OPENED 4
      		quest::exp(15);
      		quest::summonitem(15036);
      		quest::summonitem(15377);
      		quest::summonitem(15378);
      		quest::summonitem(15230);
     	 	quest::summonitem(15376);
                } - CLOSED 4
    
    else 
    {  OPENED 5
      quest::say("I have no use for this item!");
      plugin::return_items(\%itemcount);
    }  CLOSED 5
    
  	else 
  	{  OPENED 6
    quest::say("You are no Wizard, And I know a Wizard when I see one!");
    plugin::return_items(\%itemcount);
             }  CLOSED 6
} CLOSED ????
Reply With Quote