How do I get Macroquest to recognise the Mixing Bowl in ...

Help section from before the user variable changes that broke all macros

Moderator: MacroQuest Developers

Pickled
a lesser mummy
a lesser mummy
Posts: 34
Joined: Tue Sep 16, 2003 11:29 am

How do I get Macroquest to recognise the Mixing Bowl in ...

Post by Pickled » Sat Sep 20, 2003 8:30 am

I used to use the mixing bowl in slot 1, but that seemed to be causing pronblems with it auto dropping the items into the first slot of slot 1.

Anyway I decided to put the mixing bowl into slot 8 of the inv and now it dosent seem to locate the mixing bowl slots anymore, it clicks away on some other location (the location the bowl used to be in??)

wassup
Official Guardian and Writer of TFM
Official Guardian and Writer of TFM
Posts: 1487
Joined: Sat Oct 26, 2002 5:15 pm

Post by wassup » Sat Sep 20, 2003 12:32 pm

It would help immensly if you posted your macro... nothing anyone can do to help without seeing it.

Pickled
a lesser mummy
a lesser mummy
Posts: 34
Joined: Tue Sep 16, 2003 11:29 am

Post by Pickled » Sat Sep 20, 2003 1:21 pm

Code: Select all





#include routines.mac 
#turbo 

Sub Main 
  | Initialisation 
  /press ctrl 
  /press shift 
  /press alt 
  

  | Main Loop 
  /itemtarget Brew Barrel 
  /face item 
  /click left item 


   :MakeItem 
   /sendkey down ctrl 
    
      /finditem "dairy spoon" 
      /if $find()==FALSE /goto :Done 
      /click left pack mixing 0 

      /finditem "bottle of milk" 
      /if $find()==FALSE /goto :Done 
      /click left pack mixing 1 

      /finditem "bottle of milk" 
      /if $find()==FALSE /goto :Done 
      /click left pack mixing 2 

	/finditem "rennet" 
      /if $find()==FALSE /goto :Done 
       /click left pack mixing 3 	
      

      /sendkey up ctrl 
      /click left pack mixing combine 


      /delay 1
	/click left auto
	

      /if "$cursor()"=="TRUE" /goto :AutoDrop 
      /for v1 1 to 5 
         /delay 2 
         /if "$cursor()"=="TRUE" /goto :AutoDrop 
      /next v1 

   /goto :MakeItem 

   :AutoDrop 
      /click left auto
	
      /doevents 
   /goto :MakeItem 
    
   :Done 
    /sendkey up ctrl 

     /click left pack mixing done


/return 


wassup
Official Guardian and Writer of TFM
Official Guardian and Writer of TFM
Posts: 1487
Joined: Sat Oct 26, 2002 5:15 pm

Post by wassup » Sun Sep 21, 2003 12:32 am

First of all... if you are trying to open a mixing bowl, why is this in the macro?

Code: Select all

  | Main Loop 
  /itemtarget Brew Barrel 
  /face item 
  /click left item 

Second...

Code: Select all

/click left pack mixing 0
should be something like

Code: Select all

/click left pack # <slot>
where # is the inventory slot 0-7 (where the mixing bowl is) and <slot> is the place in the mixing bowl you want the item.

The same goes for this:

Code: Select all

/click left pack mixing combine
mixing should be the inventory slot 0-7 where the mixing bowl is.

Pickled
a lesser mummy
a lesser mummy
Posts: 34
Joined: Tue Sep 16, 2003 11:29 am

Post by Pickled » Sun Sep 21, 2003 3:00 pm

Thanks Wassup!

All that worked a treat, I can see now by your helpful diagrams how it works!

(I copy and pasted from a brew barrel script, so forgot to remove those lines regarding opening the barrel etc.)

All the best.