ID:156577
 
So I'm wanting to do a for(in whatever)

Thing is though, I can't get for(var/x in view(5,src))

To work properly and only return those that are in the sight of that object, could xomeone give me an example on how to do something like that?
Try this:

turf/Check
Entered(mob/M)
for(M in view(5,src))
M << "Hi"
CodeWeasel22 wrote:
So I'm wanting to do a for(in whatever)

Thing is though, I can't get for(var/x in view(5,src))

I don't see where you'd run into any problems except with the var name being x. Can you post the snippet of code you've been using that in?

Lummox JR