Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Tutorial] Perfect World: Change Dungeon Timers

Newbie Spellweaver
Joined
Aug 6, 2009
Messages
74
Reaction score
88
Hi,

After a slight investigation into dungeon timers(default to 4 hours), the way to change this lies in gs.conf.

You only have to add the lines "idle_time = 1200" and "life_time = TIME_LIMIT" somewhere between
[Instance_xxxx] and [Terrain_xxxx], where TIME_LIMIT is in seconds.

TIME_LIMIT must be between 300 and 4294967295

Example of what it'll look like:

Code:
npc_count               =       65536
matter_count            =       131072
[B]idle_time		=	1200
life_time		=	300[/B]
pool_threshold_low      =       10
pool_threshold_high     =       20

In this case the dungeon is set to reset after 300 seconds, which is 5 minutes.

Note: Do not forget to place idle_time or the timer will be set to 0 seconds, which means instant reset upon re-entering the dungeon.

Creditss to Psytrac who asked about this, and yours truly for this "new" finding.

Cheers
 
Last edited:
Back
Top