diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-04 17:19:55 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-04 17:19:55 -0300 |
commit | 6a6b7677cced2ca8b5906a68795b575b8a3f5815 (patch) | |
tree | b1fd56a454dc77e23ec77f8b19882000bd818775 /npc/006-1 | |
parent | cccf2e99316e0ebac75b6f275d025c576908ea17 (diff) | |
download | serverdata-6a6b7677cced2ca8b5906a68795b575b8a3f5815.tar.gz serverdata-6a6b7677cced2ca8b5906a68795b575b8a3f5815.tar.bz2 serverdata-6a6b7677cced2ca8b5906a68795b575b8a3f5815.tar.xz serverdata-6a6b7677cced2ca8b5906a68795b575b8a3f5815.zip |
Fix more bugs :inGame_e:
Diffstat (limited to 'npc/006-1')
-rw-r--r-- | npc/006-1/crazyfefe.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/npc/006-1/crazyfefe.txt b/npc/006-1/crazyfefe.txt index ab61ab64c..c67aa748f 100644 --- a/npc/006-1/crazyfefe.txt +++ b/npc/006-1/crazyfefe.txt @@ -132,7 +132,9 @@ L_CaveLogic: // TODO L_NextRound: // Victory conditions - if ($@FIGHT_CAVE_LEVEL >= 2200 || $@FIGHT_CAVE_PLAYER_COUNT == 1) + // FIXME debug + //if ($@FIGHT_CAVE_LEVEL >= 2200 || $@FIGHT_CAVE_PLAYER_COUNT == 1) + if ($@FIGHT_CAVE_LEVEL >= 2200) goto L_CleanUp; // Prepare next round @@ -184,8 +186,7 @@ L_Summon: end; L_CleanUp: - npctalk3 "Game Over!"; - mapannounce "006-1", "Who will be the next to fall on Crazyfefe's Cave?", 0; + mapannounce "006-1", "Game over! Who will be the next to fall on Crazyfefe's Cave?", 0; areatimer 0, "006-1", 20, 20, 70, 60, 10, "Crazyfefe::OnReward"; $@FIGHT_CAVE_LEVEL = 0; |