ID:176255
 
Just a question but...
How would i go about making a player on say Z2 have an icon on Z1 as well as the icon he sees?
-Spoon

p.s - thanks in advance...
mob
var/obj/clone
New()
clone = new()
clone.icon = icon
clone.icon_state = icon_state
clone.loc = locate(x,y,z-1)
Move(newLoc)
spawn() clone.Move(locate(newLoc.x,newLoc.y,newLoc.z-1))
..()
In response to Garthor
Thanks,
Could you help me out on how to cycle through these 'clones'?
Thanks again....
-SpoOn