how can i get a monster to move around
thx,
Wiz1008
ID:177987
Jul 4 2002, 2:03 pm
|
|
Jul 4 2002, 7:06 pm
|
|
smack it in the butt, or put a lit match in its toes.
|
Wiz1008 wrote:
how can i get a monster to move around 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. |