Im tring to make it so this object is created +1 z of the usr.
var/obj/new_stairs2=new/obj/build/ staircase(locate(usr.x+3,usr.y+6,usr.z+1))
Its creating on the ground level but not the top level which is located on +1 z.
ID:148495
Jan 21 2003, 5:37 pm
|
|
Rollerc wrote:
Im tring to make it so this object is created +1 z of the usr.Hmm I wounder what RC would want this for O.o hehe. var/obj/new_stairs2=new/obj/build/ staircase(locate(usr.x+3,usr.y+6,usr.z+1))Hmm nice code O.o hehehe. Its creating on the ground level but not the top level which is located on +1 z.So whats that mean again? O.o hehehe. |
new_stars2.loc = locate(usr.x,usr.y,usr.z + 1)
Hope that helps.