• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Question - Help with Specific Target Buffing Downshit

kknights

Member
Joined
Oct 22, 2014
RedCents
368¢
Hi guys, I've been working on another set of downshits for my team (will hopefully be posting some new fun ones for Enc/Mag/Shm/Dru soon!) but I've run into a wall with one.

I'm attempting to cast an AA buff on a specific group member. For my purposes, it is intended to be the person marked as the group main tank. Alternatively, this person is always in group slot 1 (it's my tank merc), and his name is XXXXXX. I figure one of those parameters could be used for the target in the downshit.

Here is my basic buff that works so far:

Rich (BB code):
downshit1=/if (${Me.AltAbilityReady[Wrath of the Wild]} && !${Me.Invis} && !${Me.Moving}) /multiline ; /target ${Group.MainTank} ; /alt act 170

The problem is that it will rebuff this every time the ability is available (every 2 minutes) even if the intended target already has "Wrath of the Wild" buffed. Is it possible to do a buff check on the intended target to prevent unnecessary buffing? I know the normal self check is !${Me.Buff[ X ].ID} but I can't figure out anything for another target.

Thanks for any input.
 
You need something like this:

Rich (BB code):
downshit1=/if (${Me.AltAbilityReady[Wrath of the Wild]} && !${Me.Invis} && !${Me.Moving} && !${Me.Buff[Wrath of the Wild].ID}) /multiline ; /target ${Group.MainTank} ; /alt act 170

- - - Updated - - -

I realized now that only checks for buffs on YOU... let me see what you need to check the group role.

- - - Updated - - -

It seems to me that there isn't a TLO for buffs other than Me and Target. That being the case, you would have to target the Group.MainTank, then Target.Buff[buff name] and I don't know if you can do that with your holy.

I'd be interested in seeing how it's done if I'm wrong.
 
Question - Help with Specific Target Buffing Downshit

Users who are viewing this thread

Back
Top
Cart