Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var mineflayer = require('mineflayer');
  2.  
  3. var bot = mineflayer.createBot({
  4. host: "play.kaboom.pw",
  5. port: 23950,
  6. version: 1.12,
  7. keepAlive: true,
  8. username: "BotNumberTwo",
  9. checkTimeoutInterval: 15*1000,
  10. chatLengthLimit: 100
  11. });
  12.  
  13.  
  14. //chat
  15. bot.on('message', function(message) {
  16. msg = message.toString();
  17. console.log(msg);
  18. });
  19.  
  20.  
  21. //to login and register
  22. bot.on('login', function() {
  23. console.log("Bot activated!");
  24. bot.chat("/register 36433643 36433643");
  25. bot.chat("/login 36433643");
  26. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement