taultunleashed logoAFK CRAFTING!(yes there is a way) : Star Wars Galaxies Nerfed Info tu winter contest 2012 nintendo wii
newtopic  postreply
 [ 3 posts ] 
blue large dot

AFK CRAFTING!(yes there is a way) : Star Wars Galaxies Nerfed Info

Posted: May 10th, 2004, 3:55 pm
 
Tault_Tault Community

Total Posts: 10213
Joined: August 29th, 2004, 2:46 pm
Tault_Tault Community's Reps: 16
User avatar
Active User > 50 Posts
premium
YOU WILL NEED THE PROGRAM AUTO-IT to find it do a google search.


Step One: set up your toolbar so it has two bars. In the top bar(slots 00-06) place your seven crafting tools (the number of tools will vary depending on how long the crafting time is for each item being crafted. This prevents over lapping). In the bottom bar (slots 12-18) you will be placing corresponding macro buttons.

The macros need to be like so. The following example would be for Slot 12.

/ui action toolbarSlot00;
/selectDraftSchematic ##;

This is for Slot 13:

/ui action toolbarSlot01;
/selectDraftSchematic ##;

For slots 14-18 just increase the Slot##

For the draft schematic is a bit tricky. You need to find the draft schematic for the item you want to craft but it varies per person. The easiest thing to do is open your tool and enter /selectDraftSchematic ##; ## equals any random number. After you find out what that random number selects exit out and open your draft schematic listing by pressing ctrl+d and selecting the draft schematic tab. Find the schematic that the random number selected and then find the schematic you want to use. Count the difference between the two and try again with the craft tool until you get the correct schematic. When you get the schematic number substitute that number in the macros on the second bar.

The last macro you have to make is going to be placed in the last slot on the top bar. The macro is as follows:

/nextCraftingStage;
/nextCraftingStage;
/createPrototype practice no item;
/createPrototype practice no item;

Now for inventory setup. The easiest thing you can do is only place the resources needed for the crafting in your inventory. This will prevent resources you dont want to use from getting in the way.

Ok once all this is setup you need to use the AutoIt reveal program. The easiest thing to do for visibility and ease of use between the game and the AutoIt program is to setup the game to run in windowed mode. You can do this by starting the game and before selecting the play button go to options and check run in windowed mode and run in borderless window mode. Next set your screen resolution to 1280x1024 if you can. Play the game and then setup the reveal window to be visible.


Step 2: Recording the locations.

The next step is to record the locations of the buttons. Let you cursor hover over each of the macro buttons on the bottom row of your toolbar and record the x,y location that is posted in the reveal window. You need to do this for the NextCraftingStage macro that is in the last slot in the top bar. Now you need to open up one of your toolbar crafting window with the schematic you will be using and record the x,y location for each of the resources. Now with alll of this recorded we can start with the AutoIt program code. The one I will be showing as an example will be the one I used to make an armor upgrade kit to progress through armorsmith. Therefore there were two locations for metal and one for chemical. Just for this example I included messages to explain what is going on using the // symbol. Do not include these with the final code.

Sleep, 3000 //This has the program pause for 3 seconds to allow me to select the game window.
Goto, myLoop //This sends the code to the function myLoop

myLoop: //This is the function myLoop
LeftClick, 586, 53 //This clicks on the first macro button to open the first tool. Insert the x,y locations here for the first macro tool button. Remember these numbers are for the macro I used.
Sleep, 2000 //Pause for 2 seconds
LeftClick, 87, 225 //This is the first click on the first resource
LeftClick, 87, 225 //This is the second click on the first resource (This and the first make a double click)
Sleep, 500 //Pause for a 1/2 second
LeftClick, 87, 225 //This is the first click on the first resource for the second box of metal needed for the armor upgrade kit.
LeftClick, 87, 225 //This is the second click on the first resource (This and the first make a double click)
Sleep, 500 //Pause for a 1/2 second
LeftClick, 131, 225 //This is the first click on the second resource.
LeftClick, 131, 225 //This is the second click on the second resource.
Sleep, 2000 //Pauses for 2 seconds
LeftClick, 1001, 20 //This clicks on the next crafting stage to finish the process and get the practice xp.
Sleep, 2000 //Pauses for 2 seconds

LeftClick, 619, 53 //Clicks on the next crafting tool macro and starts the process over again. Insert the x,y locations here for the second macro tool button.
Sleep, 2000
LeftClick, 87, 225
LeftClick, 87, 225
Sleep, 500
LeftClick, 87, 225
LeftClick, 87, 225
Sleep, 500
LeftClick, 131, 225
LeftClick, 131, 225
Sleep, 2000
LeftClick, 1001, 20
Sleep, 2000

LeftClick, 651, 53
Sleep, 2000
LeftClick, 87, 225
LeftClick, 87, 225
Sleep, 500
LeftClick, 87, 225
LeftClick, 87, 225
Sleep, 500
LeftClick, 131, 225
LeftClick, 131, 225
Sleep, 2000
LeftClick, 1001, 20
Sleep, 2000

LeftClick, 682, 53
Sleep, 2000
LeftClick, 87, 225
LeftClick, 87, 225
Sleep, 500
LeftClick, 87, 225
LeftClick, 87, 225
Sleep, 500
LeftClick, 131, 225
LeftClick, 131, 225
Sleep, 2000
LeftClick, 1001, 20
Sleep, 2000

LeftClick, 747, 53
Sleep, 2000
LeftClick, 87, 225
LeftClick, 87, 225
Sleep, 500
LeftClick, 87, 225
LeftClick, 87, 225
Sleep, 500
LeftClick, 131, 225
LeftClick, 131, 225
Sleep, 2000
LeftClick, 1001, 20
Sleep, 2000

LeftClick, 780, 53
Sleep, 2000
LeftClick, 87, 225
LeftClick, 87, 225
Sleep, 500
LeftClick, 87, 225
LeftClick, 87, 225
Sleep, 500
LeftClick, 131, 225
LeftClick, 131, 225
Sleep, 2000
LeftClick, 1001, 20
Sleep, 2000

LeftClick, 812, 53
Sleep, 2000
LeftClick, 87, 225
LeftClick, 87, 225
Sleep, 500
LeftClick, 87, 225
LeftClick, 87, 225
Sleep, 500
LeftClick, 131, 225
LeftClick, 131, 225
Sleep, 2000
LeftClick, 1001, 20
Sleep, 2000

Goto, myLoop //This starts the loop over again.
[u][b][i][color=red][/color][size=24][/size][/i][/b][/u]


Reply with quote
Posted: May 14th, 2004, 12:46 pm
 
Tault_Tault Community

Total Posts: 10213
Joined: August 29th, 2004, 2:46 pm
Tault_Tault Community's Reps: 16
User avatar
Active User > 50 Posts
premium
I dont understand why people list the full macro with the cords and everything...

chances are you will have to redo all of it anyway...



And what the fock? This place is like russia, people list crap like 1 1/2 years after it comes out...


Sheesh..


Reply with quote
Posted: May 14th, 2004, 8:45 pm
 
Tault_Tault Community

Total Posts: 10213
Joined: August 29th, 2004, 2:46 pm
Tault_Tault Community's Reps: 16
User avatar
Active User > 50 Posts
premium
People always think crafting afk is some kind of exploit, maybe it should be put in the submission must read


Reply with quote
Want Advertisements After The Last Post Removed? Create A Free Account!

blue large dot Who is online
Users browsing this forum: No registered users and 78 guests

Popular Sections
SWTOR Cheats
Guild Wars 2 Cheats
Guild Wars 2 Hacks
Guild Wars 2 Bots
Diablo 3 Cheats
Guild Wars 2 Mods

Popular Sections
WoW Cataclysm Cheats & Exploits
WoW Cataclysm Hacks & Bots
Star Wars The Old Republic Cheats
SWTOR Mods
Torchlight 2 Cheats
SWTOR Space Mission Bots
Site Nav and RSS
RSS Feed of Star Wars Galaxies Nerfed Info RSS Feed 
Sitemap of Star Wars Galaxies Nerfed Info Sitemap 
SitemapIndex SitemapIndex
RSS Feed RSS Feed
Channel list Channel list
left bottom corner Site and Contents Copyright 2001-2012 All Rights Reserved TaultUnleashed.com bottom corner
top left
top right
createaccount
Username:   Password:   Remember Me?