Artisan Archive
Thread: Bugged macros?
Page 1 of 1
maccaveli
Fri May 28, 2004 9:50 pm
#1
I'm trying to set up a crafting macro but it seems we have a snafu can you help me
It seems to work fine unitll i need to advance the crafting stage the command i'm using is /nextCraftingStage when i do this nothing happens is the command incorrect? is the syntax wrong? let me know if any of you have had this prob if so let me know the fix.
Thank you
Mach
sciguyCO
Fri May 28, 2004 11:08 pm
#2
You might want to post the whole macro. Here's a couple things:
1) You need two /createprototype commands at the end to finish it up.
2) If you're in range ofa crafting station or droid, you need three /nextcraftingstage; the third skips past the "experiment" "make schematic", "make prototype" window.
3) You need a pause after selecting the schematic to give you time to insert the resources
Here's the core setup of the one I've used:
/ui action toolbarSlot03;
/sel ##;
/pause 4;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;
/sel ##;
/pause 4;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;
The first line starts the tool. The second selects the draft schematic (you'll have to play around to find the right one). The pause lets me insert resources. The first /nextcraftingstage hits "next" on the resource window, the second hits "next" on the assembed item's deatils. The "practice no item" makes the prototype in practice mode for the xp bonus and doesn't put the item in your inventory. If you want the item, leave that part off. The final pause gives the tool time to "clean up", and the next section looks identical, just with the next toolbarSlot## for the next tool. The whole thing takes about 5.5 seconds to run, so take the crafting time (displayed on the tool when you make the item), and divide by 6 to determine how many tools you need.
My mouse is set up so the scroll wheel double-clicks, which makes the resource selection go quick. You may want to increase that first pause, especially in laggy areas.
Danemb
Sat May 29, 2004 4:52 am
#3
At the "usefull artisan postings" thread in the top of this forum is a good macro that works fine...
Look there if u still have trouble
Mosdl
Sun May 30, 2004 1:48 pm
#4
"/ui action toolbarSlot03;
/sel ##;
/pause 4;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;"
I get a "Crafting session has ended" after I change the values to the right ones, and I am far away from a crafting station. I choose the resources, and after the pause, I get the error.
Any ideas?
/sel ##;
/pause 4;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;"
I get a "Crafting session has ended" after I change the values to the right ones, and I am far away from a crafting station. I choose the resources, and after the pause, I get the error.
Any ideas?
sciguyCO
Mon May 31, 2004 11:55 am
#5
It's not an error, IIRC you get that message every time you use the "createprototype" command, because the crafting session has ended. Are you seeing an xp increase?
Mosdl wrote:
"/ui action toolbarSlot03;
/sel ##;
/pause 4;
/nextcraftingstage;
/nextcraftingstage;
/createprototype practice no item;
/createprototype practice no item;
/pause 1;"
I get a "Crafting session has ended" after I change the values to the right ones, and I am far away from a crafting station. I choose the resources, and after the pause, I get the error.
Any ideas?
Page 1 of 1