• 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 - Stopcast heal at percentage hp?

Joined
Oct 11, 2014
RedCents
1,387¢
I was wondering if there was a way to stopcasting a heal if target gets healed before mine finishes. I didn't find any TLO to state if casting "X" heal spell and target is @ "X%" stopcast/duck/jump. This would help alot in raid situations. Thanks for anyhelp.
 
So i think I figure it out. Though I need another healer to heal my character above 70 while cast is happening. haven't had a chance to test that. Here is the start to the macro.

Edit: I tried as downshit and holyshit but they don't seem to work while casting.
Edit2: Decided to try MQ2React and that worked. So decided to not re-invent the wheel. The code base below is based on MQ2React now.


YAML:
globals:
  BH: Complete Heal
  BHP: 70
  NH: Healing Light
  NHA: 801
reacts:
  BigHealing:
    action: >-
      /multiline ; /g Canceling ${React.Global[BH]} on ${Target.Name},
      Not Enough Missing HPs ; /stopcast
    condition: >-
      ${Cast.Effect.Name.Equal[${React.Global[BH]}]} && ${Target.PctHPs}
      > ${React.Global[BHP]}
  NormalHealing:
    action: >-
      /multiline ; /g Canceling ${React.Global[NH]} on ${Target.Name},
      Not Enough Missing HPs ; /stopcast
    condition: >-
      ${Cast.Effect.Name.Equal[${React.Global[NH]}]} && ${Target.MaxHPs}
      - ${Target.CurrentHPs} < ${React.Global[NHA]}
 
Last edited:
KissAssist has the ability to interrupt heals when the target's HP goes above the HealAt % marked for the entry. You have to be using kiss 12 and have CastingInterruptOn turned on.
 
KissAssist has the ability to interrupt heals when the target's HP goes above the HealAt % marked for the entry. You have to be using kiss 12 and have CastingInterruptOn turned on.
Thanks I am still on 11. I saw the inturrupt option but never saw it work. Thanks for the feedback. I should try moving to 12.
 
Question - Stopcast heal at percentage hp?

Users who are viewing this thread

Back
Top
Cart