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.
AQ nurse ant respawn time
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
-
- Posts: 7
- Joined: Sat Nov 02, 2013 8:08 pm
Re: AQ nurse ant respawn time
Still hoping for some help with this...
- Gries
- Posts: 307
- Joined: Fri Jun 17, 2011 9:45 am
Re: AQ nurse ant respawn time
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
-
- Posts: 76
- Joined: Mon May 02, 2011 10:19 am
- Location: Paris, France
- Contact:
Re: AQ nurse ant respawn time
Code: Select all
else if (npcId == NURSE){ L2MonsterInstance mob = (L2MonsterInstance) npc; _nurses.remove(mob); if (mob.getLeader() != null) { mob.getLeader().getMinionList().onMinionDie(mob, 10000); }}
French touch.