flamin_scotsman
New member
Does anyone know how to purchase the bounty hunting outfit, as retrieve_item( [int], [item] ) appears to fail.
Here's the offending bit of code:
	
	
	
		
2416 and 2418 are the item ID's of the bounty-hunting helmet and pants respectively. I just end up with a false value.
				
			Here's the offending bit of code:
		Code:
	
	      if (retrieve_item( 1 - item_amount( $item[2416] ) , $item[2416] ) )
      {
        cli_execute("mirror prep.txt");
        print( "Helmet aquisition successful." );
        cli_execute("mirror");
      }
      else
      {
        cli_execute("mirror prep.txt");
        print( "Error in aquisition of helmet." );
        cli_execute("mirror");
      }
      if (retrieve_item( 1 - item_amount( $item[2418] ) , $item[2418] ) )
      {
        cli_execute("mirror prep.txt");
        print( "Pants aquisition successful." );
        cli_execute("mirror");
      }
      else
      {
        cli_execute("mirror prep.txt");
        print( "Error in aquisition of pants." );
        cli_execute("mirror");
      }2416 and 2418 are the item ID's of the bounty-hunting helmet and pants respectively. I just end up with a false value.
 
	