home *** CD-ROM | disk | FTP | other *** search
- ; C O R P O R A T I O N
- ; -----------------------
- ;
- ; This file is the main Corporation initialisation control file.
- ; Any line preceeded by a semicolon is a comment.
- ;
- ; The order that non comment lines appear is important and should not be
- ; changed.
- ;
- ; To edit this file simply change any values or strings as appropriate and
- ; save the file.
- ;
- ;----------------------------------------------------------------------------
- ;
- ; SCENARIO DIRECTORY
- ;
- SetScenarioDirectory(scenario)
- ;----------------------------------------------------------------------------
- ;
- ; FONT DIRECORY LOCATION
- ;
- SetFontDirectory(fonts)
- ;
- ;----------------------------------------------------------------------------
- ;
- ; IMAGES DIRECTORY LOCATION
- ;
- SetImageDirectory(images)
- ;
- ;----------------------------------------------------------------------------
- ;
- ; SOUND SAMPLES DIRECTORY
- ;
- ; The subdirectory which contains your raw sound samples, relative
- ; to your home directory.
- ;
- SetSoundDirectory(sound)
- ;----------------------------------------------------------------------------
- ;
- ; UNIT INDICATOR COLOUR CHANGES
- ;
- ; From left to right, the warning and danger levels
- ; for colour changes in the unit shield strength display area.
- ;
-
- SetWarningLevel(250)
-
- SetDangerLevel(100)
-
- ;
- ;----------------------------------------------------------------------------
- ;
- ; MOUSE CONTROL
- ;
- ; Large map right mouse button scroll acceleration.
- ; From left to right: lower threshold
- ; upper threshold
- ; multiplier below lower threshold
- ; multiplier between the thresholds
- ; multiplier above upper threshold
- ; default move for mouse click (1 moves by default, 0 doesn't)
- ; default fire for mouse click (1 fires by default, 0 doesn't)
- ;
-
- SetMouseLower(25)
- SetMouseUpper( 50)
- SetMouseLowestMultiplier( 1)
- SetMouseMiddleMultiplier( 2 )
- SetMouseHighestMultiplier(3)
-
- SetDefaultMove(1)
- SetDefaultFire(1)
-
- ;
- ;
- ;----------------------------------------------------------------------------
- ;
- ; USER INTERFACE OPTIONS
- ;
- ; 1 = ON 0 = OFF
- ;
- ; CPU, UNIT EDIT, BUILDING EDIT, TRAILS, ORDER EDIT, RESOURCES, BIG BARS, SMALL BARS
- ;
-
- SetWantCPU(1)
- SetWantUnitEdit(1)
- SetWantBuildingEdit(1)
- SetWantTrails(1)
- SetWantOrderEdit(1)
- SetWantResources(0 0 1 1 1) ; element 115, no, no, no, water
- SetWantInterBuildingLinks(0)
- SetWantBigBars(1)
- SetWantSmallBars(1)
-
- ;
- ;
- ;
- ;----------------------------------------------------------------------------
- ;
- ; MUSIC ON HOLD
- ;
- ; The midi file for background music
- ;
-
- ; SetBackgroundMusic(digdemo.xmi 60)
-
- ; *** The Parts initialisation file
- ;
-
- SetPartFile(parts.txt)
-
- ;
- ; *** The Buildings initialisation file
- ;
-
- SetBuildingFile(build.txt)
-
- ;
- ; *** The Overlay initialisation file
- ;
-
- SetThingFile(overlay.txt)
-
- ;
- ;
- ;
- ;----------------------------------------------------------------------------
- ;
- ; SOUND SAMPLES
- ;
- ; The next seven lines contain names for sound samples (which must be in
- ; eight bit unsigned raw format) and volume levels (from 0 to 64)
- ; The sounds are for: cannon, plasma gun, chain gun, explosion,
- ; friendly BOT death sound, enemy BOT death sound, BOT response sound
- ;
- assault.wav 64
- tachion.wav 64
- rail.wav 64
- explo.wav 64
- death1.wav 4
- death2.wav 64
- neutron.wav 64
- ;
- ;
- ;----------------------------------------------------------------------------
- ;
- ; SCENARIOS
- ;
- ; The number of scenarios, followed by the scenario names, which must
- ; reflect the name of the directory in the main SCENARIO directory holding
- ; the files relevant to that scenario.
- ;
- 1
- ;
- default
- ;
- ;----------------------------------------------------------------------------
- ;
- ; TERRAIN TYPES
- ;
- ; The number of terrain types, followed by their names
- ;
- 7
- ;
- barren
- desert
- ice
- jungle
- moon
- volcanic
- water
- ;
- ;----------------------------------------------------------------------------;----------------------------------------------------------------------------