PDA

View Full Version : Absorb macro


ShockTrooper
01-01-2008, 01:15 PM
is it posible to make a macro that will cast absorb-str, absorb-agi, absorb-vit, and absorb-dex, in one macro?

Armando
01-01-2008, 01:18 PM
Yes, but it's not a wise idea to put multiple spells in the same macro.

ShockTrooper
01-01-2008, 01:21 PM
yeah i know, btw how do you do it? i've tried and i can't figure it out

Mhurron
01-01-2008, 01:30 PM
Between the needed wait statements, the most you'll get in would be 3 spells in on macro.

Aeolus
01-01-2008, 01:48 PM
/ma "Absorb Str" <t>
/wait 5
/ma "Absorb Dex" <t>
/wait 5
/ma "Absorb Mnd" <t>
*****macro hax on google*****
/wait 5
/ma "Absorb Agi" <t>

Ellipses
01-01-2008, 01:55 PM
If you don't mind your macro keeping you from using any other macros/commands until you're done with it (and if you're trying to do this to begin with, I doubt you do):

/ma "Absorb-STR" <stnpc>
/ma "Absorb-DEX" <stnpc>
/ma "Absorb-MND" <stnpc>
/ma "Absorb-AGI" <stnpc>

Hit Enter/Confirm for STR to cast, wait until it's done, hit Enter/Confirm to start DEX, etc.

ShockTrooper
01-01-2008, 01:56 PM
how do i do that?

Wise Donkey
01-01-2008, 02:43 PM
/ma "Absorb-STR" <stnpc>
/ma "Absorb-DEX" <stnpc>
/ma "Absorb-MND" <stnpc>
/ma "Absorb-AGI" <stnpc>

Hit Enter/Confirm for STR to cast, wait until it's done, hit Enter/Confirm to start DEX, etc.

Those are the lines for your macro. the "<stnpc>" forces you to manually select an NPC target. However, I still don't think that will work unless you have the wait macro in there.

Armando
01-01-2008, 06:00 PM
No, it works. You can put up to 6 JA/MA/WS commands in a macro that way if you so wished, assuming you waited the appropriate amount of time before you selected the next spell's target. Basically, you do the /waits manually.

Wise Donkey
01-01-2008, 07:17 PM
Interesting. Years into this game and I am still learning new stuff.

Ellipses
01-02-2008, 05:03 AM
Yep, just have to do the waits manually. This is how I roll with Protectra/Shellra (since <stpc> defaults to self if you have an NPC or nothing targeted).

/p (Gather together.) (Protectra) / (Shellra)
/ma "Protectra" <stpc> (Manually wait for party to actually gather, then hit enter.)
/ma "Protectra" <stpc> (Manually wait for Protectra to finish, then hit enter to start Shellra.)

For the absorbs, I'd assume you'd already be auto-attacking or at least /ta <bt> so you don't need to worry about finding the right target.

Armando
01-02-2008, 06:23 AM
I'd also like to point out that while hitting (Cancel) while the game asks you for a target will cancel the rest of the macro, you can "skip" a spell by attempting to cast it while you're already mid-spell or before the 3 second wait between spells is over, or by choosing an invalid target (for JAs you have to choose invalid targets since they're instant.)