How Change Spawn Time RaidBoss

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
Locked
maxicroma
Posts: 12
Joined: Thu Nov 12, 2009 2:49 am

How Change Spawn Time RaidBoss

Post by maxicroma »

Hello I want know how change the spawn time of one RaidBoss for example Barakiel.
User avatar
Notorious
Posts: 501
Joined: Thu May 28, 2009 3:50 pm
Location: Sweden

Re: How Change Spawn Time RaidBoss

Post by Notorious »

Edit the columns "respawn_min_delay" and "respawn_max_delay" in the raidboss_spawnlist table.
Find boss_id 25325 for Barakiel (you can look the id up in the npc table).

The values of the min and max delay is in seconds (ex: 43200 = 12 hours.)

To set a fixed respawn, set to same values in max and min.

Edit: To not have to remember this, you can run this which must be run after every update of the raidboss_spawnlist table:
With this you set a fixed respawn of 6 hours (21600 seconds)

Code: Select all

UPDATE raidboss_spawnlist SET respawn_min_delay = 21600, respawn_max_delay = 21600 WHERE boss_id = 25325;
repxl
Posts: 207
Joined: Wed May 20, 2009 8:29 pm

Re: How Change Spawn Time RaidBoss

Post by repxl »

there is another filed called respawn time...


so when i do respawn time : 43200

and respawn_min_delay :43200
respawn_max_delay :43200


means the rb will have 12respawn and random 12 hour respawn ?? like 12+12
"Code is exactly like shit - you don't mind cleaning it when its yours, but when it isn't... fuck its annoying." - By the Almighty ZaKaX
User avatar
Zoey76
L2j Inner Circle
L2j Inner Circle
Posts: 7008
Joined: Tue Aug 11, 2009 3:36 am

Re: How Change Spawn Time RaidBoss

Post by Zoey76 »

repxl wrote:there is another filed called respawn time...


so when i do respawn time : 43200

and respawn_min_delay :43200
respawn_max_delay :43200


means the rb will have 12respawn and random 12 hour respawn ?? like 12+12
Necroposting is not allowed, locked, answer will be in the new topic you've created...
Powered by Eclipse 4.34 ๐ŸŒŒ | Eclipse Temurin 21 โ˜• | MariaDB 11.3.2 ๐Ÿ—ƒ๏ธ | L2J Server 2.6.3.0 - High Five ๐Ÿš€

๐Ÿ”— Join our Discord! ๐ŸŽฎ๐Ÿ’ฌ
Locked