ID:177987
 
how can i get a monster to move around
thx,
Wiz1008
smack it in the butt, or put a lit match in its toes.
Wiz1008 wrote:
how can i get a monster to move around
thx,
Wiz1008

Depends on how you want it to move. If you want a mob to move randomly, you put in this code:
mob
var/wander
New()
if(wander) walk_rand(src)
..()

And create a mob with "wander" set to 1. However, this means that the mob will move randomly. If you want it to move only when there's a mob present, look up walk_to in the documentation. I only know how to make random walking.