home *** CD-ROM | disk | FTP | other *** search
/ Top 50 Space / SPACE.bin / data / siege / siege.ace / scripts / autoexec.cs < prev    next >
Encoding:
Text File  |  1999-05-01  |  1.6 KB  |  45 lines

  1. //
  2. // user configuration file
  3. //
  4.  
  5. if (isFile("defaultPrefs.cs") != "")
  6. {
  7.    exec( "defaultPrefs.cs" );
  8. }
  9.  
  10. // uncomment this line to enable mission results logging:
  11. // $missionLogFile = "log.txt";
  12.  
  13. // without this access key, the movie recorder playback screen
  14. // will be automatically loaded after the splash screen (instead of the main menu)
  15. $AccessKey = "2829";
  16.  
  17.  
  18. // the player limit for non dedicated servers
  19. $server::NoneDedicatedPlayerLimit = 16;
  20.  
  21. // Default console stuff
  22. $Console::Prompt        = "% ";
  23. $Console::History       = 25;
  24. $Console::CursorType    = "VERTICAL";
  25. $Console::CursorLines   = 1;
  26. $Console::RepeatsPerSec = 5;
  27. $Gui::WebSiteOnDynaMovClick = "https://store.sierra.com/ObjectBuilder/ObjectBuilder.iwx?processName=ProductPageSierraSKU&Merchant_id=1&SKU=8367510100";
  28.  
  29. schedule("quit();", 60*60*2);  // kill self in two hours
  30.  
  31. //------------------------------------------------------------------------------
  32. //    Alt camera views
  33. //------------------------------------------------------------------------------
  34. bind( keyboard, make, alt, 1, to, "flybyCamera(5, -6, 40, 2);");
  35. bind( keyboard, make, alt, 2, to, "targetPrimaryCamera(-25, 12);");
  36. bind( keyboard, make, alt, 3, to, "targetSecondaryCamera(-25, 12);");
  37. bind( keyboard, make, alt, 4, to, "combatCamera(L, 50);");
  38. bind( keyboard, make, alt, 5, to, "orbitPlayer(20, 180, 20);");
  39. bind( keyboard, make, alt, 6, to, "orbitPlayer(20,   0, 20);");
  40. bind( keyboard, make, alt, 7, to, "orbitPlayer(20,  90, 20);");
  41. bind( keyboard, make, alt, 8, to, "orbitPlayer(20, 270, 20);");
  42. bind( keyboard, make, alt, 9, to, "focusCamera(player);");
  43.  
  44.  
  45.