diff --git a/BUILD/settings/any.dat b/BUILD/settings/any.dat index f132c715b..14fa1a3f0 100644 --- a/BUILD/settings/any.dat +++ b/BUILD/settings/any.dat @@ -37,7 +37,7 @@ auto_spoonsign string What sign to change to with the hewn moon-rune spoon after auto_MLSafetyLimit integer If set this will be the (approximate) cap for +ML. WARNING: Certain conditions may require the script to exceed this by a small margin. For best results set this 10 below the maximum ML you can handle. Setting to -1 will cause the lowest possible ML to be equipped, including going negative if possible - this can cause non-optimal gear to be equipped. auto_disregardInstantKarma boolean When true, the script will not scale back ML after reaching Level 13, if you also set auto_MLSafetyLimit to 999 the script will passively power level. WARNING: You are unlikely to get Instant Karma (This is useful if your run preceeds The Sea, The Basement, or Dungeons) auto_secondPlaceOrBust boolean When true, abort before each tower test if we can't get to second place. -auto_log_level int valid choices: 0 = error. 1 = warning. 2 = info. 3 = debug. Sets the level of logging which autoscend will output to gCLI and session log. Defaults to 2 (info). +auto_log_level int valid choices: 0 = error. 1 = warning. 2 = info. 3 = debug. Sets the level of logging which autoscend will output to gCLI and session log. Defaults to 3 (debug). auto_log_level_restore int valid choices: 0 = no extra debugging. 1 = log the stages and their results 2 = log restorer data dump. Sets the level of extra debug logging which autoscend restore code will output to gCLI and session log. Defaults to 0. Note that this is just for extra debugging. auto_restoreUseBloodBond boolean Whether to use extra hp to cast blood bond. Blood bond has a recurring HP drain, set to false if you are worried about getting killed or wasting resources healing. Defaults to false. auto_forceFatLootToken boolean force grabbing the fat loot tokens from daily dungeon and fantasy realm every day even if you already have enough for this run. This is mainly for new accounts who want to get the cubeling and/or skillbooks. diff --git a/RELEASE/data/autoscend_settings.txt b/RELEASE/data/autoscend_settings.txt index 540197c4c..26212c4b8 100644 --- a/RELEASE/data/autoscend_settings.txt +++ b/RELEASE/data/autoscend_settings.txt @@ -48,7 +48,7 @@ any 35 auto_spoonsign string What sign to change to with the hewn moon-rune spoo any 36 auto_MLSafetyLimit integer If set this will be the (approximate) cap for +ML. WARNING: Certain conditions may require the script to exceed this by a small margin. For best results set this 10 below the maximum ML you can handle. Setting to -1 will cause the lowest possible ML to be equipped, including going negative if possible - this can cause non-optimal gear to be equipped. any 37 auto_disregardInstantKarma boolean When true, the script will not scale back ML after reaching Level 13, if you also set auto_MLSafetyLimit to 999 the script will passively power level. WARNING: You are unlikely to get Instant Karma (This is useful if your run preceeds The Sea, The Basement, or Dungeons) any 38 auto_secondPlaceOrBust boolean When true, abort before each tower test if we can't get to second place. -any 39 auto_log_level int valid choices: 0 = error. 1 = warning. 2 = info. 3 = debug. Sets the level of logging which autoscend will output to gCLI and session log. Defaults to 2 (info). +any 39 auto_log_level int valid choices: 0 = error. 1 = warning. 2 = info. 3 = debug. Sets the level of logging which autoscend will output to gCLI and session log. Defaults to 3 (debug). any 40 auto_log_level_restore int valid choices: 0 = no extra debugging. 1 = log the stages and their results 2 = log restorer data dump. Sets the level of extra debug logging which autoscend restore code will output to gCLI and session log. Defaults to 0. Note that this is just for extra debugging. any 41 auto_restoreUseBloodBond boolean Whether to use extra hp to cast blood bond. Blood bond has a recurring HP drain, set to false if you are worried about getting killed or wasting resources healing. Defaults to false. any 42 auto_forceFatLootToken boolean force grabbing the fat loot tokens from daily dungeon and fantasy realm every day even if you already have enough for this run. This is mainly for new accounts who want to get the cubeling and/or skillbooks. diff --git a/RELEASE/scripts/autoscend/auto_settings.ash b/RELEASE/scripts/autoscend/auto_settings.ash index e037429a5..fe68e2107 100644 --- a/RELEASE/scripts/autoscend/auto_settings.ash +++ b/RELEASE/scripts/autoscend/auto_settings.ash @@ -332,7 +332,7 @@ void auto_settingsDefaults() defaultConfig("auto_paranoia", "-1"); defaultConfig("auto_inv_paranoia", "false"); defaultConfig("auto_save_adv_override", "-1"); - defaultConfig("auto_log_level", "2"); + defaultConfig("auto_log_level", "3"); defaultConfig("auto_log_level_restore", "0"); defaultConfig("auto_bedtime_pulls_skip", "false"); defaultConfig("auto_bedtime_pulls_pvp_multi", "0.3");