ID:267676
 
Hi

When i have two areas on the map,

the first area is as (1,1,1)

the second is at (2,1,1)

there is a verb saying "move to area 2"

when you a moved to area 2 there is a Entered()

but it does not work
The entered proc, only works when you try to walk into it, not if you set the location there.
Instead of usr.loc = locate(2,1,1) try usr.Move(locate(2,1,1)).

That should work, I had the same problem a few weeks ago, and that did it for me.

Cadence
In response to Cadence
thanks
In response to JackGuy
Entered() only works when you Move() to a location.

If you want to move to a specific area, you can use Move(locate(/area/areatype)) I believe.