ID:178131
 
could some give me a quick run down on how to make enemies attack
thanks I'd appreciate it alot
mob/killerdude
for(mob/M in view(10))
src.Move(M)
attack()// attack proc.

i dunno if that will work
From my knowledge this how you would do it.

Step 1:) First you make an attack verb for the enemie.(their are many RPG tutorials that show you how to that if you don't know how)

Step 2:) Now you make a Bump() whih should look like this

mob/enemie
Bump()
if(istype(mob/PC))
Attack()

I think that is how you do it. I haven't made an RPG like that for a while so someone else correct if i am wrong.