• 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 - Synergy - Healers

Sog

New member
Joined
Jun 6, 2015
RedCents
70¢
Is there a way to get my cleric/Druid to cast the group heal without the group taking damage? I want to trigger their synergy's, but can't get it to work decently. The single target heal always takes over.

Thanks looking.
 
Maybe a condition that looks to see if caster is missing the song window buff. If you're running it in heals, instead of DPS, you'd also want to see if you're in combat so you don't spam it during med breaks. Group heals should trigger if the group avg health drops below your heal percent. Try 99 and I think it will trigger often.

Code:
Heals1=Lunasalve|99|cond1
Cond1=${Me.CombatState.Equal[COMBAT]} && !{Me.Song [Preserver's Synergy].ID}

Might require some playing around if you have zerkers with the health limit debuff or such. If you want to go more advanced, you could also add a MA health check via Dannet or Netbots so you'd priority heal the MA instead of trying to refresh the heal boost.

If that's still not working, you could look into making it a holy in mq2melee.
 
Maybe I’m crazy... but I don’t think group heals work on healer alliance. At least the SHM

edit: nvm , I just saw synergy, not alliance
 
Thanks Eqtrader 74. I am not good at scripting, I'll try that with the Cond and report back.
 
Itdid cast the spell, but only twice in like 10 mobs pulled. I think I wasted 1200 AA on my cleric and druid if this can't be automated :(
 
I thought DPS too, but if somebody needs a heal then [Heals] always takes priority over a DPS entry. Maybe doing both would work.

Sog - Post your heal section, maybe we can tweak the other heals to be lower priority than casting Lunasalve (or whichever you're using to proc synergy) Do you want it to always do the synergy as top priority? If you you could potentially stick conditions on all the other heals that say "only cast if I have synergy or Lunasalve is on coodown."
 
Thanks guys. I never considered putting it under DPS as a heal. I can make this work now. Very much appreciated.
 
Does this look correct? Seems to be working.

Cond8=${Me.CombatState.Equal[COMBAT]} && !{Me.Song [Templer's Synergy III].ID} && !{Me.Song [Preserver's Synergy III].ID}
 
Cleric and druid in same group? Since you're checking for both you may want an or instead of and.

You can drop the "III" if you want, ID will take partial matches. That way you don't have to update it in a couple years when next level of the aa comes out.
 
The cond is not working, it recast as soon as it refreshes and weather the druid or cleric bard buff is up; plays no factor. To control it better I set it to do as a |Once at 2 intervals on the cleric, and 2 different intervals on the druid. That works for group mobs. I will see what i can figure out for named.

If you have any ideas on the Cond and why that don't work I am game to try anything.
 
Ahh yes Or might work. Now for the syntax. What is or syntex, and does the brackets look like this?

Cond8=${Me.CombatState.Equal[COMBAT]} && {!{Me.Song [Templer's Synergy III].ID} or !{Me.Song [Preserver's Synergy III].ID}}
 
the "or" operator is represented by two vertical lines || Those are not capital i's, those are the lines on the backslash key.
Code:
Cond8=${Me.CombatState.Equal[COMBAT]} && (!${Me.Song [Templer's Synergy].ID} || !${Me.Song [Preserver's Synergy].ID})
 
Getting a lot of white kissassist text and Red "no such character member song"
 
Yes, that took care of the error, but the Cond does not work. They both recast as soon as refreshed.
 
Question - Synergy - Healers

Users who are viewing this thread

Back
Top
Cart