Doctor Archive
Thread: Please help with macro!!!
i tried to make a crafting macro that i saw on another message. i typed in this exact macro and it wont work for me. all it does is say crafting session ended. it doesnt even start the crafting process. i put all my crafting tools in the toolbar also please help
/ui action toolbarSlot00;
/selectDraftSchematic 0;
/pause 5;
/nextCraftingStage;
/nextCraftingStage;
/createPrototype practice no item;
/createPrototype practice no item;
/ui action toolbarSlot01;
/selectDraftSchematic 0;
/pause 5;
/nextCraftingStage;
/nextCraftingStage;
/createPrototype practice no item;
/createPrototype practice no item;
/ui action toolbarSlot02;
/selectDraftSchematic 0;
/pause 5;
/nextCraftingStage;
/nextCraftingStage;
/createPrototype practice no item;
/createPrototype practice no item;
/ui action toolbarSlot03;
/selectDraftSchematic 0;
/pause 5;
/nextCraftingStage;
/nextCraftingStage;
/createPrototype practice no item;
/createPrototype practice no item;
/ui action toolbarSlot04;
/selectDraftSchematic 0;
/pause 5;
/nextCraftingStage;
/nextCraftingStage;
/createPrototype practice no item;
/createPrototype practice no item;
/ui action toolbarSlot05;
/selectDraftSchematic 0;
/pause 5;
/nextCraftingStage;
/nextCraftingStage;
/createPrototype practice no item;
/createPrototype practice
I had trouble with this too, you need to add a pause after completing the crafting session.
Make a complete cycle with one tool look like this.
/ui action toolbarSlot00;
/selectDraftSchematic 0;
/pause 5;
/nextCraftingStage;
/nextCraftingStage;
/createPrototype practice no item;
/createPrototype practice no item;
/pause 1;
keep it simple with a number of macros performing a separate function
put ur crafting tools on say slots 00 thru 07
make 8 macros of:
/ui action toolbarSlotxx
/selectDraftSchematic xxx
then 1 macro for completion:
/nextCraftingStage etc etc
then 1 macro to automate the process...
run 1st macro /ui action toolbarSLotxx
wait 5 secs for ingredients /pause 5
run completion macro
then 2 secs to wait for the craft to complete
then nxt crafting tool macro etc etc
if u can find a really lag free area u can get the pauses down to about 4 secs then 1 sec
this method has worked fine for me grinding to master doc and up to merchant on this char and grinding the entire tailor prof on my other char for holo, if u still cant get it working and ur on eclipse i can forward u an email with everything in it ![]()
Yeah I bet you just copied a macro template and didn't know/read that you have to find out the schematic number of what you are crafting on you own. Its different for everybody. If your looping it I hope you have a macro to stop it. /dump; will stop a looping macro
Here's my macro for grinding this can be used for anything.
F1 - macro part 1 F2 - macro part 2 F3 -> F9 - 7 Crafting tools F10 - Macro to stop the loop
Macro part 1
/ui action toolbarSlot02;/selectDraftSchematic 46;/pause 5;/nextCraftingStage;/nextCraftingStage;/createPrototype practice no item;/createPrototype practice no item;/pause 1;/ui action toolbarSlot03;/selectDraftSchematic 46;/pause 5;/nextCraftingStage;/nextCraftingStage;/createPrototype practice no item;/createPrototype practice no item;/pause 1;/ui action toolbarSlot04;/selectDraftSchematic 46;/pause 5;/nextCraftingStage;/nextCraftingStage;/createPrototype practice no item;/createPrototype practice no item;/pause 1;/ui action toolbarSlot05;/selectDraftSchematic 46;/pause 5;/nextCraftingStage;/nextCraftingStage;/createPrototype practice no item;/createPrototype practice no item;/pause 1;/ui action toolbarSlot01;
Macro part 2
/ui action toolbarSlot06;/selectDraftSchematic 46;/pause 5;/nextCraftingStage;/nextCraftingStage;/createPrototype practice no item;/createPrototype practice no item;/pause 1;/ui action toolbarSlot07;/selectDraftSchematic 46;/pause 5;/nextCraftingStage;/nextCraftingStage;/createPrototype practice no item;/createPrototype practice no item;/pause 1;/ui action toolbarSlot08;/selectDraftSchematic 46;/pause 5;/nextCraftingStage;/nextCraftingStage;/createPrototype practice no item;/createPrototype practice no item;/pause 1;/ui action toolbarSlot00;
Stopping macro
/dump;
scizoty wrote:
how do u figure out what the number is
Keep guessing till you get it...
scizoty wrote: the problem im having is that it wont even start the crafting session. i press macro button and nothing happens. a couple seconds later it says crafting session ended.
Sounds like it might not be loading a schematic, try using /selectDraftSchematic 00; instead of 0, or even 01 instead of 0. I'm pretty positive you have to have a double digit there [andwith programming,it matters]. A couple of changes to your first posted macro as well...
--------------------------------/ui action toolbarSlot00;
/selectDraftSchematic 0;
/pause 5;
/nextCraftingStage;
/nextCraftingStage;
/createPrototype practice no item;
/createPrototype practice no item;
--------------------------------
This should look like the following:
--------------------------------
/ui action toolbarSlot00;
/selectDraftSchematic 00;
/pause 5;
/nextCraftingStage;
/nextCraftingStage;
/createPrototype practise no item;
/createPrototype practise no item;
/pause 1;
--------------------------------
Note the changes: schematic changed to double digit, practice is misspelt "practise" [this is how it is in the coding and how you have to spell it to get it to work right], and a /pause 1; at the end to give it time to transition from one tool to the next. These changes need to be made to each section of the script.
Hope this is of help in getting your macro working.