Spice Crafter [ENG]

11/26/2004 10:15 Leaker#1
This will auto craft for you from level 3 to level 14 on packets of spice.

This is my first macro so forgive the dumb mistakes if any.

Setup
Download and install Ac Tool ====> [Only registered and activated users can see links. Click Here To Register...]
Start up EQ2 in windowed mode ====> in game, options, performance, uncheck full screen.
Get in front of Stove and open the crafting window and select spices.
Download Auto IT and use the Auto IT Reveal Mode program to get the exact location of your begin button and update the MousePos if needed. ====> [Only registered and activated users can see links. Click Here To Register...]
Buy how ever many stacks you want to craft and update the first loop.
Put Awareness, Constant Heat, and Seasoning in your 1, 2, and 3 slots. (Not alt+1).

That should be it... just hit start and it should select the EQ2 window hit begin and start spamming the three arts until you are out of material. Be sure to have space for the products.

If you stop spamming the arts before you finish crafting change the second loop to a higher number.

As long as you make a packet of spice you get 25c per and that is a gain of like 7c per packet.

Here is the macro:

Code:
//Set Window

SetActiveWindow EverQuest II (Nov 12 2004 16:16:42) USER OPTIMIZED: SOEBuild=1505T

// Start Macro

Loop 80 // Number of stacks you bought added together

 MousePos 778, 625 // Where the begin button is.

 delay 750

 LeftClick // Clicks begin/repeat

 delay 3000

 LeftClick // clicks begin again

 delay 3000

 Loop 30 //Loops the tradeskill arts while crafting

  keys 1 //Awareness

  delay 500

  keys 2 //Constant Heat

  delay 500

  keys 3 //Seasoning

  delay 500

 End

 delay 10000 //waits a few seconds before looping

end