ID:178566
 
How could I make my game so when a usr steps on loc(X,X,X) they get transported to (1,1,1) also where would I put it in my code


-thanks-
Try something like this.

mob/Move()
..()
if(src.x == thex && src.y == they && src.z == thez)
src.Move(locate(1,1,1))
mob
var
const
thex=the x value you want
they=the y value you want
thez=the z value you want

DarkTitan