ID:266565
 
1st whats the difference and 2nd how would i only get the people 1 5 tiles away and Only 5 tiles away?
Strange Kidd wrote:
1st whats the difference and 2nd how would i only get the people 1 5 tiles away and Only 5 tiles away?

oview() doesn't include its center object in the list of things it returns; view() returns everything.

To get only objects that are exactly 5 tiles away, you could do this:
oview(5)-oview(4)

That won't work for limiting verbs, though.

Lummox JR