ID:176468
![]() Jan 10 2003, 3:41 pm
|
|
How would I make a new instance of an object on every turf within a certain range of the src?
|
![]() Jan 10 2003, 4:14 pm
|
|
maybe like this:
|
No, that doesnt work. Already tried it, all it does is create a new obj in the first instance of the turf found on the map.
|
ok this should:
mob/verb |
Weedman wrote:
maybe like this: var/range //cahnge the range to whatever Nope. Since t is a turf, t.loc is an area; if you create something in the area, it'll find the first turf where it's safe to put an obj. That should be:
new/obj/thing(t)
Lummox JR |