View Single Post
  #3  
Old 01-22-2022, 04:14 PM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,333
Default

Depends on how picky one wants to be with all npc respawn timers. Running a simple query can take all npc's down to the standard "640" respawn time. (or less) (3600 = One hour)
Code:
UPDATE spawn2 SET respawntime = 640 WHERE respawntime > 640;
You can also set their chance of spawning to 100 %
Code:
UPDATE spawnentry SET chance = 100 WHERE chance < 100;
This would apply to ALL NPC's on the server. But there is also PH's to consider as well, they would be affected. Also, some unique spawns may be controlled by a quest script.
__________________
Hanging out at Antonica.World
Reply With Quote