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

Release RezzMyRaid 0.1

No permission to download
Joined
Jun 1, 2016
RedCents
546¢
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
 
if your cleric has his epic you can use it anywhere...

It will just target next corpse summon it if he has consent and then will rezz it with the epic rezz if ist in range.
 
Mq2heals already does this. You just put the epic name in the rezwith= line

- - - Updated - - -

I play on TLP and had rezzed raids using it, so i know it works fine. I would type /mac kissassist manual, and it would click everyone for me. But I left it off for raids otherwise.
 
great macro for 30 + toons :)

I made changes to use AA on live servers. Also to make it tell everyone in eqbc to consent your cleric.

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}
    /bcaa //consent ${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]} && ${Me.AltAbilityReady[Blessing of Resurrection]}) {
				/if (${Target.Distance}<50) {
						/echo Ressing ${Target.Name}
						/alt act 3800	
						/delay 5s
				} else {
					/echo Corpse ${Target.Name} to far away... cannot do anything
					/delay 100
				} 
			} else {
    		/echo No valid corpses found ending!
    		/end
      }
/return
 
@Frimp

I was never able to get Mq2Heals heal good enough for me on TLP. That's why I used kissassist.
Can you send me the ini of your clerics on TLP?


And there is one more thing on that macro...It does a /corpse to summon all corpse as near as possible to avoid adds in a dangerous area to ress.

So whenever I wipe I start the macro and go afk for a while.

And one more thing: I personally added two lines at the beginning to rezz my preferred chars first... the ones that I drive all my commands.

Anyways thx for the Infos Frimp.
 
The reason why I asked is that you may as well just use the AE Rez and be done with it if your on Live servers
 
I used to swear by the epic, but the cast time..... uuuuuuggh! Now I just alrernate between the excellent AA rez and the regular cleric 96% rez spell....
 
@Frimp

I was never able to get Mq2Heals heal good enough for me on TLP. That's why I used kissassist.
Can you send me the ini of your clerics on TLP?


And there is one more thing on that macro...It does a /corpse to summon all corpse as near as possible to avoid adds in a dangerous area to ress.

So whenever I wipe I start the macro and go afk for a while.

And one more thing: I personally added two lines at the beginning to rezz my preferred chars first... the ones that I drive all my commands.

Anyways thx for the Infos Frimp.

This is what I'm using: (sometimes it drags them, but not all the time)
Rich (BB code):
[General]
KissAssistVer=9.1
Role=Assist
CampRadius=30
CampRadiusExceed=400
ReturnToCamp=1
ChaseAssist=0
ChaseDistance=25
MedOn=1
MedStart=85
MedCombat=1
LootOn=1
RezAcceptOn=1
AcceptInvitesOn=1
GroupWatchOn=0
CastingInterruptOn=0
EQBCOn=1
IRCOn=0
MiscGem=8
HoTTOn=0
CampfireOn=0
[SpellSet]
LoadSpellSet=0
SpellSetName=KissAssist
[Buffs]
BuffsOn=1
Buffs1=Symbol of Marzin
Buffs2=Bulwark of Faith|Melee
Buffs3=Armor of Protection|me
Buffs4=NULL
Buffs5=NULL
Buffs6=NULL
Buffs7=NULL
Buffs8=NULL
Buffs9=NULL
Buffs10=NULL
Buffs11=NULL
Buffs12=NULL
Buffs13=NULL
Buffs14=NULL
Buffs15=NULL
Buffs16=NULL
Buffs17=NULL
Buffs18=NULL
Buffs19=NULL
Buffs20=NULL
RebuffOn=1
CheckBuffsTimer=20
PowerSource=NULL
[Melee]
AssistAt=95
MeleeOn=0
FaceMobOn=1
MeleeDistance=75
StickHow=snaproll rear
AutoFireOn=0
UseMQ2Melee=1
[GoM]
GoMSHelp=Format - Spell|Target, MA Me or Mob, i.e. Rampaging Servant Rk. II|Mob
GoMSpell1=NULL
GoMSpell2=NULL
GoMSpell3=NULL
[AE]
AEOn=0
AERadius=50
AE1=NULL
AE2=NULL
AE3=NULL
AE4=NULL
AE5=NULL
AE6=NULL
AE7=NULL
AE8=NULL
AE9=NULL
AE10=NULL
[DPS]
DPSOn=2
DPSSkip=20
DPSInterval=10
DPS1=Unswerving Hammer of Faith|90
DPS2=Wrath|80|Once
DPS3=NULL
DPS4=NULL
DPS5=NULL
DPS6=NULL
DPS7=NULL
DPS8=NULL
DPS9=NULL
DPS10=NULL
DPS11=NULL
DPS12=NULL
DPS13=NULL
DPS14=NULL
DPS15=NULL
DPS16=NULL
DPS17=NULL
DPS18=NULL
DPS19=NULL
DPS20=NULL
DebuffAllOn=0
[Aggro]
AggroOn=0
Aggro1=NULL
Aggro2=NULL
Aggro3=NULL
Aggro4=NULL
Aggro5=NULL
[Heals]
Help=Format Spell|% to heal at i.e. Devout Light Rk. II|50
HealsOn=1
Heals1=Complete Heal|40|MA
Heals2=Word of Healing|60
Heals3=Divine Light|50|!MA
Heals4=NULL
Heals5=NULL
Heals6=NULL
Heals7=NULL
Heals8=NULL
Heals9=NULL
Heals10=NULL
Heals11=NULL
Heals12=NULL
Heals13=NULL
Heals14=NULL
Heals15=NULL
XTarHeal=2
XTarHeal2=3
AutoRezOn=1
AutoRezWith=Reviviscence
HealGroupPetsOn=0
[Cures]
CuresOn=1
Cures1=Earring of Purity|Disease
Cures2=Earring of Cleansing|Poison
Cures3=NULL
Cures4=NULL
Cures5=NULL
[Burn]
BurnText=Decepticons Attack
BurnAllNamed=0
Burn1=NULL
Burn2=NULL
Burn3=NULL
Burn4=NULL
Burn5=NULL
Burn6=NULL
Burn7=NULL
Burn8=NULL
Burn9=NULL
Burn10=NULL
Burn11=NULL
Burn12=NULL
Burn13=NULL
Burn14=NULL
Burn15=NULL
UseTribute=0
[Pull]
PullWith=Melee
MaxRadius=350
MaxZRange=50
PullWait=5
PullRoleToggle=0
ChainPull=0
ChainPullHP=90
ChainPullPause=30|2
PullLevel=0|0
[AFKTools]
AFKHelp=AFKGMAction=0 Off, 1 Pause Macro, 2 End Macro, 3 Unload MQ2, 4 Quit Game
AFKToolsOn=0
AFKGMAction=1
AFKPCRadius=150
CampOnDeath=0
ClickBacktoCamp=0
[Merc]
Help=To use: Turn off Auto Assist in Manage Mercenary Window
MercOn=0
MercAssistAt=92

- - - Updated - - -

I see what you're doing there though, a bit more control over the process. That sounds useful.
 
The reason why I asked is that you may as well just use the AE Rez and be done with it if your on Live servers

Oh I see... I used to Play EQ2 for 6 years and was coming back and did Progression. So I forgot about the AE rez.

What might be a cool Addition is a Rogue macro that gathers all the corpses that are far away... though I am not sure when the Rogue is able to move .e.g. through Temple of Veeshan without being seen.
 
Release RezzMyRaid

Users who are viewing this thread

Back
Top
Cart