• 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 - Looking for a COH Macro

Joined
Jun 16, 2017
RedCents
140¢
I am looking for the ability to press a button, then my mag coh's everyone to me in the group.

TLP server, so no group COH yet.

Real world example - running over the invisible wall in Plane of Fire. I want to run my mag over the wall, then press a button. The mag will target anyone not close to me, coh to me, adn continue to coh everyone in my group until everyone is close. Then, i will manually pause macro (or end), move mag to next group, and start it up again.

I've looked here and can't find a macro to do this, even though I'm pretty sure it already exists, i just cant' find it.
 
been meaning to help around here, so here goes. easy enough to toss this together. just wrote and tested. did get to find the gem flag on cast ready! kept checking my aa i suppose.

Sub Main
/declare igroup int
/varset igroup 0
:CoTHLoop
/varcalc igroup ${igroup}+1
/if (${igroup} == 6) /call Done
/target ${Group.Member[${igroup}]}
/while (!${Cast.Ready[Call of the Hero|gem]}) {
/delay 2
}
/if (${Cast.Ready[Call of the Hero]}) {
/cast Call of the Hero
/echo CoTH ${Target.CleanName}
}
/while (${Me.Casting.ID} > 0) {
/delay 2
}
/goto :CoTHLoop
/return
Sub Done
/echo all done
/end
/return
 
picked this one up here years ago, wish i could remember original author.


Sub Main
/declare j int local
/declare cothversion string outer 0.4AA
/echo Loading coth. Version ${cothversion}
:loop
/doevents
/delay 5
/for j 0 to ${Group}
/if (${Spawn[${Group.Member[${j}]}].Distance}>200) {
/target pc ${Group.Member[${j}]}
/alt act 7050
/bc Cothing >>> ${Group.Member[${j}].CleanName}
}
/if (!${Me.Casting.ID} && ${Me.AltAbilityReady[Call of the Hero]}) /next j
/goto :loop
/return
 
Request - Looking for a COH Macro

Users who are viewing this thread

Back
Top
Cart