Architect Archive
Thread: Crafting Macros No Schematic Number needed
Also, I increased the pasue length just to allow myself a little extra time to hit enter and because my computer sometimes lags a moment when loading a schematic. People with decent computers (mine's not very good) probably won't have this problem.
Wyntyr
Yeah, everything is alphabetized now, quite annoying.
GummiShooter wrote:
I think this whole sorting feature messed things up good.Before this, you could just count to the required item in the datapad. But now because the datapad items are sorted, this doesn't work anymore.I think your option is a good solution for the time being.
Wyntyr wrote: I am glad people are finding this useful Also, I increased the pasue length just to allow myself a little extra time to hit enter and because my computer sometimes lags a moment when loading a schematic. People with decent computers (mine's not very good) probably won't have this problem.Wyntyr
use /ui action defaultButton instead of the /selectDraftSchematic XX. if you preselect your schematic before running your macro, this should auto select the last schematic crafted.
LaurnaRose wrote:
Wyntyr wrote: I am glad people are finding this useful Also, I increased the pasue length just to allow myself a little extra time to hit enter and because my computer sometimes lags a moment when loading a schematic. People with decent computers (mine's not very good) probably won't have this problem.Wyntyr
use /ui action defaultButton instead of the /selectDraftSchematic XX. if you preselect your schematic before running your macro, this should auto select the last schematic crafted.
Nice, this might be the best solution! Gonna try this in a few hours.
Edit: Tried it, and it works like a charm. You do need to add a /pause 1; before it though, because the select schematic page isn't loaded yet when the /ui action defaultButton; command executes. So:
/ui action toolbarSlot00;
/pause 1;
/ui action defaultButton;
Message Edited by GummiShooter on 01-05-2005 08:10 AM
/nextCraftingStage;
/createPrototype;
/createPrototype;
/ui action ToolbarSlot##;
/pause 2;
/ui action defaultButton;
/pause 8;
/nextCraftingStage;
/nextCraftingStage;
/nextCraftingStage;
/create prototype;
/create prototype;
/create prototype;
/pause 3;
/ui action toolbarSlot##;
I know this macro works as I used it this morning.
Wyntyr