• 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 - Shaman / Druid 96% rez

Joined
May 14, 2016
RedCents
1,052¢
Trying to get this working properly. Call of the Wild works as intended as a Combat Rez. My issue is I'm running a full group now, and don't have a cleric merc to auto rez out of combat. I want the Shaman (or druid) to auto rez if they are out of combat and a group corpse is close.

I added a check to the pull routine in KA, so if there are any group corpses close, it will not pull anything. I have setup the downshit below on the Shammy. It works great. But targeting the specific individual named corpses is not how I want it. /target corpse may target NPC corpses. I can't figure out how if it's possible to target a PC corpse, or even better a group member PC corpse. I can do it in a macro, but dont think I can loop through group members in a downshit. Currently I have it manually targeting everyone in the group's corpse explicity. I would like to make it so it doesnt matter who is in the group. Currently it works great, but specific to my group.

downshitX=/if (${Me.CombatState.Equal[RESTING]} && ${Me.AltAbilityReady[Rejuvenation of Spirit]} && (${SpawnCount[group corpse radius 100]}>=1) && !(${DMZ} && ${Me.InInstance}==FALSE) || ${Me.Hovering} || (${Me.Invis} && !${AggroTargetID})) /multiline ; /squelch /target ???'s corpse ; /squelch /target ???'s corpse ; /alt act 2051

So, is there a way to target only Group corpses? (Don't really care which corpse, I want to rez them all if group corpse)
 
Are there other PC corpses in your area? The reason I ask, is because you should be able to do /target pc corpse instead of someones name. Another idea would be to include in a different downshit the command /hidecorpse allbutgroup. This would hide any NPC corpse and allow your character to only target group members corpse.

Rich (BB code):
downshitX=/if (${Me.CombatState.Equal[RESTING]} && ${Me.AltAbilityReady[Rejuvenation of Spirit]} && (${SpawnCount[group corpse radius 100]}>=1) && !(${DMZ} && ${Me.InInstance}==FALSE) || ${Me.Hovering} || (${Me.Invis} && !${AggroTargetID})) /multiline ; /squelch /target pc corpse ; /alt act 2051
 
Let me give that a try. I didnt want to do pc corpse, in the event some other corpse shows up (for whatever reason), but I never thought of hiding all non-group corpses.
 
Question - Shaman / Druid 96% rez

Users who are viewing this thread

Back
Top
Cart