AQ nurse ant respawn time

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
wormdrive
Posts: 7
Joined: Sat Nov 02, 2013 8:08 pm

AQ nurse ant respawn time

Post by wormdrive »

If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number: 6086
L2JDP Revision Number: 9839


Need some direction as how I can change the respawn time of the nurse ants attached to Ant Queen.

I would like to increase the delay time of their respawn and/or not have them respawn again after being initially killed.

Appreciate the help.
wormdrive
Posts: 7
Joined: Sat Nov 02, 2013 8:08 pm

Re: AQ nurse ant respawn time

Post by wormdrive »

Still hoping for some help with this...
User avatar
Gries
Posts: 307
Joined: Fri Jun 17, 2011 9:45 am

Re: AQ nurse ant respawn time

Post by Gries »

Code: Select all

# Configure the interval at which raid boss minions will re-spawn.# This time is in milliseconds, 1 minute is 60000 milliseconds.# Default: 300000RaidMinionRespawnTime = 300000 # Let's make handling of minions with non-standard static respawn easier - no additional code, just config.# Format: minionId1,timeInSec1;minionId2,timeInSec2CustomMinionsRespawnTime = 22450,30;22371,120;22543,0;25545,0;22424,30;22425,30;22426,30;22427,30;22428,30;22429,30;22430,30;22432,30;22433,30;22434,30;22435,30;22436,30;22437,30;22438,30;25596,30;25605,0;25606,0;25607,0;25608,0
NPC.properties
Nerimah
Posts: 76
Joined: Mon May 02, 2011 10:19 am
Location: Paris, France
Contact:

Re: AQ nurse ant respawn time

Post by Nerimah »

Code: Select all

 else if (npcId == NURSE){          L2MonsterInstance mob = (L2MonsterInstance) npc;          _nurses.remove(mob);          if (mob.getLeader() != null)          {                    mob.getLeader().getMinionList().onMinionDie(mob, 10000);          }}
I guess you should change the value "10000" from dist/game/data/scripts/ai/individual/QueenAnt.java
French touch.
Post Reply