ID:179620
 
Ok, I am most definitly confused...I am using FIREkings weapon and combat system and everything about it works great...Except that monsters will NOT fight back...why?
Cryptic wrote:
Ok, I am most definitly confused...I am using FIREkings weapon and combat system and everything about it works great...Except that monsters will NOT fight back...why?

Everyone had that problem.
I think it's just a typo from Firekings part.

Ok, find this part on the monster ai code:

checkarea()
for(var/mob/M in oview(4))
if(M == null)
return 0
if(M.typechar == "normal")
walk_to(src,M,0,warspeed)
monsterattack(M)

just add the M.

In response to Cravens
where is that i can't find it
In response to Deadman Walking
Deadman Walking wrote:
where is that i can't find it

Look in the "monster AI.dm" inside the library.
It's just a few lines below...

[Edit]
Are you using Fireking's "Battle and Weapon System"
or Fireking's "QC_BattleSys" ?

If it's the second one, i don't know the problem. Sorry.
In response to Cravens
thanks much...that was annoying =)