• 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 - Cond question

Creedy

September 10th, 2023
RIP
Joined
Dec 27, 2017
RedCents
70¢
Cond6=!${Me.Buff[Unfettered Growth].ID}……. How would I set this to cast on the Main assist/tank????

I tried Cond6=!${Mainassist.Buff[Unfettered Growth].ID}but didn't work
 
Cond6=!${Me.Buff[Unfettered Growth].ID}……. How would I set this to cast on the Main assist/tank????

I tried Cond6=!${Mainassist.Buff[Unfettered Growth].ID}but didn't work
Buffs1=Unfettered Growth|MA
of if wanted during combat
DPS1=Unfettered Growth|99|MA

just the |MA tag is fine for the buff
 
Yea wanted during combat but I didn't want him recasting it every mob if its still up but guess it don't matter thanks
 
You could use the mq2melee ini for it..
holyflag0=1
holyshit0=/if (!${Me.Buff[Unfettered Growth].ID}) /bct Toonthatcasts //casting "Unfettered Growth"-targetid|${Me.ID}
 
Last edited:
SO there no way I can do something like Cond6=!${Mainassist.Buff[Unfettered Growth].ID} on my shaman for Cond, I just don't want my shaman to keep casting each fight if my Tank Don't need it
 
You can only access the Buff Member from ${Me} or ${Target}. You can access your pet's buffs as well, but that's not in the scope of this question.

${Me.Buff[Unfettered Growth].ID} or ${Target.Buff[Unfettered Growth].ID}

We were working on a way to ask a character if they had a buff and have them return the ID or zero, but the plugin we tested had too many issues and would hang up a lot.
 
You can only access the Buff Member from ${Me} or ${Target}. You can access your pet's buffs as well, but that's not in the scope of this question.

${Me.Buff[Unfettered Growth].ID} or ${Target.Buff[Unfettered Growth].ID}

We were working on a way to ask a character if they had a buff and have them return the ID or zero, but the plugin we tested had too many issues and would hang up a lot.

This would be an amazing plugin!
 
SO there no way I can do something like Cond6=!${Mainassist.Buff[Unfettered Growth].ID} on my shaman for Cond, I just don't want my shaman to keep casting each fight if my Tank Don't need it
you could try:
Code:
DPS1=Unfettered Growth|99|MA|cond6
Cond6=${Target.ID} && ${Target.BuffsPopulated} && !${Target.Buff[Unfettered Growth].ID}
or
Code:
DPS1=Unfettered Growth|99|MA|cond6
Cond6=${Target.ID}==${Group.MainAssist.ID} && ${Target.BuffsPopulated} && !${Target.Buff[Unfettered Growth].ID}
The second one would require that you set the main assist role in your EQ group window
 
Thanks everyone, I am stilling learning everything and comes to that kind of thing I am not good, I been making mine own up off others and doing mine own thing but I couldn't find one for this
 
Last edited:
Question - Cond question

Users who are viewing this thread

Back
Top
Cart