diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-08-02 18:00:05 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-08-02 18:00:05 -0300 |
commit | 6be2d28aafb7597722b40560ad25f12a04cc7ab2 (patch) | |
tree | 8832ce9fb75fbe3ee19e7446723eafc0dd70b5c4 /npc/006-1/crazyfefe.txt | |
parent | ff9c3b3279b77c4a51219cdc7814d5341ce92619 (diff) | |
download | serverdata-6be2d28aafb7597722b40560ad25f12a04cc7ab2.tar.gz serverdata-6be2d28aafb7597722b40560ad25f12a04cc7ab2.tar.bz2 serverdata-6be2d28aafb7597722b40560ad25f12a04cc7ab2.tar.xz serverdata-6be2d28aafb7597722b40560ad25f12a04cc7ab2.zip |
+5 minutes on Candor Battle, and maximum wait time is 4 minutes before auto-wave
Diffstat (limited to 'npc/006-1/crazyfefe.txt')
-rw-r--r-- | npc/006-1/crazyfefe.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/006-1/crazyfefe.txt b/npc/006-1/crazyfefe.txt index 1e8afd8b7..bccfb3eb1 100644 --- a/npc/006-1/crazyfefe.txt +++ b/npc/006-1/crazyfefe.txt @@ -136,13 +136,13 @@ L_CaveLogic: $@FEFE_CAVE_PLAYER_COUNT = getmapusers("006-1"); // New wave condition: All mobs dead, or 5 minutes have passed - if (mobcount("006-1", "Crazyfefe::OnPetDeath") <= 0 || .wtime >= 300) + if (mobcount("006-1", "Crazyfefe::OnPetDeath") <= 0 || .wtime >= 240) goto L_NextRound; // Victory conditions: Too few players are alive OR twenty minutes went on. // WARNING, dead players still in cave are counted, we might never finish the fight. // And a GM might be called to ban everyone inside. - if ($@FEFE_CAVE_PLAYER_COUNT <= any(1,1,1,1,1,1,1,1,1,2) && !$@GM_OVERRIDE || gettimetick(2) >= $@FEFE_DELAY - (60*25)) { + if ($@FEFE_CAVE_PLAYER_COUNT <= any(1,1,1,1,1,1,1,1,1,2) && !$@GM_OVERRIDE || gettimetick(2) >= $@FEFE_DELAY - (60*20)) { goto L_CleanUp; } |