save file format, and this program uses Version %d.%d. You must find an instance
using that other version in order to resume that Adventure.
# This message is not currently used
-#- SAVE_TAMPERING: |-
-# A dark fog creeps in to surround you. From somewhere in the fog you
-# hear a stern voice. "This Adventure has been tampered with! You have
-# been dabbling in magic, knowing not the havoc you might cause thereby.
-# Leave at once, before you do irrevocable harm!" The fog thickens,
-# until at last you can see nothing at all. Your vision then clears,
-# and you find yourself back in The Real World.
+- SAVE_TAMPERING: |-
+ A dark fog creeps in to surround you. From somewhere in the fog you
+ hear a stern voice. "This Adventure has been tampered with! You have
+ been dabbling in magic, knowing not the havoc you might cause thereby.
+ Leave at once, before you do irrevocable harm!" The fog thickens,
+ until at last you can see nothing at all. Your vision then clears,
+ and you find yourself back in The Real World.
- TWIST_TURN: |-
Sorry, but the path twisted and turned so much that I can't figure
out which way to go to get back.
fclose(fp);
if (save.version != VRSION) {
rspeak(VERSION_SKEW, save.version / 10, MOD(save.version, 10), VRSION / 10, MOD(VRSION, 10));
- } else if (is_valid(save.game)) {
+ } else if (!is_valid(save.game)) {
+ rspeak(SAVE_TAMPERING);
+ exit(EXIT_SUCCESS);
+ } else {
game = save.game;
}
return GO_TOP;
> resume
Can't open file y, try again.
-You're in front of building.
-
-> blast
-
-Blasting requires dynamite.
-
-
-You scored 32 out of a possible 430, using 2 turns.
-
-You are obviously a rank amateur. Better luck next time.
-
-To achieve the next higher rating, you need 14 more points.
+A dark fog creeps in to surround you. From somewhere in the fog you
+hear a stern voice. "This Adventure has been tampered with! You have
+been dabbling in magic, knowing not the havoc you might cause thereby.
+Leave at once, before you do irrevocable harm!" The fog thickens,
+until at last you can see nothing at all. Your vision then clears,
+and you find yourself back in The Real World.