Change prompt generation to be more compatible with the advent430 branch.
authorEric S. Raymond <esr@thyrsus.com>
Wed, 22 Mar 2023 21:09:14 +0000 (17:09 -0400)
committerEric S. Raymond <esr@thyrsus.com>
Wed, 22 Mar 2023 21:09:14 +0000 (17:09 -0400)
79 files changed:
main.c
tests/axebear.chk
tests/axeorama.chk
tests/barehands.chk
tests/bigfail.chk
tests/birdweight.chk
tests/boulder2.chk
tests/carrybird.chk
tests/carryfreebird.chk
tests/cheatresume.chk
tests/cheatresume2.chk
tests/domefail.chk
tests/dragon_secret5.chk
tests/dropcagedbird.chk
tests/dwarf_alternative.chk
tests/eggs_done.chk
tests/eggs_vanish.chk
tests/fail_hint_maze.chk
tests/fail_hint_ogre.chk
tests/fail_hint_ogre2.chk
tests/fail_hint_woods.chk
tests/fillfail.chk
tests/fillvase.chk
tests/flyback.chk
tests/foobug.chk
tests/footslip.chk
tests/gemstates.chk
tests/goback.chk
tests/hint_dark.chk
tests/hint_grate.chk
tests/hint_jade.chk
tests/hint_snake.chk
tests/hint_urn.chk
tests/hint_witt.chk
tests/illformed.chk
tests/intransitivecarry.chk
tests/isofoo.chk
tests/issue36.chk
tests/issue37.chk
tests/lampdim.chk
tests/lampdim2.chk
tests/lockchain.chk
tests/logopt.chk
tests/mazealldiff.chk
tests/mazehint.chk
tests/notrident.chk
tests/ogre_no_dwarves.chk
tests/ogrehint.chk
tests/oilplant.chk
tests/panic.chk
tests/panic2.chk
tests/pirate_carry.chk
tests/pirate_pyramid.chk
tests/pirate_spotted.chk
tests/plover.chk
tests/reach_ledge_short.chk
tests/reach_noclimb.chk
tests/reach_planttop.chk
tests/reincarnate.chk
tests/resumefail.chk
tests/resumefail2.chk
tests/savefail.chk
tests/saveresumeopt.chk
tests/snake_food.chk
tests/softroom.chk
tests/specials.chk
tests/takebird.chk
tests/tall.chk
tests/trident.chk
tests/troll_returns.chk
tests/urntest.chk
tests/urntest2.chk
tests/urntest3.chk
tests/vending.chk
tests/water_plant2.chk
tests/weirdbird.chk
tests/weirddwarf.chk
tests/wittsend.chk
tests/woodshint.chk

diff --git a/main.c b/main.c
index b318cd0f5ce948593696bb3bbe3a4595ed33c24c..f83c4e0dccb36ddc8e6d9a5e3b80ad08c33dcdb2 100644 (file)
--- a/main.c
+++ b/main.c
@@ -55,8 +55,13 @@ char *myreadline(const char *prompt)
      * logfiles for testing purposes.
      */
     /* Normal case - no script arguments */
-    if (settings.argc == 0)
-        return readline(prompt);
+    if (settings.argc == 0) {
+       char *ln = readline(prompt);
+       if (ln == NULL) {
+           fputs(prompt, stdout);
+       }
+        return ln;
+    }
 
     char *buf = malloc(LINESIZE + 1);
     for (;;) {
index 7cff02894e4a16520ea4eb9ac987e9d73b5e0e06..ba465c277f9147275a83da1f8abc9ca12c4d13a4 100644 (file)
@@ -1631,7 +1631,7 @@ There is a little axe lying beside the bear.
 
 The bear is locked to the wall with a golden chain!
 
-
+> 
 You scored 251 out of a possible 430, using 271 turns.
 
 You have reached "Junior Master" status.
index 741ac50fff140c44b59110dd042df172d8dabd98..fbb1d7bd6bfcb96de27dddd0e724ea9373bda4b9 100644 (file)
@@ -652,7 +652,7 @@ mist.  A notice posted on the bridge reads, "Stop! Pay troll!"
 A burly troll stands by the bridge and insists you throw him a
 treasure before you may cross.
 
-
+> 
 You scored 105 out of a possible 430, using 109 turns.
 
 Your score qualifies you as a novice class adventurer.
index 38b0c05ef4afeb433f7e3105b6fe430221b2ca79..f94685f46fb0dbb9ab10f54e624178b730a63fe1 100644 (file)
@@ -307,7 +307,7 @@ The blood-specked body of a huge green dead dragon lies to one side.
 
 For crying out loud, the poor thing is already dead!
 
-
+> 
 You scored 77 out of a possible 430, using 49 turns.
 
 Your score qualifies you as a novice class adventurer.
index eebea66cc06d657a774b2ad8cc56cf5f3e2ea11b..8084d1cc432b7bf23fd0c0811e3f85884cd4434d 100644 (file)
@@ -2537,7 +2537,7 @@ best start wrapping this up.
 
 OK
 
-
+> 
 You scored 207 out of a possible 430, using 416 turns.
 
 You may now consider yourself a "Seasoned Adventurer".
index 0df99e633695b7610e93f7a5ef78df553f834032..24f0904048deae1b4a2910b940b973152497c605 100644 (file)
@@ -456,7 +456,7 @@ attack.  He seems almost amused by your puny effort.
 
 OK
 
-
+> 
 You scored 61 out of a possible 430, using 81 turns.
 
 Your score qualifies you as a novice class adventurer.
index 94303088d77b1b9b6c8e7573952573f0d35d7fb0..87aee68748726d7025199eeb11841c398d6cfca9 100644 (file)
@@ -1479,7 +1479,7 @@ You're in Chamber of Boulders.
 
 There are rare spices here!
 
-
+> 
 You scored 119 out of a possible 430, using 238 turns.
 
 Your score qualifies you as a novice class adventurer.
index 7f3b931c30890b84467d8281c332e631c09de952..55f6ac9971edf66ecf3d49aabbb9dfd7ab65b397 100644 (file)
@@ -75,7 +75,7 @@ You can catch the bird, but you cannot carry it.
 
 The little bird is now dead.  Its body disappears.
 
-
+> 
 You scored 32 out of a possible 430, using 10 turns.
 
 You are obviously a rank amateur.  Better luck next time.
index dcaf64b713520981fdedd46e7ff5206b2b3e160b..870ea4b664b0c969ab0b1390f660f940f879082c 100644 (file)
@@ -327,7 +327,7 @@ The bird eyes you suspiciously and flutters away.  A moment later you
 feel something wet land on your head, but upon looking up you can see
 no sign of the culprit.
 
-
+> 
 You scored 113 out of a possible 430, using 57 turns.
 
 Your score qualifies you as a novice class adventurer.
index 08c12635b2eb60658011ddb85a9809235a458b2b..a56a78ba24b58a1cf55586b12572b00dd89f3eed 100644 (file)
@@ -13,7 +13,7 @@ You are standing at the end of a road before a small brick building.
 Around you is a forest.  A small stream flows out of the building and
 down a gully.
 
-
+> 
 Now let's see you do it without suspending in mid-Adventure.
 
 You scored 9031 out of a possible 430, using 0 turns.
index d698a26ca55d5ccb1385b144ed30414cb0d9542c..af3648c008d7e00be2c671b93ed7c10c6d29e90e 100644 (file)
@@ -13,7 +13,7 @@ You are standing at the end of a road before a small brick building.
 Around you is a forest.  A small stream flows out of the building and
 down a gully.
 
-
+> 
 Now let's see you do it without suspending in mid-Adventure.
 
 You scored 10031 out of a possible 430, using 0 turns.
index 000995b96b6081598559cabf51456268abcaf963..961b8c5fff3dfbfad50a1a83fe3a1eddf87de26b 100644 (file)
@@ -166,7 +166,7 @@ The dome is unclimbable.
 
 You're in Hall of Mists.
 
-
+> 
 You scored 63 out of a possible 430, using 24 turns.
 
 Your score qualifies you as a novice class adventurer.
index 1d5e121192bb4116cf6c397a7836a8aa433911a4..b469f27a638127aa166385d9f931f02ca31e1834 100644 (file)
@@ -246,7 +246,7 @@ There is a Persian rug spread out on the floor!
 
 The blood-specked body of a huge green dead dragon lies to one side.
 
-
+> 
 You scored 65 out of a possible 430, using 32 turns.
 
 Your score qualifies you as a novice class adventurer.
index b5c64e68dca0e6eea217a53e2b8a17bd2092f0bb..5f382a3379384d0b7620f5514398f0576c189ed1 100644 (file)
@@ -150,7 +150,7 @@ A huge green fierce snake bars the way!
 
 There's nothing here it wants to eat (except perhaps you).
 
-
+> 
 You scored 59 out of a possible 430, using 25 turns.
 
 Your score qualifies you as a novice class adventurer.
index 5fcaf06251675151a259e50a078e723886a4c92d..d9adb0495a18ece39bc8b7cb8221cad12ea53eaa 100644 (file)
@@ -58,3 +58,4 @@ Oh dear, you seem to have gotten yourself killed.  I might be able to
 help you out, but I've never really done this before.  Do you want me
 to try to reincarnate you?
 
+> 
\ No newline at end of file
index 70dcf03ebef74e88b2067e8c8da54f0df963a247..4e85042c31a92affd81287004c8d1067aa23e41b 100644 (file)
@@ -1223,7 +1223,7 @@ Wicker cage
 Black rod
 Small bottle
 
-
+> 
 You scored 77 out of a possible 430, using 190 turns.
 
 Your score qualifies you as a novice class adventurer.
index 2fe057968d27892f3c35df3f6c8e30dca41c475f..256ac5eead07caf12f025ee3e621728effa27a59 100644 (file)
@@ -435,7 +435,7 @@ There is a large nest here, full of golden eggs!
 
 The passage here is blocked by a recent cave-in.
 
-
+> 
 You scored 67 out of a possible 430, using 66 turns.
 
 Your score qualifies you as a novice class adventurer.
index 9973218479c3492128108fb1bda9481ce9cf6248..46b0aa7530eca2e4f095860193fb4d37a363330f 100644 (file)
@@ -436,7 +436,7 @@ OK
 
 OK
 
-
+> 
 You scored 59 out of a possible 430, using 93 turns.
 
 Your score qualifies you as a novice class adventurer.
index 71a9d72a437c2efa73af3b7f6033f883ab266a42..4d300b71397b12de09ba43e95e86945411c49102 100644 (file)
@@ -1638,7 +1638,7 @@ OK
 
 OK
 
-
+> 
 You scored 77 out of a possible 430, using 263 turns.
 
 Your score qualifies you as a novice class adventurer.
index 28b673ed92721bfe42435994d0522adf3c81c188..3437b226916dea0abe937d457eca7c70b11ad3b6 100644 (file)
@@ -394,7 +394,7 @@ You are in a large chamber with passages to the west and north.
 
 A formidable ogre bars the northern exit.
 
-
+> 
 You scored 63 out of a possible 430, using 56 turns.
 
 Your score qualifies you as a novice class adventurer.
index 990cf8e17fa96b1b5d672a9b41d5dbd452128f43..ca5ac5ee1b00f8b83062e0d8a59bc61413aea9cb 100644 (file)
@@ -109,7 +109,7 @@ OK
 
 OK
 
-
+> 
 You scored 32 out of a possible 430, using 25 turns.
 
 You are obviously a rank amateur.  Better luck next time.
index fd3d096e4869bd8cbd4aeedfd5b9bd5ee0bcede6..11f58ebcf9b80cb2f0d1cb09732608945cfc4ffa 100644 (file)
@@ -57,7 +57,7 @@ You can't fill that.
 
 Your bottle is already full.
 
-
+> 
 You scored 32 out of a possible 430, using 10 turns.
 
 You are obviously a rank amateur.  Better luck next time.
index 5d8c889d2cb73a81362f37280cd2ccf3c7aff54e..cbbeea44073e8412a8f34a963f9f467ee06da7ae 100644 (file)
@@ -1463,7 +1463,7 @@ A small velvet pillow lies on the ground.
 
 You can't be serious!
 
-
+> 
 You scored 191 out of a possible 430, using 241 turns.
 
 You may now consider yourself a "Seasoned Adventurer".
index 2d8750e07fe834f7ea1001470d9bf39feece689b..a60fe97c1e0e9cf61826cc12b5d3bc5431f26f3b 100644 (file)
@@ -2040,7 +2040,7 @@ A brilliant blue star sapphire is here!
 
 > 
 
-
+> 
 You scored 257 out of a possible 430, using 337 turns.
 
 You have reached "Junior Master" status.
index 046b8206d76da30c39070b8a0ed92341036a0926..c121eb8720e98fa211fac69c9d06516a05e32329 100644 (file)
@@ -1694,7 +1694,7 @@ Nothing happens.
 
 Nothing happens.
 
-
+> 
 You scored 311 out of a possible 430, using 291 turns.
 
 You have reached "Junior Master" status.
index ef2f59507846af6f1c2be232c706505a835103f3..a9f28d3ef2ae67e3259ed3712a7db8993173902e 100644 (file)
@@ -796,7 +796,7 @@ There is food here.
 
 > 
 
-
+> 
 You scored 61 out of a possible 430, using 121 turns.
 
 Your score qualifies you as a novice class adventurer.
index db58aa40152f86146e8ab5259b90f2133cea3a27..8739f932eba514e86a48b5bd9b00894ea0526a7a 100644 (file)
@@ -2145,7 +2145,7 @@ There is a ruby resting in a small cavity in the rock!
 
 There is a Persian rug spread out on the floor!
 
-
+> 
 You scored 271 out of a possible 430, using 365 turns.
 
 You have reached "Junior Master" status.
index 27d0cb84e6005a8ded5e90c6934a3573e1f6b085..fb6eb0f50ac7b5655809a2d69f5b126beedc1abd 100644 (file)
@@ -2527,7 +2527,7 @@ best start wrapping this up.
 
 OK
 
-
+> 
 You scored 207 out of a possible 430, using 413 turns.
 
 You may now consider yourself a "Seasoned Adventurer".
index cee6051050195f28f95ab2e8bee63fad2b34b261..1a95bf829c04d66ba824158e7c9ecec201a913de 100644 (file)
@@ -150,7 +150,7 @@ There is a way to explore that region without having to worry about
 falling into a pit.  None of the objects available is immediately
 useful in discovering the secret.
 
-
+> 
 You scored 54 out of a possible 430, using 27 turns.
 
 Your score qualifies you as a novice class adventurer.
index 652b639a6b1b7214156f2dbd08416ca6ce2ba0b0..fa7d80df5e4226330be5b1304708cea0456ff2e0 100644 (file)
@@ -83,7 +83,7 @@ The grate is very solid and has a hardened steel lock.  You cannot
 enter without a key, and there are no keys nearby.  I would recommend
 looking elsewhere for the keys.
 
-
+> 
 You scored 30 out of a possible 430, using 10 turns.
 
 You are obviously a rank amateur.  Better luck next time.
index 446cc3338eb98e690e05af812f145d275536f055..e8d9f8187a9cea0524adff6a68e9819aa801cdab 100644 (file)
@@ -1849,7 +1849,7 @@ Do you want the hint?
 Once you've found all the other treasures, it is no longer possible to
 locate the one you're now missing.
 
-
+> 
 You scored 91 out of a possible 430, using 297 turns.
 
 Your score qualifies you as a novice class adventurer.
index 78ca80f114d94b17259344d0b4fce697383f59f5..d5a1c44c278927f00a8e5bdf12dda6ef2a8af996 100644 (file)
@@ -192,7 +192,7 @@ You can't kill the snake, or drive it away, or avoid it, or anything
 like that.  There is a way to get by, but you don't have the necessary
 resources right now.
 
-
+> 
 You scored 55 out of a possible 430, using 25 turns.
 
 Your score qualifies you as a novice class adventurer.
index d51adc1d0f59be85189434d71032e51535c8b439..63b75420b0045b466919e8081916c2dfef6e7d1a 100644 (file)
@@ -74,7 +74,7 @@ Do you want the hint?
 This section is quite advanced.  Find the cave first.
 
 
-
+> 
 You scored 30 out of a possible 430, using 11 turns.
 
 You are obviously a rank amateur.  Better luck next time.
index 5afca9f8ac328a0ee50250f3b40dc9c8748cbd3c..315f402c220930c5995ab19dc49674c0fd6104dc 100644 (file)
@@ -2430,7 +2430,7 @@ Do you want the hint?
 Don't go west.
 
 
-
+> 
 You scored 339 out of a possible 430, using 397 turns.
 
 Your score puts you in Master Adventurer Class C.
index e18fbf994834beea82d7d5ce4ebb75778c12f0a3..2f9cad3724e7b45b8ce8dfed196d70bf4f06aa47 100644 (file)
@@ -697,3 +697,4 @@ I am prepared to give you a hint, but it will cost you 2 points.
 
 Do you want the hint?
 
+> 
\ No newline at end of file
index 510a9bdbff946b7f28b035065418f04af507ecad..4fe96740a757bc7dbe298692e917e1990e3c2583 100644 (file)
@@ -35,7 +35,7 @@ OK
 
 OK
 
-
+> 
 You scored 32 out of a possible 430, using 5 turns.
 
 You are obviously a rank amateur.  Better luck next time.
index 1c0cbaf06f77f34448c3ab03934aa7d06950cc41..23f17a74649581617292e84f8162a2d0ab1d885c 100644 (file)
@@ -11,7 +11,7 @@ down a gully.
 
 Nothing happens.
 
-
+> 
 You scored 32 out of a possible 430, using 1 turn.
 
 You are obviously a rank amateur.  Better luck next time.
index 412f0193dd36de13714b3662f71ed1eb8a760248..99d82dfb4ba26c1b845dbcece56a6ad5e43ec616 100644 (file)
@@ -33,7 +33,7 @@ Get what?
 
 OK
 
-
+> 
 You scored 32 out of a possible 430, using 3 turns.
 
 You are obviously a rank amateur.  Better luck next time.
index 6d8772b41940c666fbdeea09b2bb4c77705fe458..4aa9320e2c1c60c9055619a782f2f70fcb188ecd 100644 (file)
@@ -32,7 +32,7 @@ OK
 You are currently holding the following:
 Tasty food
 
-
+> 
 You scored 32 out of a possible 430, using 4 turns.
 
 You are obviously a rank amateur.  Better luck next time.
index 2ea31c6a25c33c14d3dace8c20ebc79d593ca1d5..cfbb0103e7e1290d8974dec590c394a083426687 100644 (file)
@@ -2508,7 +2508,7 @@ There is a message scrawled in the dust in a flowery script, reading:
 There is a massive vending machine here, swung back to reveal a
 southward passage.
 
-
+> 
 You scored 343 out of a possible 430, using 406 turns.
 
 Your score puts you in Master Adventurer Class C.
index bd6215a1f744423d962fbd48902c387579eb3eda..740e7190bc402aec11d50ce646d49007d25c1ecc 100644 (file)
@@ -2595,7 +2595,7 @@ It is now pitch dark.  If you proceed you will likely fall into a pit.
 
 Your lamp has run out of power.
 
-
+> 
 You scored 368 out of a possible 430, using 423 turns.
 
 Your score puts you in Master Adventurer Class C.
index 791991f88de8eb67a4ebbfa9f4034f2263c58d58..ff334a26ae837edbc7331dd35e1372e056bb976a 100644 (file)
@@ -1888,3 +1888,4 @@ Oh dear, you seem to have gotten yourself killed.  I might be able to
 help you out, but I've never really done this before.  Do you want me
 to try to reincarnate you?
 
+> 
\ No newline at end of file
index 4defeaee7046dfc4da11bc38861bab7375da5f87..e48c318d441e6e042a8c6c32d74e3d0de954812e 100644 (file)
@@ -21,7 +21,7 @@ There is a bottle of water here.
 
 > 
 
-
+> 
 You scored 32 out of a possible 430, using 1 turn.
 
 You are obviously a rank amateur.  Better luck next time.
index 87aeb0d9e6bd74b88eeb6e93f038e215423e3a2d..00168a41352260464ecba606ab9258f809e13929 100644 (file)
@@ -2509,7 +2509,7 @@ You are in a maze of little twisty passages, all different.
 
 You are in a twisting little maze of passages, all different.
 
-
+> 
 You scored 343 out of a possible 430, using 409 turns.
 
 Your score puts you in Master Adventurer Class C.
index 0d001196401df930f3ab529520727fc9007f614d..5c72b61fa461599dc43b3bd7cd2719d2879e6a54 100644 (file)
@@ -618,7 +618,7 @@ Do you want the hint?
 
 You can make the passages look less alike by dropping things.
 
-
+> 
 You scored 71 out of a possible 430, using 113 turns.
 
 Your score qualifies you as a novice class adventurer.
index 8e08825c28f4a745df65421696ae78820b02c683..88a8d6d9dbcf93909381a1b535979370750650ef 100644 (file)
@@ -1316,7 +1316,7 @@ You're at brink of small pit.
 
 > 
 
-
+> 
 You scored 179 out of a possible 430, using 224 turns.
 
 You may now consider yourself a "Seasoned Adventurer".
index dff2bc5c71792af72751def6355aaab320b255e8..37492fa45aa60b3315e4b9ffc0d6287fc847b4b5 100644 (file)
@@ -152,7 +152,7 @@ A formidable ogre bars the northern exit.
 The ogre, who despite his bulk is quite agile, easily dodges your
 attack.  He seems almost amused by your puny effort.
 
-
+> 
 You scored 59 out of a possible 430, using 23 turns.
 
 Your score qualifies you as a novice class adventurer.
index dbb8d8f088f3352a76b36603f8d483f751b96d20..9391193ce4c0fc82a6021245dab31734df59c948 100644 (file)
@@ -720,7 +720,7 @@ Brass lantern
 Leporine appendage
 Platinum pyramid
 
-
+> 
 You scored 101 out of a possible 430, using 108 turns.
 
 Your score qualifies you as a novice class adventurer.
index 2f74824515b037133faffcf856fbca4d552a16db..167a3b7a9b1dc7d323cb51af7d0a24ff2eeddf44 100644 (file)
@@ -1146,7 +1146,7 @@ The plant indignantly shakes the oil off its leaves and asks, "Water?"
 
 You can't be serious!
 
-
+> 
 You scored 185 out of a possible 430, using 187 turns.
 
 You may now consider yourself a "Seasoned Adventurer".
index bd23880213403b0f8f119f279cd3c80388516004..e44e632bf3909d15124ab51a6c757964fd89a4b9 100644 (file)
@@ -2631,7 +2631,7 @@ The grate is locked.
 A mysterious recorded voice groans into life and announces:
    "This exit is closed.  Please leave via main office."
 
-
+> 
 You scored 365 out of a possible 430, using 422 turns.
 
 Your score puts you in Master Adventurer Class C.
index ac42e4643889cc4cbb8194dc78ae7058408ff680..db66581016b18fd5ec5a1871972f1ebeafb43005 100644 (file)
@@ -2592,7 +2592,7 @@ A mysterious recorded voice groans into life and announces:
 
 You're at "Y2".
 
-
+> 
 You scored 365 out of a possible 430, using 414 turns.
 
 Your score puts you in Master Adventurer Class C.
index f2e789384dd4c249741baef30b39c7c51ff5af16..72b1681d127ac91992bc699813342d5410704521 100644 (file)
@@ -316,7 +316,7 @@ You are on the west side of the fissure in the Hall of Mists.
 
 A crystal bridge spans the fissure.
 
-
+> 
 You scored 67 out of a possible 430, using 43 turns.
 
 Your score qualifies you as a novice class adventurer.
index a7ac101dd2a1f33565fab57f68330d4bd4103ed5..873cdaa90e0bfb7024a90c17762efb6a85f5f498 100644 (file)
@@ -356,7 +356,7 @@ You are currently holding the following:
 Brass lantern
 Wicker cage
 
-
+> 
 You scored 69 out of a possible 430, using 50 turns.
 
 Your score qualifies you as a novice class adventurer.
index b57d7e7b886bcbbaed97f2a6fb7d69e7e11223c4..e8fad722925c190dcac426bed88ba3873089e949 100644 (file)
@@ -1839,7 +1839,7 @@ You're in Hall of Mists.
 
 Rough stone steps lead up the dome.
 
-
+> 
 You scored 123 out of a possible 430, using 295 turns.
 
 You have achieved the rating: "Experienced Adventurer".
index 67e58af8fee92246a71401f799e93c665675b686..c59ae8651dd3e5f10c69b76c383570201440299c 100644 (file)
@@ -1169,7 +1169,7 @@ Egg-sized emerald
 
 It is now pitch dark.  If you proceed you will likely fall into a pit.
 
-
+> 
 You scored 169 out of a possible 430, using 187 turns.
 
 You have achieved the rating: "Experienced Adventurer".
index d6f817556cb21c6f1a2db5191f05200095713700..7e57aa11890d04fc96d0b98ae8235c4e46bb41fc 100644 (file)
@@ -1475,7 +1475,7 @@ There is a Persian rug here, hovering in mid-air!
 
 A brilliant blue star sapphire is here!
 
-
+> 
 You scored 81 out of a possible 430, using 237 turns.
 
 Your score qualifies you as a novice class adventurer.
index 0a06bd039254e169117a45ad6b91048e7f222da3..6f42d7c7634c631551d3f8c6befbb19719c89867 100644 (file)
@@ -170,7 +170,7 @@ You're in west pit.
 
 There is a tiny little plant in the pit, murmuring "water, water, ..."
 
-
+> 
 You scored 59 out of a possible 430, using 24 turns.
 
 Your score qualifies you as a novice class adventurer.
index 8009e1fa8d2e60d38b244bebe02f44c0740d3c24..c19c9d2748cc6d7c805b91c13f70e8ef04c28582 100644 (file)
@@ -387,7 +387,7 @@ You're at west end of Twopit Room.
 
 The top of a 12-foot-tall beanstalk is poking out of the west pit.
 
-
+> 
 You scored 63 out of a possible 430, using 50 turns.
 
 Your score qualifies you as a novice class adventurer.
index c8a884260d569b0149593fe9728fc1929cfa320c..edaaf8a49d6e0be009132dcf2e9249ef6910a9a1 100644 (file)
@@ -143,7 +143,7 @@ There is food here.
 
 There is a bottle of water here.
 
-
+> 
 You scored 47 out of a possible 430, using 18 turns.
 
 Your score qualifies you as a novice class adventurer.
index 7be9b12bc2b5e5d5f9c0b6ba1d813232ee4a21be..976fcc9bbda0027d5c54d5e0ad2a07c8e5080f17 100644 (file)
@@ -24,9 +24,10 @@ Is this acceptable?
 OK
 Can't open file /badfilename, try again.
 
+File name: 
 You're in front of building.
 
-
+> 
 You scored 32 out of a possible 430, using 1 turn.
 
 You are obviously a rank amateur.  Better luck next time.
index 756c0943867c6cbaa2d38067e8775959df04caa1..931c72dd4ac710de19f3846bb409059b86e75a71 100644 (file)
@@ -16,7 +16,7 @@ using that other version in order to resume that Adventure.
 
 You're in front of building.
 
-
+> 
 You scored 32 out of a possible 430, using 1 turn.
 
 You are obviously a rank amateur.  Better luck next time.
index de89a538adabf32a835fa140f1ee9767dc6eccd7..0f005a2e2f2ec5f6c00523cd87646c54b08c0137 100644 (file)
@@ -25,9 +25,10 @@ Is this acceptable?
 OK
 Can't open file /, try again.
 
+File name: 
 You're in front of building.
 
-
+> 
 You scored 27 out of a possible 430, using 1 turn.
 
 You are obviously a rank amateur.  Better luck next time.
index bc08d9ba641c511a5132e10b1d9d6bd3a9763d92..6e8ead0deaea1b68374b488df96aa38e189c30a8 100644 (file)
@@ -1,7 +1,7 @@
 
 You're in front of building.
 
-
+> 
 You scored 27 out of a possible 430, using 2 turns.
 
 You are obviously a rank amateur.  Better luck next time.
index 96f690003b16aa1181916eb6198010d66b96d4fa..56e73b377ca15982cea275c3a323d1a643c404f9 100644 (file)
@@ -151,7 +151,7 @@ Set of keys
 Brass lantern
 Wicker cage
 
-
+> 
 You scored 57 out of a possible 430, using 22 turns.
 
 Your score qualifies you as a novice class adventurer.
index cc168f3bd8f45f35a91d8b6cae5a4cc07f99034e..3e9c86dd5f34fb2fbfaf5d51974811927ac6bfdc 100644 (file)
@@ -1350,7 +1350,7 @@ There is a delicate, precious, ming vase here!
 
 > 
 
-
+> 
 You scored 191 out of a possible 430, using 223 turns.
 
 You may now consider yourself a "Seasoned Adventurer".
index 75f457eef4c76ecc243e76c2d350921d155562c5..06061171530dbc1ce383507e4d9c138206c6ab81 100644 (file)
@@ -131,7 +131,7 @@ can now save a game and resume it at once (formerly you had to wait a
 while first), but it now costs you a few points each time you save the
 game.  Saved games are now stored in much smaller files than before.
 
-
+> 
 You scored 32 out of a possible 430, using 15 turns.
 
 You are obviously a rank amateur.  Better luck next time.
index d69f0945077e519d2d8b49116187f73ae711594d..6c6b64dccbbac55cef01037ee89705d72665fff2 100644 (file)
@@ -2076,7 +2076,7 @@ The grate is locked.
 
 OK
 
-
+> 
 You scored 391 out of a possible 430, using 345 turns.
 
 Your score puts you in Master Adventurer Class B.
index d962f775a7b341154e3e6fe9585c3708b86d2204..05f456b7f176fa29028379cca64765bfd8b7027c 100644 (file)
@@ -1024,7 +1024,7 @@ seems to open up.
 
 The canyon runs into a mass of boulders -- dead end.
 
-
+> 
 You scored 77 out of a possible 430, using 163 turns.
 
 Your score qualifies you as a novice class adventurer.
index 37de9fe65bf391238ec134e627c148fbf1bb344d..c27ef423a534fa30423c477b530ef8610630350a 100644 (file)
@@ -1420,7 +1420,7 @@ Your lamp is now on.
 
 You're at "Y2".
 
-
+> 
 You scored 167 out of a possible 430, using 231 turns.
 
 You have achieved the rating: "Experienced Adventurer".
index 6b597d91cfdb4f4146aa5e55e886719510b60ba9..67151266fe1810f1eec89500bd44eb16806d200a 100644 (file)
@@ -912,7 +912,7 @@ mist.  A notice posted on the bridge reads, "Stop! Pay troll!"
 A burly troll stands by the bridge and insists you throw him a
 treasure before you may cross.
 
-
+> 
 You scored 75 out of a possible 430, using 140 turns.
 
 Your score qualifies you as a novice class adventurer.
index 0ca8748fea56f5ea6aec83d7b11112feef970a93..8724f9d793dda2759d4644207e14a7650f2da51d 100644 (file)
@@ -2105,7 +2105,7 @@ A small urn full of oil is embedded in the rock.
 If you mean to use the Persian rug, it does not appear inclined to
 cooperate.
 
-
+> 
 You scored 265 out of a possible 430, using 358 turns.
 
 You have reached "Junior Master" status.
index 25de76bda8b0972a62d9ad25d9a16a6581538314..8f8e9cca2a6d8d6e3a043ae4784524c62dcffaef 100644 (file)
@@ -2030,7 +2030,7 @@ There is nothing here with which to fill it.
 
 The urn is now dark.
 
-
+> 
 You scored 267 out of a possible 430, using 344 turns.
 
 You have reached "Junior Master" status.
index 1c95ae3052a1abc2fd58a73f74097a7eda4c6e26..34c30e7adb7602537e2934b924017dfc6f5d7282 100644 (file)
@@ -2015,7 +2015,7 @@ You are wandering aimlessly through the forest.
 
 There is nothing here with which to fill the bottle.
 
-
+> 
 You scored 267 out of a possible 430, using 340 turns.
 
 You have reached "Junior Master" status.
index 6e67b28f73d3a0b9d046be0dbb043b32e65aee26..4f837bc003b7361da5594115ff36c1039a304c29 100644 (file)
@@ -305,7 +305,7 @@ Attack what?
 
 The vending machine swings back to block the passage.
 
-
+> 
 You scored 75 out of a possible 430, using 56 turns.
 
 Your score qualifies you as a novice class adventurer.
index 1cbf119aafe79513082edc344419489772378b3a..bc1efe306c59d4878b7f65daf35a5fc9485105ad 100644 (file)
@@ -602,7 +602,7 @@ The top of a 12-foot-tall beanstalk is poking out of the west pit.
 
 What do you want to do with the water?
 
-
+> 
 You scored 65 out of a possible 430, using 85 turns.
 
 Your score qualifies you as a novice class adventurer.
index 52f5eb7217f39e5d7a9468b78725336233da42bc..c583787bd2e749d28de21751acebe2ef32de5c32 100644 (file)
@@ -218,7 +218,7 @@ You're outside grate.
 
 The grate is open.
 
-
+> 
 You scored 30 out of a possible 430, using 37 turns.
 
 You are obviously a rank amateur.  Better luck next time.
index 1d73e0e218585a4442b2a8b03bbcab5c38bed684..0216bc53774702194a1742f0fd498c184204cf2e 100644 (file)
@@ -514,7 +514,7 @@ With what?  Your bare hands?
 
 Feed what?
 
-
+> 
 You scored 103 out of a possible 430, using 88 turns.
 
 Your score qualifies you as a novice class adventurer.
index dcd9bd4088689cccd59d05381fed3c221c1e42be..b92cf2f802ef29044a09c595520f6f94c2eb254e 100644 (file)
@@ -2628,7 +2628,7 @@ It is now pitch dark.  If you proceed you will likely fall into a pit.
 
 You're in Plover Room.
 
-
+> 
 You scored 342 out of a possible 430, using 423 turns.
 
 Your score puts you in Master Adventurer Class C.
index c26d4710aba38b980b02cd9495bda74b8781eada..7ea7cdd809fb2dadf14427af71cf2dcbf85de6fd 100644 (file)
@@ -314,7 +314,7 @@ You are wandering aimlessly through the forest.
 
 You're at end of road.
 
-
+> 
 You scored 30 out of a possible 430, using 45 turns.
 
 You are obviously a rank amateur.  Better luck next time.