• 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 - Miniature Horn of Unity

Gnits

Active member
Joined
Mar 24, 2017
RedCents
674¢
I have gotten the item for all of my group, however, they all trigger this at once.

I want each of them to cast it when someone is below 75% and the buff is not present.

Anyone have this working?

Gnts
 
This is the condition that is in eqmule's wizard ini:
Rich (BB code):
DPS9=Miniature Horn of Unity|99
DPSCond9=${Cast.Ready[Miniature Horn of Unity]} && !${Me.Song[Blessing of Unity].ID} && ${Me.PctMana} < 85




It checks the horn's cooldown, for the song buff and if the user is under 85% mana. If you have multiple toons of the same class/ini, you may want to stagger the mana percentage across those ini files.


If you're using the KA buffs "groupmana" check, that may have a bug in the latest KA version. My bard fires all "groupmana" checks constantly, regardless of the groups mana levels.
 
I am curious, why is this in the DPS section?

I use mine in the DPS section too.. why would you wanna fire this off in non-combat? its only like 30sec if that..

its just getting all the toon's ones to work together in coordination..
 
It does give a 600 dmg shield + a spell dmg shield, which are likely wasted if you run it in the Buffs section. Plus some ini's are designed for chainpull, where you may not get a break for a bit if you're waiting for the Buff routine.

You could put it in both though. Being in Buffs is good if you want to click it on rez recovery too.
 
It does give a 600 dmg shield + a spell dmg shield, which are likely wasted if you run it in the Buffs section. Plus some ini's are designed for chainpull, where you may not get a break for a bit if you're waiting for the Buff routine.

You could put it in both though. Being in Buffs is good if you want to click it on rez recovery too.

Yeah if you have a situational reason, bang on..


BTW guys, they are nerfing this reward.. ITs going the way of the rest - gotta complete the mission before getting chest reward..

So.. if you need it on multiple toons, get it NOW, before next Wednesday's live patch... You can still do the quest as far as getting chest to spawn, open chest (not loot), drop task, get horn.. redo no lockout.. but next week, it'll conform to the new rules..
 
OK, I have this on all 6 of my toons in my group, and one is a Zerker. That toon has no mana. Also when done in a DPS section, it has no way of checking if ANYONE in the group is below say 85% mana. (unless there is a condition I am not aware of that will do that).

My goal is simple, I want one of my toons to use it any time a group member is below 85 mana and it is ready and not already on the group.
 
Something like this? I expect you want the complete condition on a single line (no idea how MQ handle new lines in the middle of logic conditions!)

Rich (BB code):
DPSCond9=${Cast.Ready[Miniature Horn of Unity]} && !${Me.Song[Blessing of Unity].ID} 
&& ((${Group.Member[0].ID} && ${Group.Member[0].Type.NotEqual[corpse]} && ${Group.Member[0].CurrentMana} > 0 && ${Group.Member[0].PctMana} < 85) ||
(${Group.Member[1].ID} && ${Group.Member[1].Type.NotEqual[corpse]} && ${Group.Member[1].CurrentMana} > 0 && ${Group.Member[1].PctMana} < 85) ||
(${Group.Member[2].ID} && ${Group.Member[2].Type.NotEqual[corpse]} && ${Group.Member[2].CurrentMana} > 0 && ${Group.Member[2].PctMana} < 85) ||
(${Group.Member[3].ID} && ${Group.Member[3].Type.NotEqual[corpse]} && ${Group.Member[3].CurrentMana} > 0 && ${Group.Member[3].PctMana} < 85) ||
(${Group.Member[4].ID} && ${Group.Member[4].Type.NotEqual[corpse]} && ${Group.Member[4].CurrentMana} > 0 && ${Group.Member[4].PctMana} < 85) ||
(${Group.Member[5].ID} && ${Group.Member[5].Type.NotEqual[corpse]} && ${Group.Member[5].CurrentMana} > 0 && ${Group.Member[5].PctMana} < 85))

As mentioned above, you'd probably want each member in the group to use a different value to 85 (e.g. 85, 82, 79, 76, 73, 70) so they dont all click at once.
 
Question - Miniature Horn of Unity

Users who are viewing this thread

Back
Top
Cart