
First, please note that I know very little about the C language.  The
fact that this compiled so easly still amazes me, I am in total 100%
shock.  I made a few guesses while compiling this that may prove to
be wrong, if so then PLEASE tell me so I can fix them.

To get this to compile with Dice 2.06.37 (Demo) I made the
following simple changes:

   helper.c
      907:
         Before: extern char *gets();
          After: /* extern char *gets(); */

   vtxtcn.c
      2:
         Before: #include <io.h>
          After: /* #include <io.h> */

   world.c
      245:
         Before:  return ;
          After:  return 1;

I have also added the following non-required changes:

   vocab.dat
      145:
         Added a new line after "QUIT":
            +Q

   world.c
      14:
         static char *amiga_version = "$VER: world 1.07 Amiga Release 1 (4.8.97)";
      25:
         Added:
            printf("Amiga Release 1 by Patrick Kellum\n");

Now to compile the sources, try the following in a shell.

   dcc vtxtcn.c -o vtxtcn
   run vtxtcn
   dcc vcnvrt.c -o vcnvrt
   run vcnvrt
   dcc world.c helper.c demons.c motion.c parser.c verbs1.c verbs2.c -o world

You will only need the "world" and q1text.dat files to play the game,
everything else can be deleted.


Patrick Kellum
pk1@pobox.com
August 4, 1997

