home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / GAMES / informosk.lha / shell.inf < prev    next >
Text File  |  1993-11-27  |  668b  |  34 lines

  1. ! ----------------------------------------------------------------------------
  2. ! Shell of a game
  3. ! ----------------------------------------------------------------------------
  4.  
  5. Constant Story "SHELL";
  6. Constant Headline "^An Interactive Skeleton^\
  7.              Copyright (c) 1993 by (your name here).^";
  8.  
  9. Release 1;
  10. Statusline score;
  11.  
  12. #include "Parser";
  13.  
  14. Global task_scores initial 0;
  15.  
  16. #include "VerbLib";
  17.  
  18. Object room "Blank Room" nothing
  19.   with longdesc "An empty room."
  20.   has  light;
  21.  
  22. [ Initialise;
  23.   location=room;
  24.   print "^^^^^Welcome to the shell...^^";
  25. ];
  26.  
  27. [ PrintRank;
  28.   print ", earning you the rank of ";
  29.   print_ret "vacancy.";
  30. ];
  31.  
  32. #include "Grammar";
  33. end;
  34.