summaryrefslogtreecommitdiff
path: root/npc/006-1
diff options
context:
space:
mode:
Diffstat (limited to 'npc/006-1')
-rw-r--r--npc/006-1/crazyfefe.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/006-1/crazyfefe.txt b/npc/006-1/crazyfefe.txt
index 204e8cb14..405a91ecb 100644
--- a/npc/006-1/crazyfefe.txt
+++ b/npc/006-1/crazyfefe.txt
@@ -59,10 +59,10 @@ L_Next:
close;
L_StartFight:
- /* FIXME debug
+ /* to debug, embrace this code in comments */
if (getmapusers("006-1") < 3)
goto L_NotEnoughPlayers;
- */
+
$@FIGHT_CAVE_LEVEL = 1;
$@FEFE_DELAY = gettimetick(2)+.delay;
$@FIGHT_CAVE_PLAYER_COUNT = getmapusers("006-1");
@@ -132,9 +132,9 @@ L_CaveLogic:
// TODO
L_NextRound:
// Victory conditions
- // FIXME debug
- //if ($@FIGHT_CAVE_LEVEL >= 2200 || $@FIGHT_CAVE_PLAYER_COUNT == 1)
- if ($@FIGHT_CAVE_LEVEL >= 2200)
+ if ($@FIGHT_CAVE_LEVEL >= 2200 || $@FIGHT_CAVE_PLAYER_COUNT <= 1)
+ // To enable debug, switch lines
+ //if ($@FIGHT_CAVE_LEVEL >= 2200)
goto L_CleanUp;
// Prepare next round
@@ -220,7 +220,7 @@ OnTimer5000:
end;
// Announces and attempts to start the fight once time run out
-OnTimer30000: // FIXME debug
+//OnTimer30000: // to enable debug, uncomment this line
OnTimer300000:
if ($@FIGHT_CAVE_LEVEL > 0) end;
if ($@FEFE_DELAY <= gettimetick(2)) goto L_StartFight;