From 37152d81f6f37b37605f2b7de644aed3ed34f4ca Mon Sep 17 00:00:00 2001 From: Sainan Date: Fri, 21 Feb 2025 21:52:07 +0100 Subject: [PATCH] Update manual for 0.10.3 --- bootstrapper-manual.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bootstrapper-manual.html b/bootstrapper-manual.html index 179f2d6..f625165 100644 --- a/bootstrapper-manual.html +++ b/bootstrapper-manual.html @@ -97,6 +97,7 @@
  • ee_log_in_console — If true, writes everything that gets written to EE.log to the console as well.
  • skip_mission_start_timer — If true, disables the 5 second wait before a mission starts.
  • +
  • logout_on_request_failure — If false, the game will ignore HTTP request failures/timeouts instead of forcing a logout.
  • fov_override — If not 0, overrides the game's FOV setting. You can use any value from 1 to 226.
  • forced_profile_dir — An absolute path to a folder that will be used to read and write your game settings. Notably, this can be used to have the same settings regardless of username.
  • auto_start_scripts — A list of scripts to automatically start, e.g. ["samples/Cycle Camera Hotkey (K).pluto"].
  • @@ -126,7 +127,7 @@

    HTTP Traffic Deviations

    Metadata Patches

    @@ -138,6 +139,7 @@
  • If the line starts with &, that character is removed from the line and the rest of the line is assumed to be an absolute path to be added to the current patch.
  • If the line starts with >, that character is removed from the line and the rest of the line is assumed to be an absolute path for which a new patch is created.
  • If the line starts with r|, a replacement is added to the current patch in the form r|A|Z which means A in the metadata will be replaced with Z.
  • +
  • If the line starts with s|, a regex substitution is added to the current patch, e.g. s|(.+)=1|$1=0 would change HasCooldown=1 to be HasCooldown=0.
  • The line is added as a metadata prefix to the current patch. This works to add top-level properties but also to replace them because the game resolves duplicates by ignoring subsequent entries.
  • If multiple patches affect the same absolute path, they are combined.