You can only change the respawn time on a server that is turned off. this doesn't work on a live server. The database is not used - data is stored in memory and fetched upon loading.View attachment 6359View attachment 6360
I already updated the Epic Boss respawn dates directly via SQL, but the spawn times for Queen Ant, Core, Orfen, and Zaken are still showing the old schedule in-game.
Is there any cache or additional step I need to clear or reset for the new times to take effect?
Thanks in advance!
Is there a fast way to import all IDs at once?
To set every raid boss dead for the start.
UPDATE epic_boss_spawn SET respawnDate=0,state=0;
UPDATE raidboss_status SET current_hp = 0, current_mp = 0, respawn_delay = 0;
INSERT INTO `epic_boss_spawn` (`bossId`, `respawnDate`, `state`, `boss_name`)
VALUES
(29020, UNIX_TIMESTAMP('2025-01-01 21:00:00'), 3, 'Baium'), -- Wednesday at 21:00
(29068, UNIX_TIMESTAMP('2025-01-03 21:00:00'), 3, 'Antharas'), -- Friday at 21:00
(29045, UNIX_TIMESTAMP('2025-01-05 17:30:00'), 3, 'Frintezza'), --...
В конфиге убрать время...One question: how can I remove the time from the .epic command? I want it to show only the date the boss will spawn.