mineflayer-auto-totem
v1.3.0
Published
Allows your bot to automatically equip Totems
Downloads
21
Readme
What is this?
Its a plugin for mineflayer that can be used to make your bot automatically equip totems
Installation
npm i mineflayer-auto-totem --save
Usage
const mineflayer = require('mineflayer')
const { autototem } = require('mineflayer-auto-totem')
const bot = mineflayer.createBot({
host: 'localhost', // minecraft server ip
username: 'bot1', // minecraft username
})
bot.loadPlugin(autototem)
bot.on("physicsTick", async () => {
bot.autototem.equip()
})