home *** CD-ROM | disk | FTP | other *** search
/ Level 2004 April / Level_2004-04_112_cda.bin / data1.cab / GameFiles / Modules / Demo / module.def < prev    next >
Encoding:
Text File  |  2004-03-19  |  2.0 KB  |  54 lines

  1. // Revenant - Copyright 1999 Cinematix Studios, Inc.
  2. // ******* Revenant Module Description File ******* 
  3.  
  4. // Module flags (use with FLAGS tag)
  5. // You can use multiple flags together by using the '|' symbol (i.e. FLAG1 | FLAG2 | FLAG3)
  6. #define GAMEMOD_SINGLEPLAYER            0x0002    // Is a singleplayer module
  7. #define GAMEMOD_MULTIPLAYER            0x0004    // Is a multiplayer module
  8. #define GAMEMOD_DEATHMATCH            0x0008    // This module was designed for deathmatch
  9. #define GAMEMOD_MUD                0x0010    // This module is a mud style module
  10. #define GAMEMOD_ZIPFILE                0x0020    // Set internally if module is in a ZIP format pak file
  11. #define GAMEMOD_ISDEMO                0x0040    // This is a demo module (causes game to run in demo mode)
  12. #define GAMEMOD_SELFRUNNING            0x0080    // This is a self running demo (causes game to autorun main char script)
  13.  
  14.  
  15. MODULE "Demo" // Same as directory name!!
  16. BEGIN
  17.  
  18.   // Primary Information
  19.   // *******************
  20.     NAME            "Revenant Public Demo"
  21.       // A descriptive module name (less than 40 characters)
  22.  
  23.     VERSION        1.0
  24.       // Version number of module so that all players play same version of module.
  25.       // Major version indicates major download release.  Minor usually indicates a patch version.
  26.  
  27.     GAMEVERSION    1.0
  28.       // Minimum version of game required to play this module.
  29.       // Major version indicates a new retail release, minor version indicates patch or upgrade.
  30.  
  31.     UNIQUEID    0x54ce7002
  32.       // Unique id generated by 'genuid.exe' to distinguish between accidentally identically named modules
  33.  
  34.     FLAGS           GAMEMOD_SINGLEPLAYER | GAMEMOD_ISDEMO
  35.       // Type of module (and other options)
  36.  
  37.  
  38.  
  39.   // Module Information
  40.   // ******************
  41.     MINHOURS    0
  42.       // Minimum hours to complete module
  43.  
  44.     MAXHOURS    1            // Maximum hours to complete module
  45.       // Maximum hours to complete module
  46.  
  47.     DESC        "The Revenant Locke D'Averam begins his adventures on the Isle of Ahkuilon\n"\
  48.             "Cinematix public demo game module\n"\
  49.             "The Revenant (C) Cinematix 1999"
  50.       // General description of module
  51.  
  52.  
  53. END
  54.