ID:266516
 
When the usr kills the mob how do you put it back to its original location?If you know please tell me!
Thanks!

-Kappa the Imp
Kappa the Imp wrote:
When the usr kills the mob how do you put it back to its original location?If you know please tell me!
Thanks!

-Kappa the Imp

One of a hundred ways:

mob
var/init_loc
New()
init_loc = loc
init_me()
..()
proc
init_me()
density = 1
invisibility = 0
loc = init_loc
die()
view() << "[src] died."
invisibility = 101
density = 0
spawn(50)
init_me()