const mineflayer = require('mineflayer') const bot=mineflayer.createBot({ host:'soranamihut.com', username:'mitica' }) let target = null bot.on('chat', (username, message) => { if (username === 'pythonul') target = bot.players[username].entity switch (message) { case 'forward': bot.setControlState('forward', true) break case 'back': bot.setControlState('back', true) break case 'left': bot.setControlState('left', true) break case 'right': bot.setControlState('right', true) break case 'sprint': bot.setControlState('sprint', true) break case 'stop': bot.clearControlStates() break case 'jump': bot.setControlState('jump', true) bot.setControlState('jump', false) break case 'jump a lot': bot.setControlState('jump', true) break case 'stop jumping': bot.setControlState('jump', false) break case 'tp': bot.entity.position.y += 10 break case 'pos': bot.chat(bot.entity.position.toString()) break case 'yp': bot.chat(`Yaw ${bot.entity.yaw}, pitch: ${bot.entity.pitch}`) break } }) bot.once('spawn', () => { // keep your eyes on the target, so creepy! setInterval(watchTarget, 50) function watchTarget () { if (!target) return bot.lookAt(target.position.offset(0, target.height, 0)) } })