• 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! 👋

Question - Heal Settings

Joined
Jan 5, 2016
RedCents
659¢
Could i see someones heal settings for cleric? I am on frostreaver so a profile close to that. In a group setting my cleric is just running oom so fast.
 
On TLP i put a little math and look at hp to heal amount and just convert. 1400 light heal on 6k tank to hit back to 85% should be about 70% life also accounting for dmg while casting.
 
You can also add in a react to cancel any heals if the tank is healthy. This happens when two people heal a target at once, the first heal lands, the second heal lands for but essentially 0 hps healed, nad uses al mana.

Code:
  CancelHealIfTargetHealthy:
    action: /stopcast
    condition: >-
      ${Me.Casting.ID} && ${Target.ID} && ${Target.PctHPs}>=92 && ${Me.CastTimeLeft.TotalSeconds}<=1
      && ${Me.Casting.Name.Equal[Remedy]} || ${Me.Casting.ID} && ${Target.ID}
      && ${Target.PctHPs}>=92 && ${Me.CastTimeLeft.TotalSeconds}<=1 &&
      ${Me.Casting.Name.Equal[Divine Light]} || ${Me.Casting.ID} && ${Target.ID}
      && ${Target.PctHPs}>=92 && ${Me.CastTimeLeft.TotalSeconds}<=1 &&
      ${Me.Casting.Name.Equal[Chloroblast]} || ${Me.Casting.ID} && ${Target.ID}
      && ${Target.PctHPs}>=92 && ${Me.CastTimeLeft.TotalSeconds}<=1 &&
      ${Me.Casting.Name.Equal[Nature's Touch]}
 
You can also add in a react to cancel any heals if the tank is healthy. This happens when two people heal a target at once, the first heal lands, the second heal lands for but essentially 0 hps healed, nad uses al mana.

Code:
  CancelHealIfTargetHealthy:
    action: /stopcast
    condition: >-
      ${Me.Casting.ID} && ${Target.ID} && ${Target.PctHPs}>=92 && ${Me.CastTimeLeft.TotalSeconds}<=1
      && ${Me.Casting.Name.Equal[Remedy]} || ${Me.Casting.ID} && ${Target.ID}
      && ${Target.PctHPs}>=92 && ${Me.CastTimeLeft.TotalSeconds}<=1 &&
      ${Me.Casting.Name.Equal[Divine Light]} || ${Me.Casting.ID} && ${Target.ID}
      && ${Target.PctHPs}>=92 && ${Me.CastTimeLeft.TotalSeconds}<=1 &&
      ${Me.Casting.Name.Equal[Chloroblast]} || ${Me.Casting.ID} && ${Target.ID}
      && ${Target.PctHPs}>=92 && ${Me.CastTimeLeft.TotalSeconds}<=1 &&
      ${Me.Casting.Name.Equal[Nature's Touch]}
This is not any rgmercs format.
 
Question - Heal Settings

Users who are viewing this thread

Back
Top
Cart