ID:174012
 
How would you make it so that if you enter a turf(start) you go down-right until you touch another turf(end).
The way I'd do this is:
turf
Slidey
Entered(mob/M)
var/d = SOUTHEAST
sleep(1)
step(M,d)

Then just put a line of them and stop placing them wherever you want them to stop.
Cloudiroth wrote:
How would you make it so that if you enter a turf(start) you go down-right until you touch another turf(end).

turf/single_slidy //just showing him how to do it with his single-turf method
Entered(atom/A)
walk(A,SOUTHEAST)
turf/stop_sliding
Entered(atom/A)
A.Move(loc)