• 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 - Dispelling

Joined
Nov 4, 2013
RedCents
102¢
so I snagged some dispelling code from someone here - cant find the original code but it had some spells to stop it from dispelling. I"m assuming they're beneficial buffs that can't be dispelled, so to stop the caster from dispelling over and over..

holyshit1=/if (${Target.Beneficial.ID} && ${Target.CurrentHPs}<=${mobhealth} && !${Me.Sitting} && !${Me.Invis} && !${Me.Moving} && ${Me.AltAbilityReady[Eradicate Magic]}) /alt act 547

is there some kind of TLO or some kinda code that would look to see if the buff is not removable?
 
I would be interested in knowing what Beneficial spell can NOT be dispelled. The new debuff routine allows for dispelling and if there are spells that can't be dispelled I would like to know of one..
 
Off the top of my head, the buffs on Velishan that block magic, or fire, or ice... events in cotf have some mobs that have a damage mitigation buff that can't be dispelled.. there's lots more instances like that.
 
Off the top of my head, the buffs on Velishan that block magic, or fire, or ice... events in cotf have some mobs that have a damage mitigation buff that can't be dispelled.. there's lots more instances like that.

I will have to do some research on this. If anyone knows any specifics about this please let me know. I want to make sure I add the needed checks to the debuff routine to not keep trying to debuff a mob if the buff can't be dispelled.
 
/if (${Target.Beneficial.ID} && !${Target.Beneficial[38728].ID} && !${Target.Beneficial[38727].ID} && ${Target.CurrentHPs}<=${mobhealth} && !${Me.Moving} && ${Me.AltAbilityReady[Eradicate Magic]}) /alt act 547

that would be mine, you would need to change a few things to make it work outside eoknuke
like this

Rich (BB code):
/if (${Target.Beneficial.ID} && !${Target.Beneficial[38728].ID} && !${Target.Beneficial[38727].ID} && ${Target.CurrentHPs}<99 && !${Me.Moving} && ${Me.AltAbilityReady[Eradicate Magic]}) /alt act 547
 
that would be mine, you would need to change a few things to make it work outside eoknuke
like this

Rich (BB code):
/if (${Target.Beneficial.ID} && !${Target.Beneficial[38728].ID} && !${Target.Beneficial[38727].ID} && ${Target.CurrentHPs}<99 && !${Me.Moving} && ${Me.AltAbilityReady[Eradicate Magic]}) /alt act 547

I ran out of thanks, So you will just have to settle on a regular. Thank You! I will add this to my version kissassist and should be added the next time me and Maskoi compare notes.
 
Question - Dispelling

Users who are viewing this thread

Back
Top
Cart