ID:149803
 
Ok, I have a 20x20 map. When I use this code:
mob
verb
Test_walk_to()
var/walk_loc = locate(8,8,1)
walk_to(usr,walk_loc,0,0)


And when I first login, and click, it goes to 8,8,1. But if i walk to 20,1,1 and use it, all i do is face north. Fault in my code, or bug in byond? *dumm dumm duuummmm*

-Rcet
According to the F1 help walk_to won't work if the distance between them is at least twice world.view.

Maybe try:
walk_towards(usr,walk_loc,0)

I don't think it has the same limitation, not sure though.