Max crafting in 1 Hour
Posted: January 11th, 2004, 8:56 am
First i make a Fast looping macro that uses about 8 or more tools so theres no pausing. I get all my huge stacks of resources then let my computer do all the work.
First get the crafting macro from my generator:
http://www.designex.net/ezswgcmg.zip
There's no trojan, you can scan it first if you want.
The once you get your macro set up, use AUTO IT REVEAL MODE, to get the coordinates for the Resources.
Get AUTOIT: http://www.hiddensoft.com/AutoIt/downloads.php
Then for the clicking I use ACTOOL, its real easy:
Get ACTOOL: http://www.cameroncole.net/actool.html
and run this script to do the double clicking.
--------------------
// Set the Variables
Constants
SD = 200 // Time in milliseconds between non-delay commands (clicking something, etc) Can be low as your computer can handle
TimeClick = 1
End
SetActiveWindow SwgClient
Loop $TimeClick
MousePos 230, 230 // Resources 1
DoubleClick
Delay $SD
Loop $TimeClick
MousePos 115, 170 // Resource 2
DoubleClick
Delay $SD
End
End
-------------------------
Copy paste more Loops for more types of resources, remember to add the End after each new loop you add. If you have more then one slot of the same resource in the schematic just add 2 doubleclick lines.
First get the crafting macro from my generator:
http://www.designex.net/ezswgcmg.zip
There's no trojan, you can scan it first if you want.
The once you get your macro set up, use AUTO IT REVEAL MODE, to get the coordinates for the Resources.
Get AUTOIT: http://www.hiddensoft.com/AutoIt/downloads.php
Then for the clicking I use ACTOOL, its real easy:
Get ACTOOL: http://www.cameroncole.net/actool.html
and run this script to do the double clicking.
--------------------
// Set the Variables
Constants
SD = 200 // Time in milliseconds between non-delay commands (clicking something, etc) Can be low as your computer can handle
TimeClick = 1
End
SetActiveWindow SwgClient
Loop $TimeClick
MousePos 230, 230 // Resources 1
DoubleClick
Delay $SD
Loop $TimeClick
MousePos 115, 170 // Resource 2
DoubleClick
Delay $SD
End
End
-------------------------
Copy paste more Loops for more types of resources, remember to add the End after each new loop you add. If you have more then one slot of the same resource in the schematic just add 2 doubleclick lines.