Bio Engineer Archive
Thread: macro help
Hey there I'm a DE trying to figure out why I'm only getting credit for about half of my grinding efforts. Below is my macro, if anyone would feel kind enough to help me or redirect me to someone who would. I have read most of the large posts on macroing and macro-crafting, so please don't post links unless they directly address the problem I am having.
Notes: the schematic is for the advanced droid frame module. I have four crafting tools and a set of four macros (below) that call each of the 4 crafting tools and then proceed to call the next one in the series. The last one loops back to the first. Issues of efficiency are not pertinant at this time, I'd really just like to know why I'm only getting 1/2 the xp I should be.
GrindDE01
/ui action toolbarSlot09;
/selectDraftSchematic 159;
/pause 3;
/nextCraftingStage;
/pause 3;
/nextCraftingStage;
/pause 3;
/createPrototype Practice noitem;
/pause 3;
/createPrototype Practice noitem;
/pause 3;
/macro GrindDE02
GrindDE02
/ui action toolbarSlot10;
/selectDraftSchematic 159;
/pause 3;
/nextCraftingStage;
/pause 3;
/nextCraftingStage;
/pause 3;
/createPrototype Practice noitem;
/pause 3;
/createPrototype Practice noitem;
/pause 3;
/macro GrindDE03
GrindDE03
/ui action toolbarSlot21;
/selectDraftSchematic 159;
/pause 3;
/nextCraftingStage;
/pause 3;
/nextCraftingStage;
/pause 3;
/createPrototype Practice noitem;
/pause 3;
/createPrototype Practice noitem;
/pause 3;
/macro GrindDE04
GrindDE04
/ui action toolbarSlot22;
/selectDraftSchematic 159;
/pause 3;
/nextCraftingStage;
/pause 3;
/nextCraftingStage;
/pause 3;
/createPrototype Practice noitem;
/pause 3;
/createPrototype Practice noitem;
/pause 3;
/macro GrindDE01
Thanks for any help. This has really been bugging me.
Well first of all change your macro to look like this:
GrindDE01
/ui action toolbarSlot09;
/selectDraftSchematic 159;
/pause 3;
/nextCraftingStage;
/nextCraftingStage;
/createPrototype Practice noitem;
/createPrototype Practice noitem;
/pause 2;
/macro GrindDE02
Whole lot faster that way. Second there is nothing wrong with your macros per se. If you aren;t getting XP for a given grind, you're tool should also not display a count down either right? If it doesn't display a count down, then that tells you you had a critical fail. Happens, but happens a whole lot less if you use good tools. Make sure you're not using a crafting tool with effectiveness -14 or something lol. Try to make or buy some +15 tools and use those. Your critical fails will happen a LOT less if you do.
/sample;
/pause 50;
/sit;
/pause 10;
/stand;
/pause 6;
/ui action toolbarslot00
and I have the macro in the 00 slot. but when I run it once he stands he doesn't sample again, so I guess it isn't running the macro again. What am I doing wrong?
gwood3 wrote:
Thank you, I'll try it. I don't understand the "science" part though. How would I indicate titles such as "Medical Professor", "Skilled Dancer", "Choreographer" and "Master Dancer"?
i'll give it a try
Medical Professor - /setCurrentSkillTitle science_doctor_knowledge_04
Skilled Dancer - /setCurrentSkillTitle social_dancer_technique_04
Choreographer - /setCurrentSkillTitle social_dancer_knowledge_04
Master Dancer - /setCurrentSkillTitle social_dancer_master
not positive on the first 3, but it should be close
Which means there must be a way to designate a title one has earned. But if you type:
/setCurrentSkillTitle
...that apparently just removes the title designation under Control-P.
When I try things like:
/setCurrentSkillTitle Master Medic
....nothing seems to happen.
I would like to use this command in my dancing macro to toggle between displays of different professions. Can that be done?
I had mixed (and curious results):
Worked:
Choreographer - /setCurrentSkillTitle social_dancer_knowledge_04
Didn't work:
Medical Professor - /setCurrentSkillTitle science_doctor_knowledge_04
Skilled Dancer - /setCurrentSkillTitle social_dancer_technique_04
Couldn't test Master Dancer - /setCurrentSkillTitle social_dancer_master because I'm not there yet. (Well, I didn't even try it.)
At least I can now toggle between Master Doctor and Choreographer while I dance on macro, which is kind of cool. But it makes no sense that those other two didn't work. I'll try again next time I log in.
Thanks again!
George Wood