summaryrefslogtreecommitdiff
path: root/npc/006-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-06-04 17:28:28 -0300
committerJesusaves <cpntb1@ymail.com>2018-06-04 17:28:28 -0300
commit0eedfaadb10d1cafc3ba8feeb68bdc7bd61bc078 (patch)
treeb9853dbeddaeac1566049ce60a5bc5de77384112 /npc/006-1
parente08bf886f6e537f7a1482af3f23d899dc4cdf412 (diff)
downloadserverdata-0eedfaadb10d1cafc3ba8feeb68bdc7bd61bc078.tar.gz
serverdata-0eedfaadb10d1cafc3ba8feeb68bdc7bd61bc078.tar.bz2
serverdata-0eedfaadb10d1cafc3ba8feeb68bdc7bd61bc078.tar.xz
serverdata-0eedfaadb10d1cafc3ba8feeb68bdc7bd61bc078.zip
Disable debug mode, ready for live testing with @Saulc now (I hope)
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;