• 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 - Auto CoTH

Joined
Oct 19, 2014
RedCents
454¢
I have been trying to make a condition that would CoTH if my puller is out of camp and say, her HP drops below 80%. Will someone please show me how to do this? I am trying something like
Cond10=${Target.PctHPs} > 80 && {Target.Dist} > 50
 
Last edited:
Hmm. Not sure if this will work, but I believe you would need to set the puller on xtarget in order for this to happen? I don't think the mage will otherwise understand to target the puller, especially since it's outside of the camp radius by conventional KA logic.

I would take a look at this: https://www.redguides.com/community/resources/mq2xassist.922/

So what you want to do first is set the puller on the mage's xtarget (extended target window). Something along the lines of:

/xtarget set 1 nameofpuller

Now that your puller is set to slot 1 of your extended target. You can do something like this:

cond10=${XTarget[1].PctHPs} < 80 && ${Me.XTarget[1].Distance} > 75

This line will check that your xtarget in slot 1 (aka your puller) is below 80 percent and check that your distance from the xtarget in slot 1 is greater than 75 units.

See if it works I guess.

My one issue with this though is what if the puller is in fact only bringing back one mob and still hits below 80 percent (ie: it's pulling a named)? Do you want the puller to continue to try and bring it? Or not? If you do, then you would need to improvise further on the conditional line to check against more than one mob on the extended target window and modify cond10 further to include it. Perhaps something along the lines then of:

cond10=${XTarget[1].PctHPs} < 80 && ${Me.XTarget[1].Distance} > 75 && {Me.XTarget} > 2

I put greater than 2 on the xtarget in this example since the puller is considered one of the xtargets already while anything else will be the mobs appearing on your extended window.
 
Last edited:
Thank you so much for replying! I will play with this today and see if I can get it to work. Yes Evelyn, specifically, If i pull a named and he taps me I want to get a CoTH back. Typically I play my SK/Puller, so I just FD it off and ask for CoTH. But since I came back I am playing my cleric as my main and pretty much ignoring my puller while he pulls. (Want to group with cleric, trying to learn the class without MQ!)
 
Not sure where you are at with this. but there was a similar inquiry on a separate thread. I am assuming you're puller is the MA, too? If not the buff line can be reworked to something else.

In your buffs, you can do something like this:
Buffs1=Call of the Hero|MA|Cond1

And then add a conditional with this:
Cond1=${Target.Distance} > 75 && {Me.XTarget} > 1

This worked for me when I was just checking the distance part with a tank in guild lobby. I did not test it with the xtarget part though.

This way you don't have to bother setting xtargets anymore since it will just your MA grp target instead. Will check instead if there is more than 1 mob on the xtended target if you are using all the slots as auto.
 
Request - Auto CoTH

Users who are viewing this thread

Back
Top
Cart