The only thing I can do is just laugh at this thread...well done.
Within GeorgeS NPC editor you can adjust spawn timers based on zone as well. Just go into Grid_SpawnGroup_Tools and then Spawngroup Editor. It can search for NPCs based on ID or zone, or by using the ALL function with a particular zone shortname.
For editing your ENTIRE server just do like Tabasco suggested. You really dont want respawn times to fall under 10 mins. Just remember the respawntime variable is expressed in seconds.
For my server as an example I wanted everything with over 1 day spawn to have a 3 hour timer, so I used:
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;
Again you can manipulate those to your liking.
|