• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

afcleric help (1 Viewer)

Gore

New member
Joined
Jun 22, 2007
RedCents
Please tell me how to make this not heal corpse's

If not sure if this is enough for you to work with , it wouldnt let me paste entire mac here but i think this is the sec. that needs to be changed

Rich (BB code):
 :loop 
/if (${GameState.Equal[CHARSELECT]}) /end
/if (!${Spawn[${tanknameid}].ID} || ${Spawn[${tanknameid}].Type.Equal[NPC]}) /call TankCheck
/if (!${Target.ID} || ${Target.ID}!=${tanknameid} && ${Spawn[${tanknameid}].Type.NotEqual[Corpse]} && ${Spawn[${tanknameid}].ID}) {
/target id ${tanknameid}
/delay 5 ${Target.ID} == ${tanknameid}
}
/doevents
/if (${Me.Invis} || ${Following} || ${Me.Buff[Divine Aura].ID} || ${Me.Buff[Sacred Barrier].ID} || ${Me.Buff[Divine Barrier].ID}) /goto :loop
/if (${Me.PctHPs} > ${selfhealpoint} && ${Me.PctMana} < 95) /call MedTime
/if (${Target.ID}==${tanknameid} && ${Target.Type.NotEqual[corpse]}) {
/if (${Target.Distance} <= ${patchhealrange} && ${Target.PctHPs} <= ${healpct}*.7 && ${Me.SpellReady[${patchheal}]}) {
/if (${announce}) /${AnnounceChannel} Casting "${patchheal}" on ${Target.CleanName} in ${Spell[${patchheal}].CastTime} seconds!
/call Cast "${patchheal}" ${patchhealgem} 0 CheckHP
} 
/if (${Target.Distance} <= ${healspellrange} && ${Target.PctHPs}<= ${healpct} && ${Target.PctHPs} >= ${healpct}*.7 && ${Me.SpellReady[${healspell}]}) {
/if (${announce}) /${AnnounceChannel} Casting "${healspell}" on ${Target.CleanName} in ${Spell[${healspell}].CastTime} seconds!
/call Cast "${healspell}" ${healspellgem} 0 CheckHP
 
Last edited by a moderator:
Change
Rich (BB code):
/if (${Target.ID}==${tanknameid} && ${Target.Type.NotEqual[corpse]}) {
to
Rich (BB code):
/if (${Target.ID}==${tanknameid} && ${Target.Type.NotEqual[Corpse]}) {

MQ2 is all case-sensitive ;)
 
afcleric help

Users who are viewing this thread

Back
Top