How to set Epic or RB dead for server start

Deazer

Head Developer
Staff member
Tables in which data with respawn are located:
raidboss_status - for standard raids such as Queen Ant, Zaken, Orfen, Core and so regular world raids.
epic_boss_spawn - for grand bosses from the series Baium, Antaras, Valakas.

To set respawn in the raidboss_status table, just set them to add and set the time, consider the example of Queen Ant:
INSERT INTO `raidboss_status` (`id`, `current_hp`, `current_mp`, `respawn_delay`) VALUES (29001, 0, 0, 1544566860);
In the respawn_delay field we put the date the necessary date for the spawn in Unix TimeStamp format, for this you can use the resource https://www.cy-pr.com/tools/time/

To set respawn in the epic_boss_spawn table, just place the necessary spawn date in the `respawnDate` field using https://www.cy-pr.com/tools/time/ and set the value in the` state` field to 3.
On the example of Baium, it will visually look like this:
5c6f791c4fc4a282fdc9c55c09d101a2.png

Also, all these manipulations are best done on the off game server.
 
Back
Top