Log in

View Full Version : custom respawn?


kimura0715
05-28-2009, 01:12 PM
is there a script that i could use to change all respawn timers of all mobs that are above 1 hour to make them all one hour? so that no mobs in my whole server take longer than an hour to respawn? i dont want to change the respawn timers of anything less than an hour...any help would be greatly appreciated thanks

Shendare
05-28-2009, 01:42 PM
UPDATE spawn2 SET respawntime=3600 WHERE respawntime>3600


Entered into Navicat or MySQL Query Browser.

Respawntime is in seconds.

60 seconds per minute * 60 minutes per hour = 60 * 60 = 3600 seconds in an hour.

This changes about 1733 mobs' respawn times, some of which are over a week normally. Heh.

kimura0715
05-28-2009, 08:37 PM
thanks for the response!