Trying to fix the build again

This commit is contained in:
Anon 2023-05-23 17:44:23 +02:00
parent 9c78f7958f
commit e1313dad4e

View file

@ -29,31 +29,29 @@ redirectFrom:
## List of built-in Chat Bots ## List of built-in Chat Bots
- [Chat Bots](#chat-bots) - [Alerts](#alerts)
- [About](#about) - [Anti AFK](#anti-afk)
- [List of built-in Chat Bots](#list-of-built-in-chat-bots) - [Auto Attack](#auto-attack)
- [Alerts](#alerts) - [Auto Craft](#auto-craft)
- [Anti AFK](#anti-afk) - [Auto Dig](#auto-dig)
- [Auto Attack](#auto-attack) - [Auto Drop](#auto-drop)
- [Auto Craft](#auto-craft) - [Auto Eat](#auto-eat)
- [Auto Dig](#auto-dig) - [Auto Fishing](#auto-fishing)
- [Auto Drop](#auto-drop) - [Auto Relog](#auto-relog)
- [Auto Eat](#auto-eat) - [Auto Respond](#auto-respond)
- [Auto Fishing](#auto-fishing) - [Chat Log](#chat-log)
- [Auto Relog](#auto-relog) - [Discord Bridge](#discord-bridge)
- [Auto Respond](#auto-respond) - [Farmer](#farmer)
- [Chat Log](#chat-log) - [Follow Player](#follow-player)
- [Discord Bridge](#discord-bridge) - [Hangman](#hangman)
- [Farmer](#farmer) - [Mailer](#mailer)
- [Follow player](#follow-player) - [Map](#map)
- [Hangman](#hangman) - [PlayerList Logger](#playerlist-logger)
- [Mailer](#mailer) - [Remote Control](#remote-control)
- [Map](#map) - [Replay Mod](#replay-mod)
- [PlayerList Logger](#playerlist-logger) - [Script Scheduler](#script-scheduler)
- [Remote Control](#remote-control) - [Telegram Bridge](#telegram-bridge)
- [Replay Capture](#replay-capture) - [Items Collector](#items-collector)
- [Script Scheduler](#script-scheduler)
- [Telegram Bridge](#telegram-bridge)
## Alerts ## Alerts
@ -2478,3 +2476,107 @@ redirectFrom:
- **Default:** `A new Teleport Request from **{username}**!` - **Default:** `A new Teleport Request from **{username}**!`
## Items Collector
- **Description:**
Collect items on the ground using this Chat Bot.
- **Settings:**
**Section:** **`ChatBot.ItemsCollector`**
#### `Enabled`
- **Description:**
This setting specifies if the Items Collector chat bot is enabled.
- **Available values:** `true` and `false`.
- **Type:** `boolean`
- **Default:** `false`
#### `Collect_All_Item_Types`
- **Description:**
Specifies if the bot will collect all items, regardless of their type.
If you want to use the whitelisted item types, disable this by setting it to `false`.
- **Available values:** `true` and `false`.
- **Type:** `boolean`
- **Default:** `false`
#### `Items_Whitelist`
- **Description:**
In this list you can specify which items the bot will collect.
To enable this, set the `Collect_All_Item_Types` to false.
<div class="custom-container warning"><p class="custom-container-title">Note</p>
**This does not prevent the bot from accidentally picking up other items, it only goes to positions where it finds the whitelisted items**
</div>
<div class="custom-container tip"><p class="custom-container-title">Note</p>
**You can see the list of item types [here](https://raw.githubusercontent.com/MCCTeam/Minecraft-Console-Client/master/MinecraftClient/Inventory/ItemType.cs)**
</div>
- **Available values:** [Item Type List](https://raw.githubusercontent.com/MCCTeam/Minecraft-Console-Client/master/MinecraftClient/Inventory/ItemType.cs)
- **Type:** `array of strings with item names`
- **Default:** `[ "Diamond", "NetheriteIngot" ]`
#### `Delay_Between_Tasks`
- **Description:**
Delay in milliseconds between bot scanning items (Recommended: 300-500)
- **Type:** `integer`
- **Default:** `300`
#### `Collection_Radius`
- **Description:**
The radius of blocks in which bot will look for items to collect.
- **Type:** `double`
- **Default:** `30.0`
#### `Always_Return_To_Start`
- **Description:**
Specifies if the bot will return to it's starting position after there are no items to collect.
- **Available values:** `true` and `false`.
- **Type:** `boolean`
- **Default:** `true`
#### `Prioritize_Clusters`
- **Description:**
Specifies if the bot will go after clustered items instead for the closest ones.
- **Available values:** `true` and `false`.
- **Type:** `boolean`
- **Default:** `true`