• 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 --->
  • The 32nd expansion, Shattering of Ro, is here and EverQuest (live servers) were patched with the newest expansion, SOR so brainiac has been spending his time updating MacroQuest. Please show him your appreciation. Thanks brainiac!
RezzMyRaid

Utility RezzMyRaid 0.1

Download now:  Join us with Level 2 access or earn your way in with  RedCents.
Other Authors
william12
Server Type
🏢 Live 🏘️ Emu TLP Test
Hi,

as I am boxing 24 chars and wipe very often (I am a noob...) I have made a small rezz macro for a cleric with his epic.
But can be easily adjusted for a spell. As I am on Progression Server the Cleric epic was the best I could use.

If you like it you can use it... tips for enhancements welcome

Rich (BB code):
| RezzMyRaid Ver 0.1
| This is the first version of a macro that summons and rezzes all corpses nearby
| If corpses are to far away to summon or you don't have consent they will not be rezzed
|
| The macro will hang forever if the nearest corpse  cannot be ressed...
| so make sure you have your /rez accept on for all chars :) and dragged them in range
| On the other hand you have time to get the next corpse with your Rogue :)

Sub Main
    /declare Ver                string          outer   0.1
    /declare ResSpell           string          outer   "Reviviscence"
    /declare MyTargetID         int                 outer       0
   
    /echo I am a ${Me.Class.Name}
    /echo I am ${Me.Name}
    /if (!${Select[${Me.Class.Name},Cleric]}>=1) {
        /echo You need to be a cleric
        /end
    }


      :startrezz
  
            /tar pccorpse
            /delay 10
            /corpse
            /delay 10
            /call RezzCorpse
         /goto :startrezz

/return

Sub RezzCorpse
      /varset MyTargetID ${Target.ID}
      /if (${Spawn[${MyTargetID}].Type.Equal[Corpse]}) {
                /if (${Target.Distance}<50) {
                        /echo Ressing ${Target.Name}
                        /cast item "Water Sprinkler of Nem Ankh"  
                        /delay 200
                } else {
                    /echo Corpse ${Target.Name} to far away... cannot do anything
                    /delay 100
                }
            } else {
            /echo No valid corpses found ending!
            /end
      }
/return
Author
eqtrader63
First release
Last update
Rating
0.00 star(s) 0 ratings

More resources from eqtrader63

Share this resource

Back
Top