i added this to aggro.ccp
in the bool Mob::IsAttackAllowed(Mob *target) function
Code:
//////////////////////ADDED//////////////////////
if(bt == BT_Noattack && target->IsClient())
return(false);
///////////////////////END ADDED//////////////////
also added
Code:
//////////////////////ADDED//////////////////////
if(bt == BT_Noattack)
safe_delete(action_packet);
return(false);
///////////////////////END ADDED//////////////////
to spells.cpp in the //cannot hurt untargetable mobs check
and added BT_Noattack = 9 to the bodytypes.h file..
think this will work of am i close?