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

Just playing around with a macro.... (1 Viewer)

Czarman

Well-known member
Joined
Apr 28, 2005
RedCents
1,381¢
Played around a bit with the macro that shrinks a whole raid, and made one that might be able to /sumcorpse the whole raid on a wipe - Rogue and Necro dream macro. Just wondering if this will actually try and target the member or the corpse (assuming total wipe and only corpses in zone - cept yourself) and actually work (have not had time to test it yet). This assumes you have /sumcorpse plugin.



SumCorpse.mac
Rich (BB code):
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}]} PC
   /delay 5
   /docommand /sumcorpse
   /delay 5

      
     /varcalc raidnumb ${raidnumb}+1
   /goto :loop
   }

   /if (${raidnumb}>${numbinraid}) {
   /target clear
   /delay 2
   /echo Done Corpse Summoning the raid.
}

/return
 
Just playing around with a macro....

Users who are viewing this thread

Back
Top