mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
[skipci]chores: Documented the new change in Auto Attack bot
Document AutoAttack cooldown range and RandomMode options
This commit is contained in:
commit
701441d424
2 changed files with 8 additions and 8 deletions
|
|
@ -193,7 +193,7 @@ You need to enable Entity Handling to use this bot
|
|||
<value>Capped between 1 to 4</value>
|
||||
</data>
|
||||
<data name="ChatBot.AutoAttack.Cooldown_Time" xml:space="preserve">
|
||||
<value>How long to wait between each attack. Set "Custom = false" to let MCC calculate it.</value>
|
||||
<value>Delay between attacks. Set "Custom = false" to let MCC calculate it. When Custom = true, set Min/Max for the cooldown range. If RandomMode = true, a random value between Min and Max is used for each attack.</value>
|
||||
</data>
|
||||
<data name="ChatBot.AutoAttack.Entites_List" xml:space="preserve">
|
||||
<value>All entity types can be found here: https://mccteam.github.io/r/entity/#L15</value>
|
||||
|
|
|
|||
|
|
@ -354,19 +354,19 @@ redirectFrom:
|
|||
|
||||
- **Description:**
|
||||
|
||||
How long to wait between each attack in seconds.
|
||||
Controls the delay between attacks. By default, MCC calculates this based on server TPS. Set `Custom` to `true` to specify your own values:
|
||||
|
||||
To enable it, set `Custom` (boolean) to `true` and change `value` (double) to your preferred value (eg. `1.5`).
|
||||
- `Min` — minimum cooldown in seconds
|
||||
- `Max` — maximum cooldown in seconds
|
||||
- `RandomMode` — if enabled, picks a random cooldown between `Min` and `Max` for each attack
|
||||
|
||||
By default, this is disabled and MCC calculates it based on the server TPS.
|
||||
|
||||
- **Format:** `Cooldown_Time = { Custom = <is enabled (true|false)>, value = <seconds (double)> }`
|
||||
- **Format:** `Cooldown_Time = { Custom = <true|false>, RandomMode = <true|false>, Min = <seconds>, Max = <seconds> }`
|
||||
|
||||
- **Type:** `inline table`
|
||||
|
||||
- **Example:** `Cooldown_Time = { Custom = true, value = 1.5 }`
|
||||
- **Example:** `Cooldown_Time = { Custom = true, RandomMode = true, Min = 1.0, Max = 2.0 }`
|
||||
|
||||
- **Default:** `{ Custom = false, value = 1.0 }`
|
||||
- **Default:** `{ Custom = false, RandomMode = false, Min = 1.5, Max = 2.5 }`
|
||||
|
||||
#### `Interaction`
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue