• 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

Rezraid Macro

Mochila

Member
Joined
Aug 31, 2005
RedCents
30¢
Rich (BB code):
|Rezraid.mac
|By Mochila 

#event OutOfRange "Your target is out of range, get closer!#*#" 

Sub Event_OutOfRange
:goto loop

Sub Main

  /declare Raidlist[72] string outer NULL
  /declare raidnumb int outer 1
  /declare numbinraid int outer 0
 
  /varset numbinraid ${Raid.Members}

:loop
   /if (${raidnumb}<${numbinraid} || ${raidnumb}==${numbinraid}) {     
     /varset Raidlist[${raidnumb}] ${Raid.Member[${raidnumb}]}
   /target ${Raidlist[${raidnumb}]}'s corpse
   /itemnotify mainhand rightmouseup
   /delay 10.1s
   /varcalc raidnumb ${raidnumb}+1
   /goto :loop
   /if (${raidnumb}>${numbinraid}) {
   /target clear
   /delay 2
   /echo Done rezzing the raid.
}

/return

Will add more later, gotta sleep bad ><
 
Last edited:
Usage of this macro is when a rogue has dragged all the corpses nearby to you for a rezz, run this and it will autorezz everyone in raid if they are dead, starting in order. If the target corpse is out of range it will pick a new target. To run the macro in its current state you need:

1. Cleric Epic
2. Cleric epic equipped in Primary slot before you activate the macro
3. Be standing still, and in range of a majority of the corpses.

If you don't have cleric epic 1.0 and would like to use spells replace
Rich (BB code):
/itemnotify mainhand rightmouseup
with
Rich (BB code):
/cast "Resurrection"
or
Rich (BB code):
/cast "Revivscience"

You must have the specified spell memorized into a spell gem before triggering the macro. It can be any spell , just make sure you have the name typed correctly inside quotes.

Edit: Anyone have any requests of something to add to this? Or any raid based macro's for that matter...besides character automation (I.e. playing your character through a whole raid)
 
Last edited:
Rezraid Macro

Users who are viewing this thread

Back
Top
Cart