I have seen a lot of elabroate macro's and scripts and while most are more interactive I have not seen the results I have with this small macro I wrote for my achemist within ACTool. Anyone who is interested is welcome to use it or modify it for that matter.
enjoy!
//------------------------------------------------------------------
// --Alchemy Crafting Macro V.1.0--
// Created by _xisle_
//
//------------------------------------------------------------------
//------------------------------------------------------------------
// --Setup--
//------------------------------------------------------------------
// This is a macro to be used with ACTool
// In order for this macro to
// function properly you must set
// up a few things prior to running
// this program.
//
//--------------------- Step one -- Hot Bar ---------------------
// Hot key 1 = Oil
// Hot key 2 = Resin
// Hot key 3 = Wash
// Hot Key 4 = Regent
// Hot Key 5 = Dye
// Hot Key 6 = Ink
// Hot Key 7 = First skill you wish to make
// Hot Key 8 = Second skill you wish to make
// Hot Key 9 = Empty
// Hot Key 0 = Primary trade skill buff
// (Note: This will be the only skill buff that uses power)
// (This should either be 22 or 44 depending on the level)
// Hot Key - = Trade skill buff
// Hot Key = = Trade skill buff
//-------------------End Step one -- Hot Bar -----------------------
//------------------------On screen set ----------------------------
// Start EQ2 in windowed mode
// Logon with the crafter of your choice
// Select the crafting table and make sure you are facing it
// Stock up on all of the supplies needed to create lots of
// Items (Hint: I start with approx 80 of each item)
// Start ACTool
// Cut and Paste all of this code in the window if this is your
// First time running this macro
// Save file
// Select the start button in the ACTool
// Quickly click within the EQ2 window
// (You have 10 seconds to do this)
// Your first crafting window will open, Quickly place your curser
// over the begin button.
// The macro will click begin for you. Do not move the curser after
// this point.
// go to bed, eat dinner or whatever your crafter is not on
// autopilot.
//--------------------End On screen setup---------------------------
//------------------------------------------------------------------
// -- End Setup --
//------------------------------------------------------------------
//----------------------Code Begins Here----------------------------
Delay 10000 //wait 10 seconds for the user to enter the EQ2 window
//------------------------------------------------------------------
// ******* PROCEDURES DO NOT EDIT THE SECTION BELOW *********
//
//------------------------------------------------------------------
//-------------------------------
// Buff (20)
//-------------------------------
Procedure BUFF
Delay 3000
Keys 0
Delay 3000
Keys -
Delay 3000
Keys =
Delay 3000
End
//-------------------------------
// OIL (4)
//-------------------------------
Procedure OIL
Keys 1
Delay 2000
Leftclick
Loop 4 // 80 seconds
Call BUFF
End
Delay 2000
End
//-------------------------------
// RESIN (4)
//-------------------------------
Procedure RESIN
keys 2
delay 2000
leftclick
Loop 4 // 80 seconds
Call BUFF
End
Delay 2000
End
//-------------------------------
// WASH (4)
//-------------------------------
Procedure WASH
Keys 3
Delay 2000
Leftclick
Loop 4 // 80 seconds
Call BUFF
End
Delay 2000
End
//-------------------------------
// REGENT (1)
//-------------------------------
Procedure REGENT
Keys 4
Delay 2000
Leftclick
Loop 4 // 80 seconds
Call BUFF
End
Delay 2000
End
//-------------------------------
// DYE (1)
//-------------------------------
Procedure DYE
Keys 5
Delay 2000
Leftclick
Loop 4 // 80 seconds
Call BUFF
End
Delay 2000
End
//-------------------------------
// INK (1)
//-------------------------------
Procedure INK
Keys 6
Delay 2000
Leftclick
Loop 4 // 80 seconds
Call BUFF
End
Delay 2000
End
//
//-------------------------------
// SKILL 1 (1)
//-------------------------------
Procedure SKILL1
Keys 7
Delay 2000
Leftclick
Loop 5 // 75 seconds
Call BUFF
End
Delay 2000
End
//-------------------------------
// SKILL 2 (1)
//-------------------------------
Procedure SKILL2
Keys 8
Delay 2000
Leftclick
Loop 5 // 75 seconds
Call BUFF
End
Delay 2000
End
//------------------------------------------------------------------
//
// ******** END OF PRECEDURES DO NOT EDIT THE SECTION ABOVE ********
//
//------------------------------------------------------------------
//------------------------------------------------------------------
// START CRAFTING MACRO HERE
//------------------------------------------------------------------
Call OIL
Loop 2
Call WASH
End
LOOP 4
CALL REGENT
END
LOOP 4
CALL DYE
END
LOOP 4
CALL INK
END
CALL RESIN
CALL SKILL1
CALL SKILL2
CALL SKILL1
CALL SKILL2
//------------------------------------------------------------------
// END MACRO
//------------------------------------------------------------------
|