Skip to content

A Minecraft Bot which you can take over at any time

Notifications You must be signed in to change notification settings

Roritchi/takeoverbot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

takeoverbot

A Minecraft Bot which you can take over at any time

Installation

Prerequisites

  • NPM & Node.js
  • Install required packages with npm install

Example

const { createBot, createProxy } = require('./');

const opts = {
  version: '1.12.2',
  username: 'TKO-Bot', // defaults to "Player" + random
  host: 'localhost' // defaults to localhost
  port: 25565 // defaults to 25565
}

const bot = createBot(opts);

const proxy = createProxy(bot, {
  port: 25564,
  'online-mode': false, // WARNING: Dont use this in production!
  version: opts.version, // Needs to be same version as the bot!
  whitelist: false, // WARNING: Use it! ["username", "username2"]
});

bot.on('end', () => {
  bot.connect(opts); // Auto Reconnect
});

Credits

About

A Minecraft Bot which you can take over at any time

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published