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 >
Text File  |  2000-09-01  |  1KB  |  54 lines

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 1997-2000 Pandemic Studios, Dark Reign II
  4. //
  5. // Startup Configuration File
  6. //
  7.  
  8. StartupConfig()
  9. {
  10.   ConfigureMono()
  11.   {
  12.     CreateScratchPanel( 13, "aiarossi", "for a good time call 555-NERF");
  13.     CreateScratchPanel(  0, "apayne", "Here comes the zwagabeast");
  14.     CreateScratchPanel( 22, "jcooke", "fishheads, fishheads, rolly-polly fishheads");
  15.     CreateScratchPanel( 11, "mversluys", "Our Amps go to 11");
  16.     CreateScratchPanel( 10, "gborrud", "I wish I was a coder, they're so cool");
  17.   }
  18. }
  19.  
  20. GameConfig()
  21. {
  22.   ConfigureFileSystem()
  23.   {
  24.     // Setup the default pack extension
  25.     PackExtension(".zwp");
  26.  
  27.     // Setup top level data stream
  28.     ConfigureStream("gamedata")
  29.     {
  30.       AddDir("client");
  31.       AddStream("mods");
  32.       AddStream("savegame");
  33.       AddStream("mission");
  34.       AddStream("world");
  35.       AddStream("side");
  36.       AddStream("search");
  37.       AddResource("packs", "base");
  38.     }
  39.  
  40.     // Make it active
  41.     SetActiveStream("gamedata");
  42.  
  43.     // Meshviewer search path and default model
  44.     SetSub("@meshviewpath", ".");
  45.     SetSub("@meshviewmodel", "engine_pandemic.god");
  46.   }
  47.  
  48.   // Setup localization
  49.   ConfigureMultiLanguage()
  50.   {
  51.     LoadLanguage("English");
  52.     SetLanguage("English");
  53.   }
  54. }