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...
ID:176255
Feb 2 2003, 11:32 am
|
|
In response to Garthor
|
|
Thanks,
Could you help me out on how to cycle through these 'clones'? Thanks again.... -SpoOn |
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))
..()