1.0.3 • Published 2 years ago

mineflayer-better-autototem v1.0.3

Weekly downloads
-
License
GPL-3.0
Repository
-
Last release
2 years ago

Mineflayer AutoTotem

A customizable AutoTotem plugin with useful options for anti-cheat avoidance

Installing

npm i mineflayer-better-autototem

Example usage

const autoTotem = require('mineflayer-better-autototem');

const bot = mineflayer.createBot({
    host: server,
    port: port,
    username: username,
    password: password
})

bot.loadPlugin(autoTotem)

bot.once('spawn', () => {
    // set up autototem
    bot.autoTotem.delay = 5;
    bot.autoTotem.equipAt = 20;
    bot.autoTotem.stopMovement = true;
    bot.autoTotem.whileMoving = false;
});