├── README.md ├── docs ├── _config.yml └── index.html ├── guides ├── 0-create-server.js └── 1-create-bot.js └── snippets ├── advanced-eat.js ├── auto-clicker.js ├── auto-relog.js ├── chat-commands.js ├── chat-example.js ├── consistent-miner.js ├── cow-milker.js ├── cuboid-miner.js ├── essentials-shortcuts.js ├── get-block-under-bot.js ├── goto.js ├── mineflayer-cuboid.js ├── minehut-map-merger.js ├── mob-breeder.js ├── proxy.js ├── simple-sheep-breeder.js ├── storageScan.js ├── tab-complete-plugins.js └── wolf-tamer.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/docs/index.html -------------------------------------------------------------------------------- /guides/0-create-server.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /guides/1-create-bot.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /snippets/advanced-eat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/snippets/advanced-eat.js -------------------------------------------------------------------------------- /snippets/auto-clicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/snippets/auto-clicker.js -------------------------------------------------------------------------------- /snippets/auto-relog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/snippets/auto-relog.js -------------------------------------------------------------------------------- /snippets/chat-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/snippets/chat-commands.js -------------------------------------------------------------------------------- /snippets/chat-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/snippets/chat-example.js -------------------------------------------------------------------------------- /snippets/consistent-miner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/snippets/consistent-miner.js -------------------------------------------------------------------------------- /snippets/cow-milker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/snippets/cow-milker.js -------------------------------------------------------------------------------- /snippets/cuboid-miner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/snippets/cuboid-miner.js -------------------------------------------------------------------------------- /snippets/essentials-shortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/snippets/essentials-shortcuts.js -------------------------------------------------------------------------------- /snippets/get-block-under-bot.js: -------------------------------------------------------------------------------- 1 | bot.world.getBlock(bot.entity.position.offset(0, -1, 0)) 2 | -------------------------------------------------------------------------------- /snippets/goto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/snippets/goto.js -------------------------------------------------------------------------------- /snippets/mineflayer-cuboid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/snippets/mineflayer-cuboid.js -------------------------------------------------------------------------------- /snippets/minehut-map-merger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/snippets/minehut-map-merger.js -------------------------------------------------------------------------------- /snippets/mob-breeder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/snippets/mob-breeder.js -------------------------------------------------------------------------------- /snippets/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/snippets/proxy.js -------------------------------------------------------------------------------- /snippets/simple-sheep-breeder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/snippets/simple-sheep-breeder.js -------------------------------------------------------------------------------- /snippets/storageScan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/snippets/storageScan.js -------------------------------------------------------------------------------- /snippets/tab-complete-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/snippets/tab-complete-plugins.js -------------------------------------------------------------------------------- /snippets/wolf-tamer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pix3lPirat3/mineflayer-snippets/HEAD/snippets/wolf-tamer.js --------------------------------------------------------------------------------