This bot allows you to get an infinite amount of game currency on Minecraft Bedrock servers without Xbox authorization with the initial balance of the player
Warning
You can be banned on any server for using this bot
Installing dependencies
npm install
Starting the bot
npm start
Bot configuration can be found in src/config/config.ts
server: {
host: 'dygers.fun', // Server address
port: 19133, // Server port
version: '1.21.2', // Server version
// Authorization settings
auth: {
type: 'form', // Authorization method (Available: form, chat, command, none)
// Commands for authorization, if the authorization method is command
command: {
register: '/register {password}', // Registration command (Params: {password})
login: '/login {password}' // Login command (Params: {password})
}
}
},
user: {
username: 'TheWeander', // Money recipient username
password: '1234', // Money recipient password
connect: true, // Connect the user to the server
auth: false, // Auth the user on the server
reconnect_delay: 1000, // Delay with which the user will try to reconnect
},
bot: {
password: 'password123', // Bot password (Used for one-time registration)
username_generator: 'xbox', // Random nickname generator type (Available: random, xbox)
username_prefix: '', // Bot username prefix (If not needed, leave blank)
connect_timeout: 300, // Time after which the next bot will connect
disconnect_timeout: 100, // Time after which the bot will shut down
max_connections: 1000, // Max number of bots
join_command: `/pay {user_username} 500` // Command that is executed at join (Params: {user_username}, {bot_username})
}