I just wanted to share a macro I use when I need to drag a few corpses quickly. Let me know if you like it!
goDrag.mac:
|**----------------------------------------------------------
GoDrag.mac
by BobWeaver!
This macro will drag lots of corpses quickly.
**|
#turbo
|==================================================================================================|
Sub Main
/echo GoDrag Starting. What a drag!
/declare intWhichCorpse int local 0
:DragLoop
/squelch /target clear
/for intWhichCorpse 1 to ${SpawnCount[corpse zradius 50 radius 100]}
/squelch /target id ${NearestSpawn[${intWhichCorpse}, corpse zradius 50 radius 100].ID}
/delay 9 ${Target.ID}
/if (${Target.Distance} < 5) /squelch /target clear
/if (${Target.ID}) {
/corpse
}
/doevents
/next intWhichCorpse
/delay 1
/goto :DragLoop
/end