Doctor Archive

Thread: Please help with macro!!!

scizoty
Fri Jan 02, 2004 6:07 pm
#1

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


Playdead
Fri Jan 02, 2004 6:36 pm
#2

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;




Zia Obi - The Dark Path
-TDP Mall - Mal'icious's Food & Drink, Resources & Pharmacy SE Cornet 588 -5148
Got resource stats? www.swgcraft.com
scizoty
Fri Jan 02, 2004 6:44 pm
#3

it doesnt even start the crafting tool
Playdead
Fri Jan 02, 2004 6:47 pm
#4

Do you even have tools in the right slots?



Zia Obi - The Dark Path
-TDP Mall - Mal'icious's Food & Drink, Resources & Pharmacy SE Cornet 588 -5148
Got resource stats? www.swgcraft.com
scizoty
Fri Jan 02, 2004 6:48 pm
#5

yes im pretty sure i do. i put them in the first six slots.
Playdead
Fri Jan 02, 2004 6:50 pm
#6

And you found the correct schematic number for what you are crafting? I noticed you have a 0 there.



Zia Obi - The Dark Path
-TDP Mall - Mal'icious's Food & Drink, Resources & Pharmacy SE Cornet 588 -5148
Got resource stats? www.swgcraft.com
scizoty
Fri Jan 02, 2004 6:54 pm
#7

how do u figure out what the number is
philius_MD
Fri Jan 02, 2004 6:59 pm
#8

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





Philius - Architect / Artisan / Merchant / Shipwright / Imperial Pilot
Saike - Creature Handler / Rifleman / Force Sensitive / Alliance Ace Pilot
StarCraft - Angnor, Naboo (-6950, 80) & Theed Outlet (-4710, 3420)
Please deliver auctions to any of the vendors at the main shop in Angnor

Playdead
Fri Jan 02, 2004 7:00 pm
#9

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;






Zia Obi - The Dark Path
-TDP Mall - Mal'icious's Food & Drink, Resources & Pharmacy SE Cornet 588 -5148
Got resource stats? www.swgcraft.com
scizoty
Fri Jan 02, 2004 7:00 pm
#10

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.
Playdead
Fri Jan 02, 2004 7:01 pm
#11






scizoty wrote:
how do u figure out what the number is




Keep guessing till you get it...



Zia Obi - The Dark Path
-TDP Mall - Mal'icious's Food & Drink, Resources & Pharmacy SE Cornet 588 -5148
Got resource stats? www.swgcraft.com
Playdead
Fri Jan 02, 2004 7:02 pm
#12

Hmm that macro I posted some of the spacing was obviously messed up, but you get the idea.. I hope.



Zia Obi - The Dark Path
-TDP Mall - Mal'icious's Food & Drink, Resources & Pharmacy SE Cornet 588 -5148
Got resource stats? www.swgcraft.com
Legende
Sat Jan 03, 2004 5:48 am
#13




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.



________________________________________________________
Legende Des'Krieges
Elder Twi'lek Doctor of Shadowfire
Master Doctor since 29 Aug 03 - 12pt Crafter

A tribute to CSR-TerryS || Best SEA ever!
Page 1 of 1
Previous Next