You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
2.6 KiB

  1. # The Command Line
  2. BSIPA has 2 command lines: the installer, and the game.
  3. Their documentation is below.
  4. # [The Installer (`IPA.exe`)](#tab/installer)
  5. The installer has quite a few options, which are documented inline with the `-h` or `--help` flag.
  6. This is what it currently looks like:
  7. [!code[IPA command line](_ipa_command_line.txt "the result of IPA.exe -h")]
  8. # [The Game](#tab/game)
  9. The game *also* gets quite a few command line options, though there isn't anything as convenient as a help page for them.
  10. Here's a quick list of what they are and what they do.
  11. - `--debug`
  12. > Enables the loading of debug information in Mono. The debugging information must be in the portable PDB format,
  13. > in the same location as the DLL that it's for.
  14. >
  15. > This option also forces BSIPA to show all debug messages in the console, as well as where they were called.
  16. >
  17. > This overrides the config settings `Debug.ShowDebug` and `Debug.ShowCallSource`.
  18. >
  19. - `--mono-debug`
  20. > Enables the built-in Mono soft debugger engine.
  21. >
  22. > By default, it acts as a client, and requires that there be a soft
  23. > debugger server running on port 10000 on `localhost`.
  24. >
  25. > Implies `--debug`.
  26. >
  27. - `--server`
  28. > Does nothing on its own.
  29. >
  30. > When paired with `--mono-debug`, this option makes the Mono soft debugger act in server mode. It begins listening on
  31. > port 10000 on any address, and will pause startup (with no window) until a debugger is connected. I reccommend using
  32. > SDB, but that is a command line debugger and a lot of people don't care for those.
  33. >
  34. - `--no-yeet`
  35. > Disables mod yeeting.
  36. >
  37. > By default, whenever BSIPA detects that the game is now running a newer version than previous runs, it will move all
  38. > mods to another folder and not load them. (They still get checked for updates though.) When this is enabled, that
  39. > behaviour is disabled.
  40. >
  41. > Overrides the config setting `YeetMods`.
  42. >
  43. - `--condense-logs`
  44. > Reduces the number of log files BSIPA will output for a given session.
  45. >
  46. > By default, BSIPA will create a subfolder in the `Logs` folder for each mod sublog, as well as each mod. This disables
  47. > that behaviour, and restricts it to only create a global log and mod logs.
  48. >
  49. > Overrides the config setting `Debug.CondenseModLogs`.
  50. >
  51. - `--no-updates`
  52. > Disables automatic updating.
  53. >
  54. > By default, BSIPA will check [BeatMods](http://beatmods.com) for all of the loaded mods to see if there is a new version
  55. > avaliable. If there is, it will be downloaded and installed on the next run. This flag disables that behaviour.
  56. >
  57. > Overrides the config settings `Updates.AutoCheckUpdates` and `Updates.AutoUpdate`.
  58. >