mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
Updated Anti AFK Bot to have Terrain Handling and random intervals option
Updated Anti AFK Bot to have Terrain Handling and random intervals option
This commit is contained in:
commit
f4f1e7e8fa
5 changed files with 169 additions and 20 deletions
|
|
@ -138,11 +138,15 @@ logtofile=false # Log alerts info a file
|
|||
logfile=alerts-log.txt # The name of a file where alers logs will be written
|
||||
|
||||
[AntiAFK]
|
||||
# Send a command on a regular basis to avoid automatic AFK disconnection
|
||||
# Send a command on a regular or random basis or make the bot walk around randomly to avoid automatic AFK disconnection
|
||||
# /!\ Make sure your server rules do not forbid anti-AFK mechanisms!
|
||||
# /!\ Make sure you keep the bot in an enclosure to prevent it wandering off if you're using terrain handling! (Recommended size 5x5x5)
|
||||
enabled=false
|
||||
delay=600 #10 = 1s
|
||||
command=/ping
|
||||
delay=600 # 10 = 1s (Can also be a random number between 2 numbers, example: 50-600) (Default: 600)
|
||||
command=/ping # Command to send to the server
|
||||
use_terrain_handling=false # Use terrain handling to enable the bot to move around
|
||||
walk_range=5 # The range the bot can move around randomly (Note: the bigger the range, the slower the bot will be)
|
||||
walk_retries=20 # How many timec can the bot fail trying to move before using the command method
|
||||
|
||||
[AutoRelog]
|
||||
# Automatically relog when disconnected by server, for example because the server is restating
|
||||
|
|
@ -282,6 +286,7 @@ backupinterval=300 # How long should replay file be auto-saved, i
|
|||
# This is due to a slow pathfinding algorithm, we're working on getting a better one
|
||||
# You can tweak the update limit and find what works best for you. (NOTE: Do not but a very low one, because you might achieve the opposite,
|
||||
# this might clog the thread for terain handling) and thus slow the bot even more.
|
||||
# /!\ Make sure server rules allow an option like this in the rules of the server before using this bot
|
||||
enabled=false
|
||||
update_limit=10 # The rate at which the bot does calculations (10 = 1s) (Default: 5) (You can tweak this if you feel the bot is too slow)
|
||||
stop_at_distance=3 # Do not follow the player if he is in the range of 3 blocks (prevents the bot from pushing a player in an infinite loop)
|
||||
|
|
@ -295,15 +300,17 @@ log_delay=600 # 10 = 1s
|
|||
[Map]
|
||||
# Allows you to render maps into .jpg images
|
||||
# This is useful for solving captchas which use maps
|
||||
# NOTE: This is a new feature, we could not find the proper color mappings, but we are continuing with the search
|
||||
# The colors are not like in minecraft and might look ugly
|
||||
# This feature is currently only useful for solving captchas, which is it's primary purpose for the time being.
|
||||
# The maps are rendered into Rendered_Maps folder.
|
||||
# NOTE:
|
||||
# This feature is currently only useful for solving captchas which use maps.
|
||||
# If some servers have a very short time for solving captchas, enabe auto_render_on_update and prepare to open the file quickly.
|
||||
# On linux you can use FTP to access generated files.
|
||||
# In the future it might will be possible to display maps directly in the console with a separate command.
|
||||
# /!\ Make sure server rules allow bots to be used on the server, or you risk being punished.
|
||||
enabled=false
|
||||
resize_map=false # Should the map be resized? (Default one is small 128x128)
|
||||
resize_to=256 # The size to resize the map to (Note: the bigger it is, the lower the quallity is)
|
||||
auto_render_on_update=false # Automatically render the map once it's received or updated from/by the server
|
||||
delete_rendered_on_unload=true # Delete all rendered maps on unload or exit
|
||||
delete_rendered_on_unload=true # Delete all rendered maps on unload/reload (Does not delete the images if you exit the client)
|
||||
notify_on_first_update=false # Get a notification when you have gotten a map from the server for the first time
|
||||
# Note: Will be printed for each map in vicinity, could cause spam if there are a lot of maps
|
||||
# Note: Will be printed for each map in vicinity, could cause spam if there are a lot of maps
|
||||
|
|
@ -428,6 +428,14 @@ cmd.useitem.use=Used an item
|
|||
[bot]
|
||||
# ChatBots. Naming style: bot.<className>.<msg...>
|
||||
|
||||
# Anti AFK
|
||||
bot.antiafk.not_using_terrain_handling=The terrain handling is not enabled in the settings of the client, enable it if you want to use it with this bot. Using alternative (command) method.
|
||||
bot.antiafk.invalid_range_partial=Invalid time range provided, using the first part of the range {0} as the time!
|
||||
bot.antiafk.invalid_range=Invalid time range provided, using default time of 600!
|
||||
bot.antiafk.invalid_value=Invalid time provided, using default time of 600!
|
||||
bot.antiafk.swapping=The time range begins with a bigger value, swapped them around.
|
||||
bot.antiafk.invalid_walk_range=Invalid walk range provided, must be a positive integer greater than 0, using default value of 5!
|
||||
|
||||
# AutoAttack
|
||||
bot.autoAttack.mode=Unknown attack mode: {0}. Using single mode as default.
|
||||
bot.autoAttack.priority=Unknown priority: {0}. Using distance priority as default.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue