ID:155652
 
I'm trying to do when the person dies all the items fall on her site that she died.Dont have no idea where to begin.
Help please.
If the items are stored in their contents and they are objs you can do this:

if(src.health <= 0)//the person has died
for(var/obj/item in src.contents)
item.loc = locate(src.x, src.y, src.z)


Something along those lines.
In response to Zaltron
Thx again Zaltron :)
In response to SoulGamesProductions
Anytime, if you run into troubles with that let me know.