• 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

Area Check, and Heal Macro

Devlin

Active member
Joined
May 22, 2006
RedCents
140¢
I have a short Request.


I'm wondering (if it's possible) if anyone could make me a macro that if " Player X, Player Y, Player Z, Player A, Etc " are in a radius of 140~ or so and below 60% health it would target them, and cast a heal spell.


Unfortunatly, It would be best that this be made NOT having it rapidly cycle PC's to keep checking for HP ( since this would be suspicious if someone was watching you with HoTT )



Thank you, and if you need anymore information let me know
 
that would be awesome... I use a cleric bot to pl me and my wife but can only be targeted on one toon. To not have to worry about this would be awesome.
 
Something like this?

Rich (BB code):
Sub Main
:loop
/call Mana
/call Heal1
/call Heal2
/call Heal3
/goto :loop

Sub Heal1

/target player1
/delay 4
/if (${Target.Distance}<140) && (${Target.PctHPs}<60) {
/goto :heal1
} else {
/return
:heal1
/cast "Complete Healing"
/cast "Complete Healing"
/delay 10s
/return

Sub Heal2

/target player2
/delay 4
/if (${Target.Distance}<140) && (${Target.PctHPs}<60) {
/goto :heal2
} else {
/return
:heal2
/cast "Complete Healing"
/cast "Complete Healing"
/delay 10s
/return

Sub Heal3

/target player3
/delay 4
/if (${Target.Distance}<140) && (${Target.PctHPs}<60) {
/goto :heal3
} else {
/return
:heal3
/cast "Complete Healing"
/cast "Complete Healing"
/delay 10s
/return

Sub Mana

/if (${Me.PctMana}<20) {
/goto :med
} else {
/return
}
:med
/tell Player1 Low mana medding
/tell Player2 Low mana medding
/tell Player2 Low mana medding
/delay 1m
/return

Havent tested it but should do what your asking.

N
 
Wow, thanks Pugs. That would work PERFECT.. except for

" One issue is if someone is using HOTT and targets your cleric they will see your target changing rapidly "


:(
 
Or:
I'm just leery of any macro that hits the servers more times per second than any human reasonably can. And I still can't believe you're getting that many HP updates in the span of a second
 
Area Check, and Heal Macro

Users who are viewing this thread

Back
Top
Cart