home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer 6.2
/
2000-12_-_Disc_6.2.iso
/
DarkReign2
/
data1.cab
/
Files
/
library
/
engine
/
startup.cfg
< prev
next >
Wrap
Text File
|
2000-09-01
|
1KB
|
54 lines
///////////////////////////////////////////////////////////////////////////////
//
// Copyright 1997-2000 Pandemic Studios, Dark Reign II
//
// Startup Configuration File
//
StartupConfig()
{
ConfigureMono()
{
CreateScratchPanel( 13, "aiarossi", "for a good time call 555-NERF");
CreateScratchPanel( 0, "apayne", "Here comes the zwagabeast");
CreateScratchPanel( 22, "jcooke", "fishheads, fishheads, rolly-polly fishheads");
CreateScratchPanel( 11, "mversluys", "Our Amps go to 11");
CreateScratchPanel( 10, "gborrud", "I wish I was a coder, they're so cool");
}
}
GameConfig()
{
ConfigureFileSystem()
{
// Setup the default pack extension
PackExtension(".zwp");
// Setup top level data stream
ConfigureStream("gamedata")
{
AddDir("client");
AddStream("mods");
AddStream("savegame");
AddStream("mission");
AddStream("world");
AddStream("side");
AddStream("search");
AddResource("packs", "base");
}
// Make it active
SetActiveStream("gamedata");
// Meshviewer search path and default model
SetSub("@meshviewpath", ".");
SetSub("@meshviewmodel", "engine_pandemic.god");
}
// Setup localization
ConfigureMultiLanguage()
{
LoadLanguage("English");
SetLanguage("English");
}
}