Grab corpse from afar

Noah3

Lifetime Member
Joined
Dec 20, 2010
Messages
580
Reaction score
12
Points
18
Age
40
How do you do this

Here's a scenario my puller dies too far away
How do I either send somebody to grab the corpse and dragged it back or just summon the corpse
 
Thank you so much is there a way to make this automatic if I know which corpse it's going to be every time?
I want do something like this while I am not there
 
the other way would be

/nav spawn x's corpse

This will make ur toon run to the corpse. good for a rogue.
 
Use /sumcorpse sparingly. They can detect large movements if they look for it.
 
  • Like
Reactions: EQDAB
I was going to use the /nav one..
Figured that wouldn't just appear as a normal action trying right now to figure out how to put that into my ini and added as a downflag

Thank you
 
I don't know how to say this cuz I don't want to sound like an ass.
I really want this functionality with a MMO though
Redguides is saying they have it so if your puller dies your Rogue can run out and grab your corpse
I talked to a couple of the guys I know use redguides religiously and they say that is true.
I want to do it with MMO I have a rogue but any class will be okay I don't care who grabs the dead puller I just want to make it happen.
Does anybody know how this can be done automatically
Maybe as a down flag??
 
You could write a macro that would do the following:

Search to see if anyone in group has a corpse
Check if corpse is further than say 300 away
Record your current location
Sneak/Hide
Use MQ2Nav to navigate to corpse
target corpse
/corpsedrag
Navigate back to starting location
/corpsedrop

?
 
That looks perfect I don't know how to do that but the fact that it can be done makes me happy any chance you could point me in the directions to I can learn how to write these into my eye and I and I would put that in the down flag right once I figure out how to write it
 
Here is a start. The big issue I don't know off the top of my head is figuring out a group members corpse is in the zone. Completely untested and thrown together in 5mins. Your going to have to use ${Group.Member} TLO to see if corpse of group member is in zone and 300 distance away. Can anyone lend a hand?

Code:
Sub Main
/declare StartX     int outer 0
/declare StartY      int outer 0
/declare DragCorpseName string outer


| Need to add the command here to see if corpse of group member is in zone and varset members name to DragCorpseName, then call DragCorpse if so.

/call DragCorpse

Sub DragCorpse 
/varset StartX ${Me.X}
/varset StartY ${Me.Y}
/doability hide
/doability sneak
|NEED TO CHECK HIDE AND SNEAK WORKED
/target ${DragCorpseName} corpse
/delay 5
/nav target
/delay 1s
/delay 200s !${Me.Moving}
/corpse drag
/nav loc ${StartX} ${StartY}
/delay 5
/delay 200s !${Me.Moving}
/corpse drop
/end