Page 1 of 1
How Change Spawn Time RaidBoss
Posted: Wed Feb 17, 2010 1:42 am
by maxicroma
Hello I want know how change the spawn time of one RaidBoss for example Barakiel.
Re: How Change Spawn Time RaidBoss
Posted: Wed Feb 17, 2010 7:53 am
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;
Re: How Change Spawn Time RaidBoss
Posted: Tue Oct 02, 2012 9:07 pm
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
Re: How Change Spawn Time RaidBoss
Posted: Tue Oct 02, 2012 9:42 pm
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...