diff --git a/README.md b/README.md index 21d9f82..f82ea5c 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,17 @@ Download the a prebuilt release [here](https://github.com/aeon0/botty/releases). Check out the [development.md](development.md) docu for infos on how to build from source and details of the project structure and code. ## param.ini +To ease the switch to new botty versions, you can also overwrite any of the param.ini fields in a __custom.ini__ file. When a new version of botty is released you just copy the file to the new version without having to port all your __param.ini__ changes to the new version. Example: +```ini +; custom.ini - overwrites 3 params in the param.ini +[general] +monitor=1 + +[routes] +run_pindle=1 +run_shenk=0 +``` + [general] | Descriptions --------------------------------|--------------------------------------------- monitor | Select on which monitor D2R is running in case multiple are available @@ -64,6 +75,7 @@ run_shenk | Run shenk in each new game. Select "1" to run it "0" to leave it out --------------------------------|--------------------------------------------- type | Build type. Currently only "sorceress" or "hammerdin" is supported casting_frames | Depending on your char and fcr you will have a specific casting frame count. Check it here: https://diablo2.diablowiki.net/Breakpoints and fill in the right number. Determines how much delay there is after each teleport for example. +slow_walk | With this set to 1 the char will have a large delay for each running action in town. Set this to 1 if you keep getting stuck during traversing town. num_loot_columns | Number of columns in inventory used for loot (from left!). Remaining space can be used for charms take_health_potion | Health percentage when healing potion will be used take_mana_potion | Mana percentage when mana potion will be used. Currently belt managment is not very clever and it is safest to only pick up health pots and make sure mana reg is enough for pindle to not need mana pots. diff --git a/development.md b/development.md index 2bff13d..f689a08 100644 --- a/development.md +++ b/development.md @@ -1,7 +1,7 @@ # Dev Docu ## Dependencies -- Install miniconda (https://docs.conda.io/en/latest/miniconda.html) +- Install miniconda (https://docs.conda.io/en/latest/miniconda.html). Note: You will have to check "Add conda to my PATH environment variable" in order to access the conda command in the cmd. - Install git (https://gitforwindows.org/) ## Getting started