Artisan Archive

Thread: In Need of Crafting Macro

jewel0905
Mon Feb 16, 2004 10:02 am
#1

I know there is a Macro for Crafting this part of arison can someone help me with this Thank You....

Andros Sin

TheMalle
Mon Feb 16, 2004 5:34 pm
#2

This is a step by step guide to a crafting macro:

1. Open up your datapad and check what number your schematic is. Count from left to right, from up to down and skip all the items that your crafting tool can't make.

2. Copy this text into your chatbox, but change the --- to the number of your schematic (example, /selectDraftSchematic 10

/alias craft1 /ui action toolbarSlot01;/selectDraftSchematic ---;/pause 5;/nextCraftingStage;/nextCraftingStage;/nextCraftingStage;/createPrototype;/createPrototype
/alias craft2 /ui action toolbarSlot02;/selectDraftSchematic ---;/pause 5;/nextCraftingStage;/nextCraftingStage;/nextCraftingStage;/createPrototype;/createPrototype
/alias craft3 /ui action toolbarSlot03;/selectDraftSchematic ---;/pause 5;/nextCraftingStage;/nextCraftingStage;/nextCraftingStage;/createPrototype;/createPrototype
/alias craft4 /ui action toolbarSlot04;/selectDraftSchematic ---;/pause 5;/nextCraftingStage;/nextCraftingStage;/nextCraftingStage;/createPrototype;/createPrototype
/alias craft5 /ui action toolbarSlot05;/selectDraftSchematic ---;/pause 5;/nextCraftingStage;/nextCraftingStage;/nextCraftingStage;/createPrototype;/createPrototype
/alias craft6 /ui action toolbarSlot06;/selectDraftSchematic ---;/pause 5;/nextCraftingStage;/nextCraftingStage;/nextCraftingStage;/createPrototype;/createPrototype

3. Make a macro called Craft with this text:

/craft1;
/pause 8;
/craft2;
/pause 8;
/craft3;
/pause 8;
/craft4;
/pause 8;
/craft5;
/pause 8;
/craft6;
/pause 8;
/macro crafttest

4. Place the macro on the F1 toolbar hotkey (you can change toolbar with ctrl + F11 and ctrl + F12)

5. Create/buy 6 of the desired crafting tools (I prefer weapon, droid and general crafting tools) and place them in the F2 - F7 toolbar hotkeys.

6. Use F1 to start the macro.
-------------------------------------------------------

Macro response



-------------------------------------------------------------------------------
Malle the Mon Calamari
Mos Entha Role Playing Community
http://www.mosentha.com

"Behavior is a mirror in which every one displays his image" - Johann Wolfgang von Goethe
vitali
Mon Feb 16, 2004 11:38 pm
#3

how do you copy paste into game?






Vitali
Valcyn
TheMalle
Tue Feb 17, 2004 1:33 pm
#4

Options -> Controls -> Keymap -> Chat

There you can find cut, copy and paste. Bind a button or a combination of buttons to them and feel the pleasure of in-game copying



-------------------------------------------------------------------------------
Malle the Mon Calamari
Mos Entha Role Playing Community
http://www.mosentha.com

"Behavior is a mirror in which every one displays his image" - Johann Wolfgang von Goethe
blastcypher
Thu Feb 19, 2004 3:34 pm
#5

Is there a way to practice this macro, with using resources or creating the item, just to destroy it later?



blastcypher
~ master shipwright ~
~ master teras kasi ~
"Out of millions of sperm, you were the fastest one?"

Chimpychapp
Thu Feb 19, 2004 5:53 pm
#6

Not to sound like a n00b or anythingbut i don't get the third part. Can you simplify it please?



'Chimp' - Combat Medic / Rifleman

Ralph, Jesus didn't have wheels...

Mos Tuskia - Galactic Liberation Army



TheMalle
Fri Feb 20, 2004 12:53 am
#7

Blastcypher: where it sais '/createPrototype', change it to '/createPrototype Practice NoItem'


Chimpychapp: If you open up your abilities and commands window (ctrl + a is the hotkey on the standard SWG keymap I believe) there is a tab called 'Macro'. Click on that tab and select 'New Macro' in the bottom of the window. You then get up another window called 'Edit Macro' There are three things you have to do here:


1. Fill in a name in the name field, use crafttest in this example. You can use any other name you please, but the nyou have to change the '/macro crafttest' in the end of the macro to '/macro YourNameOnTheMacro'


2. Choose a macro. Doesn't really matter what you choose, pick something that reminds you of crafting.


3. Enter the commands that the macro performs when you run it. Here you enter the commands. When you are done it should look something like the picture on this URL: http://malle.dajoob.com/swg/images/swgmacro.jpg


Now, if you want a detail description of what the macro does, here is the deal:


First line gives the command /craft1

We've before set the alias as I gave in my first post, so when executing /craft1, it executes the alias /craft1 which should be

/ui action toolbarSlot01;/selectDraftSchematic ---;/pause 5;/nextCraftingStage;/nextCraftingStage;/nextCraftingStage;/createPrototype;/createPrototype


The commands here does:

/ui action toolbarSlot01 - It uses the second slot in the toolbar, the F2 slot (it starts counting at 00 for F1)


/selectDraftSchematic ----This basically is like clicking on that specified schematic in the list. Say that you can make combat knifes and those are fourth in your datapad using this command with 3 (it starts on 0) would be like choosing to make a combat knife in the list you get up when using a crafting tool.


/pause - Self explanatory I believe it pauses the row of commands for X number of seconds, meaning that it takes 5 seconds in this example before the next command is executed. This is the time you have to put in the resources needed in this macro.


/nextCraftingStage -Kinda self explanatory too, it takes you to the next crafting stage


/createPrototype- Rather self explanatory also, it creates the prototype of the item you are crafting. You can change this to:


/createPrototype Practice NoItem - It finishes the crafting, but in practice mode which give you 5% bonus XP and doesn't create an item in your inventory.



Now, if you look at the macro text, there is a /pause8 after the /craft one, this means that the next command wont be executed until 8 seconds after the previous command is. After 8 seconds from running the previous command it will ruin the next crafting command and you can craft again.


So basically the macro runs like this;

You hit the hotkey, it loads for a little while, you enter the resources. 5 seconds after you've hit the hotkey the crafting station tries to build (or practice) your item. If you don't have the resources in by then you might get a error.


Meanwhile that is done the macro runs besides it waiting until 8 seconds after you've hit the hotkey, or in other words, 3 seconds after the crafting is done, to open up a new crafting window. Then it does the commands over and over again, since when the macro has run through all it's commands, it calls itself to run again.


Don't forget the command /dump to stop all macros Hope I managed to make you understand a little better



-------------------------------------------------------------------------------
Malle the Mon Calamari
Mos Entha Role Playing Community
http://www.mosentha.com

"Behavior is a mirror in which every one displays his image" - Johann Wolfgang von Goethe
BeccaTovo
Fri Feb 20, 2004 3:05 pm
#8

i have done the macro bit the /craft 1;.... but where the hell do i put the bit a starting /alias...... ??



Becca Tovo

Master Entertianer (surrendered), Master Artisan (Holo 1) (surrendered), Master Musician (holo 2) (surrendered), Master Creature Handler (surrendered), TKM, Doctor 3.1.1.2
Server - Farstar
RoboFish
Fri Feb 20, 2004 3:36 pm
#9

I gave this yopic a 1 star I am not a 1 tar ninja, and here is my reson for giving it.


I do not condone grinding cause I fell it ruins the profession.

I can honestly said that I used or sold everything that I crafted to get to Master Artisan.

I didn't grind one bit It might have taken longer but atleast I wasn't adding to the clutter of cdefs and other crap that flooded the bazzar before they added the practice button.

If you find artisan so boring that you need a crafting macro I suggest you find another profession.



In-game name is Kahless!
Master Nerf Herder
If you avoid the truthe, you pay for your lies. A lie always does the most harm to the person who tells it.
~ Karen Moline, "Belladonna"

R.I.P Tivo Tenook and SkyPreacher1 who went out fighting the good fight for CH's everywhere
Beast meetings on Radient at 4pm EST

BeccaTovo
Fri Feb 20, 2004 3:46 pm
#10

this is not for the artisan trade this is for the log arse part of doing the doctor crafting stage this is a proffesion i intead to keep it is just taking forever to get the crafting part done please help me



Becca Tovo

Master Entertianer (surrendered), Master Artisan (Holo 1) (surrendered), Master Musician (holo 2) (surrendered), Master Creature Handler (surrendered), TKM, Doctor 3.1.1.2
Server - Farstar
TuskenJedi
Fri Feb 20, 2004 4:24 pm
#11

Is there a way to stop a looping macro other than /quit?
LadyGrey
Fri Feb 20, 2004 4:26 pm
#12



TuskenJedi wrote:
Is there a way to stop a looping macro other than /quit?





/dump



/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
LadyGrey

Don't let the negative AFKophobes get you down. Play the game however you want.

Is the beta testing almost over for this game?
TuskenJedi
Fri Feb 20, 2004 5:13 pm
#13

Thank you much LadyGrey!
Page 1 of 3
Previous Next