PDA

View Full Version : How to Respawn All Monsters on a Timer


EqEmuSoloist
01-30-2014, 08:23 PM
I could never find anything on this here so I thought I would put it out there,

To repop all monsters in all zones (at the same time) you can use this query:

UPDATE respawn_times
SET duration = 1
WHERE duration >= 2;

It sets all active monster timers to 1, which then tick to 0. On your server type #reloadworld and they should all repop.

NatedogEZ
01-30-2014, 08:30 PM
Is that for dev work? If you are in a single zone working on testing X NPC.. you can just

/say #repop force

to respawn all the mobs in the zone you are working on :)

EqEmuSoloist
01-31-2014, 04:35 AM
Is that for dev work? If you are in a single zone working on testing X NPC.. you can just

/say #repop force

to respawn all the mobs in the zone you are working on :)

It's for when we're celebrating something on my server and it's decided to respawn all major targets :-) But I can see knowing this come in handy for dev work - somehow!