KOS Aggro Range
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. |
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. Code:
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; |
Awesome. Thanks!
|
All times are GMT -4. The time now is 09:11 PM. |
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.