**minecraft-bots** is a clone of minecraft-protocol, liteflayer and mineflayer but it has different function names.

Get started by using `npm install minecraft-bots` and `npm install minecraft-protocol`

Here is the example code:
```
const { Client } = require('minecraft-bots')

let bot = new Client({
    host: 'localhost',
    port: 25565,
    username: 'email@example.com',
    password: '12345678',
    auth: 'microsoft'
})

bot.on('login', () => {
    bot.writeAction('chat', 'Hello!')
})
```