ID:266386
 
Hi,how do you make monsters walk in a certain area?If you know please tell me.Thanks!

-Kappa the Imp
make an invisible barrier, that monsters can pass.
turf
barrier
Enter() //when entered..
if(istype(src,/mob/monster/)) // if its a monster
return 0 // make it stop
else // if its not
..() //continue


-Rcet
In response to Rcet
Oh,Thanks alot Rcet,i appreciate that.Thanks!

-Kappa the Imp