Droid Engineer Archive
Thread: Figuring out Schematic number?
Page 1 of 1
JarenJade
Fri Apr 01, 2005 5:15 am
#1
I'm trying to figure out draft schematic numbers and I need a realiable system to do so.
I was told that when I go to the craft option of my tool, that the first schematic should be numbered 00, and the next schematic 01. This is not implicit, and none of the draft schematics have such overt numbers to tell the user its number. Moreover, in my experiments I've found that this dosen't work.
I'm trying to determain the draftschematic number for MAPS.
If anyone knows of a realiable sustem to figure this out could you please share.
Cheers,
psikobunny
Fri Apr 01, 2005 10:40 am
#2
Turn off any autosort options you may have checked under options. Make sure the schemas you count are the ones available to that tool. Know that the numbers will change if you counted while away from a crafting station, then approach one (or call a crafting droid).
FelniFosk
Fri Apr 01, 2005 3:29 pm
#3
/ui action defaultButton.
I'd suggest adding a /pause 2 before it to allow enough time for your tool to open for the macro to select the schematic.
Works with anything.
I'd suggest adding a /pause 2 before it to allow enough time for your tool to open for the macro to select the schematic.
Works with anything.
Straker_Atrella
Sat Apr 02, 2005 1:23 am
#5
Forget schematic counting, there is a much easier way.
There is a / command that is something like "perform last action or default action or something" sorry I am at work right now and can't look at it. If you type // it should be listed there.
Then all you do is craft the item like you normally would once. Then run your macro with that command where you would select the schematic at. It will then use the last schematic you used.
No need to count.
Cohesive
Mon Apr 04, 2005 8:08 pm
#7
Help!
My macro looks like this
/ui action toolbarSlot00;
/ui actiondefaultButton;
/pause 5;
etc etc etc
It's not auto selecting the schematic though after I've done it all by ahnd once. It brings me to the schematic slect menu, I select my schematic, than it takes me to resources finally where It finally finishes the macro. Soon as it gets to the next tool, it does the exact same thing. Anyone able to help me out here?
FelniFosk
Tue Apr 05, 2005 11:09 am
#8
Cohesive wrote:
Help!
My macro looks like this
/ui action toolbarSlot00;
/ui actiondefaultButton;
/pause 5;
etc etc etc
It's not auto selecting the schematic though after I've done it all by ahnd once. It brings me to the schematic slect menu, I select my schematic, than it takes me to resources finally where It finally finishes the macro. Soon as it gets to the next tool, it does the exact same thing. Anyone able to help me out here?
Yes, I mentioned that in my post above... put a /pause 2BEFORE /ui action defaultButton. It needs enough time to open your tool AND THEN select the defaultButton. Your macro would do it instantly which I've found is not enough time =).
Try this:
/ui action toolbarSlot00;
/pause 2
/ui actiondefaultButton;
/pause 5;
Cohesive
Wed Apr 06, 2005 12:22 am
#9
great, that's what I misunderstood. I had
/pause 2;
/pause 5;
because I was retarded and didn't fully comprehend what you were saying. Thanks for the clarification.
LonelyGhost
Fri Apr 08, 2005 9:20 am
#10
If you do a dump of the /ui commands on TC5, you will notice that there is no /defaultbutton command any more. And there is a nifty new minor shuffle of all schematic numbers after training many of the boxes in the profession. Not all, but most.
GnomeAd
Fri Apr 08, 2005 11:02 am
#11
LonelyGhost wrote:
If you do a dump of the /ui commands on TC5, you will notice that there is no /defaultbutton command any more. And there is a nifty new minor shuffle of all schematic numbers after training many of the boxes in the profession. Not all, but most.
It might not list anymore, but it's still there and working. I used it quite extensivley last night.
Page 1 of 1