1.0.0 • Published 2 years ago

minebots v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

minebots is a wrapper made for creating Minecraft bots!

Get started by install this module and the required module:

npm install minebots
npm install minecraft-bots

and here is the code:

const { Bot } = require('minebots');

let bot = new Bot(<any>);

bot.on('login', () => {
  bot.getPacket({
    name: 'chat',
    message: 'I said hello!'
  });
});

Signed,Gary.