Using OldUI and trade skills... need some simple help

Need help running MacroQuest 1? Too bad! Use MQ2.

Moderator: MacroQuest Developers

Noob
decaying skeleton
decaying skeleton
Posts: 4
Joined: Tue Oct 29, 2002 5:14 pm

Using OldUI and trade skills... need some simple help

Post by Noob » Tue Oct 29, 2002 5:18 pm

I have been reading on here and everyone keeps saying use the OldUI for trades... well how can that happen if I have items that are in 3 different bags plus the item needed for a skill in my case is a Spit. The OldUI can only support 2 bags open at a time?? I have tried it under the new UI and it does not work???

Need some Suggestions???

Lurker_005
a lesser mummy
a lesser mummy
Posts: 51
Joined: Thu Oct 17, 2002 12:08 pm

Post by Lurker_005 » Tue Oct 29, 2002 5:53 pm

The macros open and close the required bags as needed. The new UI won't work due to problems when the /click command is used in it.

Noob
decaying skeleton
decaying skeleton
Posts: 4
Joined: Tue Oct 29, 2002 5:14 pm

Post by Noob » Tue Oct 29, 2002 7:12 pm

hummm then I guess the macro is not working then.... Do I need to place the bags in the correct order as they are listing in the code of the Macro???

Lurker_005
a lesser mummy
a lesser mummy
Posts: 51
Joined: Thu Oct 17, 2002 12:08 pm

Post by Lurker_005 » Tue Oct 29, 2002 8:42 pm

The macros expect your combiner container to be in the bottom right inv slot.

... didn't notice you were using a spit, try the new updated combiner macro posted in the macro depo. I don't think the default combiners supported the spit.

edit: hmm can't find referance to the spit continer name (spit?) perhaps it is somnething differet... :/

drastic ape
a lesser mummy
a lesser mummy
Posts: 30
Joined: Fri Aug 23, 2002 4:43 am

Post by drastic ape » Tue Oct 29, 2002 9:15 pm

I think the spit containter type is BAKING...

Noob
decaying skeleton
decaying skeleton
Posts: 4
Joined: Tue Oct 29, 2002 5:14 pm

Post by Noob » Tue Oct 29, 2002 10:58 pm

I have tried the combine macro and it did not work for me using the OLD UI.

This is the Macro i am using:


/call FindCombiner Baking
/if $return==99 /return


/cleanup
/click right inv $return
:MakeBatWingPie
/sendkey down ctrl

/finditem "Bear Meat"
/if $find()==FALSE /goto :Done
/click left pack $return 4

/finditem "Cheese"
/if $find()==FALSE /goto :Done
/click left pack $return 1

/finditem "Loaf of Bread"
/if $find()==FALSE /goto :Done
/click left pack $return 2

/finditem "Non-Stick Frying pan"
/if $find()==FALSE /goto :Done
/click left pack $return 3

/sendkey up ctrl
/click left pack $return combine

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

/goto :MakeBatWingPie

:AutoDropBatWingPie
/click left auto
/delay 2
/click left auto
/goto :MakeBatWingPie

:Done
/sendkey up ctrl

/return