Page 1 of 1

Raidboss_spawnlist update data

Posted: Sat Jan 25, 2014 5:05 pm
by ccarrion
one question, anyone know how much time the l2j core saves data to raidboss_spawnlist table, because i have a php raidboss script "live,dead" status, but some raidboss are still alive ingame and in the script stilll show dead, i go to raidboss_spawnlist table and the field respawn_time have more than 0.

Cheers.

Re: Raidboss_spawnlist update data

Posted: Sat Jan 25, 2014 5:16 pm
by JMD
probably theres something wrong with your php script.

Re: Raidboss_spawnlist update data

Posted: Sat Jan 25, 2014 5:44 pm
by ccarrion
JMD wrote:probably theres something wrong with your php script.
example with live data:
RAIDBOSS: Zombie Lord Crowl
RESPAWN_TIME:1390665018900 (raidboss_spawnlist)
But Zombie Lord Crowl its alive right now.-

Re: Raidboss_spawnlist update data

Posted: Sat Jan 25, 2014 6:25 pm
by JMD
your php script should have a line somewhere where you can set how often it will check the database for new respawn time, if its too high decrease it.

Re: Raidboss_spawnlist update data

Posted: Sat Jan 25, 2014 6:48 pm
by ccarrion
JMD wrote:your php script should have a line somewhere where you can set how often it will check the database for new respawn time, if its too high decrease it.
After restart server:

RAIDBOSS: Zombie Lord Crowl
RESPAWN_TIME:0 (raidboss_spawnlist)
PHP script show the right info.

so, i need to create a shedule task to updatedb table raidboss_spawnlist...

Cheers.