ID:261461
 
How do I relocate someone when they die?
You can literally change their location like this:

<code>mob.loc = locate(1,1,1)</code> // new coords

Or you can Move them to a new location, which will run the Exit and Exited procs if it's current location, plus the Enter and Entered procs of the new locations.

<code>mob.Move(locate(1,1,1))</code>