In response to VolksBlade
You have to change it if you want it to fight monsters... that code is for fighting Players lol


mob/proc/move()
var/mob/M
while(src)
var/player_found = 0
for(M in oview(3,src))
if(istype(M,/mob/Monster))
step_towards(src,M)
player_found = 1
break
if(player_found != 1)
step_rand(src)
sleep(10)
sleep(5)
In response to A.T.H.K
so i put that under the guard?
In response to VolksBlade
you use it like this

        Guard
New()
spawn()
move()
Bump(mob/M)
if(istype(M,/turf)) return
sleep(5)
src.Attack(M)
In response to A.T.H.K
*cry's* my enter button wont work
In response to VolksBlade
Yo, put down everything you can on a message in here about what i need please, ill be on later to check it out, Thank you for all your help, im going to shut down my computer and give it a rest.
Page: 1 2