home *** CD-ROM | disk | FTP | other *** search
/ Level 2004 April / Level_2004-04_112_cda.bin / data1.cab / GameFiles / Modules / Ahkuilon.rvm / module.def < prev    next >
Encoding:
Text File  |  1999-07-06  |  2.0 KB  |  42 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. MODULE "Ahkuilon"    // Same as directory name!!
  15. BEGIN
  16.  
  17.   // Primary Information
  18.   // *******************
  19.     NAME            "The Isle of Ahkuilon"
  20.       // A descriptive module name (less than 40 characters)
  21.     VERSION            1.0
  22.       // Version number of module so that all players play same version of module.
  23.       // Major version indicates major download release.  Minor usually indicates a patch version.
  24.     GAMEVERSION            1.0
  25.       // Minimum version of game required to play this module.
  26.       // Major version indicates a new retail release, minor version indicates patch or upgrade.
  27.     UNIQUEID        0x3ce8ff01
  28.       // Unique id generated by 'genuid.exe' to distinguish between accidentally identically named modules
  29.     FLAGS           GAMEMOD_SINGLEPLAYER
  30.       // Type of module (and other options)
  31.  
  32.   // Module Information
  33.   // ******************
  34.     MINHOURS        20
  35.       // Minimum hours to complete module
  36.     MAXHOURS        40            // Maximum hours to complete module
  37.       // Maximum hours to complete module
  38.     DESC            "The Revenant Locke D'Averam begins his adventures on the Isle of Ahkuilon\n"\
  39.                     "Cinematix Revenant main game module.\nThe Revenant (C) Cinematix 1999"
  40.       // General description of module
  41. END
  42.