Is it possible to call a macro from another macro?
I don't have enough lines ina single macro for my craft, so I thought this would work but I don't know if it's possible.
or maybe calling a certain slot on the skillbar?
Printable View
Is it possible to call a macro from another macro?
I don't have enough lines ina single macro for my craft, so I thought this would work but I don't know if it's possible.
or maybe calling a certain slot on the skillbar?
Nope, being able to do so would enable endless macros which would, in essence, allow for botting. Most crafters just use a second macro.
If you aren't already doing so, you can put your waits after a command on the same line which will save you some space.
oh thanks I didn't know that
I do not believe that's possible, But if you have not yet, you can put waits at the end of an action line instead of between lines, like /ac "Ability" <wait1> (not sure if thats exactly right, but thats another way i saw they changed macros to save room)
Edit: Someone beat me to it :<
putting the wait at the end of the line seems to break it, how is it supposed to be written?
I got /ac "whatever" wait 2.8
It has to be <wait.2> or <wait.3>
Decimals won't work and it needs those symbols to identify the syntax
Example of a crafting macro I use for 1 star and under synths that requires no food and uses about 335 CP (Thanks to ImDingDing)
It will work without the <me> but I copy pasted for simplicity sakeCode:/ac "Inner Quiet" <me> <wait.2>
/ac "Waste Not" <me> <wait.2>
/ac "Steady Hand II" <me> <wait.2>
/ac "Basic Touch" <me> <wait.3>
/ac "Basic Touch" <me> <wait.3>
/ac "Basic Touch" <me> <wait.3>
/ac "Basic Touch" <me> <wait.3>
/ac "Basic Touch" <me> <wait.3>
/ac "Steady Hand II" <me> <wait.2>
/ac "Basic Touch" <me> <wait.3>
/ac "Great Strides" <me> <wait.2>
/ac "Byregot's Blessing" <me> <wait.3>
/ac "Ingenuity II" <me> <wait.3>
/ac "Standard Synthesis" <me> <wait.3>
/ac "Basic Synthesis" <me>
got it, thanks!