ID:177892
 
Hey, is there another way to teleport ppl? i use enterd in areas, but thats extreamly long... is there another way?
That shouldn't be a long code.....

area/thing/Enter(O)
if(ismob(O))
O:loc = locate(1,2,1)

There are several ways of teleporting,
Move(locate(1,1,1))
loc = locate(1,1,1)
x = 1//x,y,z lines are together
y = 1
z = 1
In response to Super16
Super16 wrote:
That shouldn't be a long code.....

area/thing/Enter(O)
if(ismob(O))
O:loc = locate(1,2,1)

Problem: You should really use Entered() instead of Enter() for this, and you should specify atom/movable/O so you don't have to use the : operator.

Lummox JR