Advertisement
Guest User

cubnoyd dum

a guest
Oct 14th, 2019
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. var mineflayer = require('mineflayer');
  2. var bot = mineflayer.createBot({
  3. host: "localhost", // optional
  4. port: 25565, // optional
  5. username: "email@example.com", // email and password are required only for
  6. password: "12345678", // online-mode=true servers
  7. version: false // false corresponds to auto version detection (that's the default), put for example "1.8.8" if you need a specific version
  8. });
  9. var noncuboydcount = 0
  10. bot.on('chat', function(username, message) {
  11. noncuboydcount = noncuboydcount + 1
  12. if(message.includes('cuboyd')) {
  13. bot.chat('thanks ididot we went ' + noncuboydcount + 'messages without saying his name')
  14. noncuboydcount = 0
  15. }
  16. });
  17. bot.on('error', err => console.log(err))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement