diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-07-13 12:57:51 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-07-13 12:57:51 -0300 |
commit | ef611c44357d8a9db5798165bae855424f335780 (patch) | |
tree | 14216d879b40fee99877939d1ef4f34c5a2902ed /npc/006-1/crazyfefe.txt | |
parent | 5f4aeab1bbb5cb4bde5f94ed6a19c6922cb90ab7 (diff) | |
download | serverdata-ef611c44357d8a9db5798165bae855424f335780.tar.gz serverdata-ef611c44357d8a9db5798165bae855424f335780.tar.bz2 serverdata-ef611c44357d8a9db5798165bae855424f335780.tar.xz serverdata-ef611c44357d8a9db5798165bae855424f335780.zip |
Wrong fix
Diffstat (limited to 'npc/006-1/crazyfefe.txt')
-rw-r--r-- | npc/006-1/crazyfefe.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/npc/006-1/crazyfefe.txt b/npc/006-1/crazyfefe.txt index 05160f254..9b32a6ffd 100644 --- a/npc/006-1/crazyfefe.txt +++ b/npc/006-1/crazyfefe.txt @@ -217,6 +217,7 @@ function NextRound { // Prepare next round, and reward survivors $@FEFE_DIFFICULTY+=$@FEFE_CAVE_PLAYER_COUNT+$@FEFE_WAVE*6; $@FEFE_DIFFICULTY+=(($@FEFE_WAVE/5)*10); + $@FEFE_DIFFICULTY=$@FEFE_DIFFICULTY*13/10; // +30% areatimer "006-1", 20, 20, 70, 60, 10, "Crazyfefe::OnReward"; mapannounce "006-1", "The wave nÂș "+$@FEFE_WAVE+" is starting with " + $@FEFE_CAVE_PLAYER_COUNT + " player(s) left alive." , 0; @@ -273,7 +274,7 @@ function NextRound { // We must lower difficulty according to summoned monster. Only 60% is lowered. // If total level exceeds 250, it will cap at that to prevent excessive "slooping" .@lower=(limit(1, .@lv, 25)*6); - .@lower=.@lower*4/10; // 40% + .@lower=.@lower*7/10; // 70% $@FEFE_DIFFICULTY=$@FEFE_DIFFICULTY-.@lower; } freeloop(false); |