PDA

View Full Version : KOS Aggro Range


Chanus
12-18-2010, 11:56 AM
It seems like the range at which KOS mobs will attack is a lot longer than it should be.

Specifically, so far, I've noticed it on orc pawns and elven skeletons in GFaydark. Is there a global value for this, or is it set on each mob individually? A cursory glance through the rules_values didn't enlighten me.

blackdragonsdg
12-18-2010, 04:34 PM
The field aggroradius in the npctypes table is what you need to change. You can do it one at a time or all at once.

Here is an example.
update npc_types set aggroradius = 50 where name = 'an_elven_skeleton' and id >= 54000 and id <= 54999 or name = 'orc_pawn' and id >= 54000 and id <= 54999;

That changed the aggroradius of the orc pawns and elven skeletons in Greater Fardark only.

Chanus
12-18-2010, 04:46 PM
Awesome. Thanks!