Image Designer Archive
Thread: macro for ID in entertainer...
Tried using a macro a friend gave me, but i couldnt get it to work. It's:
/image;
/imagedesignSetValue hair 01;
/pause 01;
/ui action toolbarSlot00;
All this does is bring up the image design menu and say "you are already in the process of image design action"...any suggestions?
Change your second line to this /imagedesignSetValue hair_color 1; (This works better). AsI went up the treeI changed it to eye_color 1 for more xp. And dont forget to target yourself or your grinding partner.
this is what im using and it works for me but i really had to tweek with several macros to find one that did
/im;
/image;
/imagedesignSetValue eye_color 0;
/pause 1;
/ui action toolbarSlot00;
the opening choice box will hang there just click accept over and over again
jesterbunny wrote:
this is what im using and it works for me but i really had to tweek with several macros to find one that did
/im;
/image;
/imagedesignSetValue eye_color 0;
/pause 1;
/ui action toolbarSlot00;
the opening choice box will hang there just click accept over and over again
The /im; and /image; are actually redundant. They do the same thing, in this case, calling the image design process twice. Also there is a little better way to call the macro over without using the ui command, try this for a macro:
(Name the macro ImageGrind)
/im;
/imagedesignSetValue eye_color x;
/pause x;
/macro ImageGrind;
Replace the x's in the macro with the number value you want and watch your mind dissappear. ![]()
If I wrote this macro would it look like this
/image; imagedesignSetValue eye_color 0; /pause 1; /ui action toolbarSlot00
And to make it work I just keep hitting my hotkey?
First, you missed a '/' before imagedesignSetValue. Second, the command "/ui action toolbarSlot00" triggers whatever's in your F1 slot—which should be this macro. So if you keep hitting your hotkey you'll start another infinite loop for each keypress, and this is a Bad Thing (tm). Press the hotkey (F1) once and when you run out of mind type "/dump" in the spatial box.
DarthPinoy wrote:
If I wrote this macro would it look like this
/image; /imagedesignSetValue eye_color 0; /pause 1; /ui action toolbarSlot00
And to make it work I just keep hitting my hotkey?
Can't seem to get the macro working... keeps saying the oh-so familiar "You are already in the process of image design action"...
Doesn't use up any Mind either or give any Xp either...
Macro I'm trying:
/image;
/pause 0.5;
/imagedesignSetValue eye_color 1;
/pause 0.5;
/Macro imagedesign;
What's messing it up?