home *** CD-ROM | disk | FTP | other *** search
- // Revenant - Copyright 1999 Cinematix Studios, Inc.
- // ******* Revenant Module Description File *******
-
- // Module flags (use with FLAGS tag)
- // You can use multiple flags together by using the '|' symbol (i.e. FLAG1 | FLAG2 | FLAG3)
- #define GAMEMOD_SINGLEPLAYER 0x0002 // Is a singleplayer module
- #define GAMEMOD_MULTIPLAYER 0x0004 // Is a multiplayer module
- #define GAMEMOD_DEATHMATCH 0x0008 // This module was designed for deathmatch
- #define GAMEMOD_MUD 0x0010 // This module is a mud style module
- #define GAMEMOD_ZIPFILE 0x0020 // Set internally if module is in a ZIP format pak file
- #define GAMEMOD_ISDEMO 0x0040 // This is a demo module (causes game to run in demo mode)
- #define GAMEMOD_SELFRUNNING 0x0080 // This is a self running demo (causes game to autorun main char script)
-
-
- MODULE "Demo" // Same as directory name!!
- BEGIN
-
- // Primary Information
- // *******************
- NAME "Revenant Public Demo"
- // A descriptive module name (less than 40 characters)
-
- VERSION 1.0
- // Version number of module so that all players play same version of module.
- // Major version indicates major download release. Minor usually indicates a patch version.
-
- GAMEVERSION 1.0
- // Minimum version of game required to play this module.
- // Major version indicates a new retail release, minor version indicates patch or upgrade.
-
- UNIQUEID 0x54ce7002
- // Unique id generated by 'genuid.exe' to distinguish between accidentally identically named modules
-
- FLAGS GAMEMOD_SINGLEPLAYER | GAMEMOD_ISDEMO
- // Type of module (and other options)
-
-
-
- // Module Information
- // ******************
- MINHOURS 0
- // Minimum hours to complete module
-
- MAXHOURS 1 // Maximum hours to complete module
- // Maximum hours to complete module
-
- DESC "The Revenant Locke D'Averam begins his adventures on the Isle of Ahkuilon\n"\
- "Cinematix public demo game module\n"\
- "The Revenant (C) Cinematix 1999"
- // General description of module
-
-
- END
-