Quote:
UPDATE spawn2 SET respawntime = 10800 WHERE respawntime > 86400;
Everything with between 1 hour and 1 day to have a 1 hour spawntimer:
UPDATE spawn2 SET respawntime = 3600 WHERE respawntime < 86400 AND respawntime > 3600;
|
Hopefully you didnt do it in that order, otherwise everything ends up being 1 hour.