• 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

Request - how to building Mag's INI when 3 Mags in a same group?

hansshen

New member
Joined
May 19, 2019
RedCents
anyone help ? when 3 Mag's inGroup we want trigger Alliance ?how we do can let work?
 
If you're using the 110 Firebound Covenant, just swap out the names in the dps entries and conditions.

Take a look at jande's 105 FTP mage which does the Firebound Alliance in dps.

Code:
[DPS]
DPS27=Firebound Alliance|93|cond16
[KConditions]
Cond16=${Target.PctHPs} > 60 && !${Target.Buff[Firebound Alliance].ID}

Adding that to all 3 mages would work. They'd wait until the mob was below 93% (from dps entry) but above 60% (from cond16) and double check one of the other mage's didn't already land Alliance on the mob (cond16's ! check)

So you'll get probably 1 mage's alliance off on trash, the health % restriction would keep it from firing again.

Alliance is pretty expensive mana-wise though, so you may want to restrict it to named only ${Target.Named} or include a mage mana check ${Me.PctMana}>50 to keep the same mage from using it every time and triggering a med break. If the same 3 mages are always grouped, you can just leave it at that. But if you mix your groups up then you might want to add some code to the condition that checks to make sure there are at least 3 mages around before casting Alliance.

Perhaps something like this for the condition: (Use alliance on trash if mage above 50% mana) or (Use alliance on Named mobs assuming the named has at least 20% health left)
Code:
[DPS]
DPS27=Firebound Alliance|98|cond16
[KConditions]
Cond16=(!${Target.Buff[Firebound Alliance].ID} && ${Target.PctHPs}>60 && ${Me.PctMana}>50) || (${Target.Named} && !${Target.Buff[Firebound Alliance].ID} && ${Target.PctHPs}>20)
 
Last edited:
Request - how to building Mag's INI when 3 Mags in a same group?

Users who are viewing this thread

Back
Top
Cart