diff options
Diffstat (limited to 'npc/soren-2')
-rw-r--r-- | npc/soren-2/main.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/soren-2/main.txt b/npc/soren-2/main.txt index 404cb66b5..adb3fd4e9 100644 --- a/npc/soren-2/main.txt +++ b/npc/soren-2/main.txt @@ -169,10 +169,11 @@ OnSanctum: // Random 20~40 seconds before next cycle. (Minimum 100~200 seconds, or 1m40s~3m20s) // If you're past minimum, it'll be a little slower to don't affect other players too much. + // These values are for single player. If there are more users, the timer will tick for longer. if (@sorensanctum < 5) - addtimer(rand(20000, 40000), "#SorenSanctum::OnSanctum"); + addtimer(rand(10000, 30000)+getusers(1)*10000, "#SorenSanctum::OnSanctum"); else - addtimer(rand(30000, 40000), "#SorenSanctum::OnSanctum"); + addtimer(rand(20000, 30000)+getusers(1)*10000, "#SorenSanctum::OnSanctum"); end; |