ID:161211
 
How can I make it so the obj will only talk to you if your south of it?
Look up the get_dir() proc in the ref (F1 in Dream Maker).
In response to Popisfizzy
has no example with it...
In response to Hellonagol
if(obj in get_step(usr,NORTH))
In response to Hellonagol
Well, for example:
proc/is_in_dir(atom/a, atom/target, dir)
if(get_dir(a, targer) == dir) return 1 //It is in that direction
return 0 //It's not in the direction.

//Or, to make it shoreter
proc/is_in_dir(atom/a, atom/target, dir) return get_dir(a, target) == dir