Raid respawn after restart

rihosedemon

Heir
Customer
I have some mini raidbosses that I want to be spawned in specific times through the day but when i start the server they are already spawned while is not the prefered time and if I restart while the boss is already dead is respawned again while is not the time I used. How should i do it to be working properly?

<!-- Mini Raids -->
<spawn name="[custom_spawn]">
<npc id = "25342" count = "1" respawn_cron = "21 11 * * *" pos = "170311 42644 -4832 0" />
</spawn>

<spawn name="[custom_spawn]">
<npc id = "25342" count = "1" respawn_cron = "30 00 * * *" pos = "170311 42644 -4832 0" />
</spawn>

<spawn name="[custom_spawn]">
<npc id = "29065" count = "1" respawn_cron = "30 19 * * *" pos = "27214 122280 -3616 45796" />
</spawn>

<spawn name="[custom_spawn]">
<npc id = "29065" count = "1" respawn_cron = "30 03 * * *" pos = "27214 122280 -3616 45796" />
</spawn>

<spawn name="[custom_spawn]">
<npc id = "29047" count = "1" respawn_cron = "30 20 * * *" pos = "107283 27817 -3488 28799" />
</spawn>

<spawn name="[custom_spawn]">
<npc id = "29047" count = "1" respawn_cron = "30 05 * * *" pos = "107283 27817 -3488 28799" />
</spawn>
 
I have some mini raidbosses that I want to be spawned in specific times through the day but when i start the server they are already spawned while is not the prefered time and if I restart while the boss is already dead is respawned again while is not the time I used. How should i do it to be working properly?
1. You can't put same ID of npc for 2 different spawns.
2. Check type of npc in xml files. It must be RaidBoss
 
Unfortunately, if mini boss is killed and after server is restarted , mini boss is respawned again while it should be respawn on specific time. How can I make if server restarts boss will spawned on specific time?

<spawn name="[custom_spawn]">
<npc id = "50059" count = "1" respawn_cron = "20 15 * * *" pos = "170311 42644 -4832 0" />
</spawn>
 
Back
Top