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

plink

Member
Joined
Dec 12, 2005
RedCents
188¢
With the Anniversary tasks back in for a while I'm getting the Horn of Unity on all the toons and trying to come up with a way to get the full potential out of the clicks. I don't have even the slightest clue of where to start but I have an idea about how to make them fire if someone could put the idea into code that would be amazing. Maybe it could be added as a toggle within kiss? UnityHorn=off/on?

Anyone got an idea of how to stagger them within kiss so they are cast 1 after the other without overlapping? Or maybe at like every 10% starting at 90% mana on any toon? Say ToonA casts it when ToonZ hits 90 then they all go to 95. Have ToonB cast when ToonZ hits 90 again and they stay at 90 due to whatever reason. Have ToonC casts when ToonY's current Unity drops and is still at or below 90.
 
I just did this the other day, and farmed unity too for my whole group..

So here's what i do, its a holy for my melee guys, and a down for my caster/support guys

Rich (BB code):
holyshit4=/if (${Me.Combat} && ${Target.Named} && !${Bool[${Me.Song[Blessing of Unity].ID}]}) /useitem Miniature Horn of Unity

Seems to work well.. also, adjust for when you wanna use.. i just keep for named, due to the short (30sec) duration..

Cheers!
 
Thanks! That'll work in the interim.

Using that and setting each toon at a dif percent would only fire if they hit that defined percent so I don't think it would be utilizing them to their full advantage. Since it's a group buff, I wouldn't want them all using it at the same time to get the max potential out of the clicks. I'm that OCD/anal guy who has to utilize everything to it's fullest :)
 
Well, this will check a-is the buff up? and for me when i wanna use it - in combat, and fighting named.. so, 6 guys all with same exact criteria, they all checking to see if up before using... that way there's no overlap or waste..

i'm not exactly sure what you want to do more with it, but when you build yours, please post it here, I'm always looking for improvements! :)
 
With the way my luck goes, my guys will all run that check at the same time and see that it's not up and then click it simultaneously. I have the absolute worst luck when it comes to shit like that.
 
Fairly sure I've used netbots to check the ready status of an item of other toons connected to eqbc. I can't find the proper syntax currently, so I may just be misremembering. You can try using netbots with something like ${Netbots[ToonX].Cast.Ready[Miniature Horn of Unity]}. If this is possible, you can set up a holy/down like:

Rich (BB code):
/if (check && check && check && ${Cast.Ready[Miniature Horn of Unity]} && !${Netbots[ToonX].Cast.Ready[Miniature Horn of Unity]}) /useitem Miniature Horn of Unity


If that syntax isn't possible and you want to make it 100% that you won't be using it on multiple chars at once (chance of this is already really low), you could just declare a variable and have your toons turn that variable on for the next toon.

For the first toon in rotation:
Rich (BB code):
downshitx=/if (!${Defined[UnityCheck]}) /declare UnityCheck int global 1

For the rest of your rotation:
Rich (BB code):
downshitx=/if (!${Defined[UnityCheck]}) /declare UnityCheck int global 0


Will need to adjust the "NextToonInRotation" for each toon to cycle through your group and have the last in rotation return it to #1 in rotation, and also adjust whether it's a down or holy depending upon class.
Rich (BB code):
holyshitx=/if (check && check && check && ${UnityCheck}==1) /multiline ; /useitem Miniature Horn of Unity ; /bct NextToonInRotation //varset UnityCheck 1 ; /varset UnityCheck 0
 
if you didnt know, you can farm this item... dont do final hail at end.. chest will be able up (if no mobs escaped to PoK)... drop task open chest. loot horn... no timer... same as Droga/Lcea/Korsha hero mission
 
Request - Horn of Unity

Users who are viewing this thread

Back
Top
Cart