diff options
Diffstat (limited to 'npc/017-1')
-rw-r--r-- | npc/017-1/stranger.txt | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/npc/017-1/stranger.txt b/npc/017-1/stranger.txt index c978bc067..107eeee61 100644 --- a/npc/017-1/stranger.txt +++ b/npc/017-1/stranger.txt @@ -74,13 +74,22 @@ L_Quizz: goto L_Easy; L_Easy: - goto L_Medium; + if (0171_Stranger_BlackBox(EASY)) + goto L_Medium; + else + goto L_Fail; L_Medium: - goto L_Hard; + if (0171_Stranger_BlackBox(MEDIUM)) + goto L_Hard; + else + goto L_Fail; L_Hard: - goto L_Reward; + if (0171_Stranger_BlackBox(HARD)) + goto L_Reward; + else + goto L_Fail; // Failure |