├── .gitignore ├── LICENSE ├── README.md ├── kill_aura ├── index.js └── package-lock.json ├── lookAt_Bot ├── index.js ├── package-lock.json └── package.json ├── lumberjack_Bot ├── index.js ├── package-lock.json └── package.json ├── pathfinder_Bot ├── index.js ├── package-lock.json └── package.json ├── pvpBot2 ├── index.js ├── package-lock.json └── package.json └── pvp_Bot ├── index.js ├── package-lock.json └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDudeFromCI/Mineflayer-Youtube-Tutorials/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDudeFromCI/Mineflayer-Youtube-Tutorials/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDudeFromCI/Mineflayer-Youtube-Tutorials/HEAD/README.md -------------------------------------------------------------------------------- /kill_aura/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDudeFromCI/Mineflayer-Youtube-Tutorials/HEAD/kill_aura/index.js -------------------------------------------------------------------------------- /kill_aura/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDudeFromCI/Mineflayer-Youtube-Tutorials/HEAD/kill_aura/package-lock.json -------------------------------------------------------------------------------- /lookAt_Bot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDudeFromCI/Mineflayer-Youtube-Tutorials/HEAD/lookAt_Bot/index.js -------------------------------------------------------------------------------- /lookAt_Bot/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDudeFromCI/Mineflayer-Youtube-Tutorials/HEAD/lookAt_Bot/package-lock.json -------------------------------------------------------------------------------- /lookAt_Bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDudeFromCI/Mineflayer-Youtube-Tutorials/HEAD/lookAt_Bot/package.json -------------------------------------------------------------------------------- /lumberjack_Bot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDudeFromCI/Mineflayer-Youtube-Tutorials/HEAD/lumberjack_Bot/index.js -------------------------------------------------------------------------------- /lumberjack_Bot/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDudeFromCI/Mineflayer-Youtube-Tutorials/HEAD/lumberjack_Bot/package-lock.json -------------------------------------------------------------------------------- /lumberjack_Bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDudeFromCI/Mineflayer-Youtube-Tutorials/HEAD/lumberjack_Bot/package.json -------------------------------------------------------------------------------- /pathfinder_Bot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDudeFromCI/Mineflayer-Youtube-Tutorials/HEAD/pathfinder_Bot/index.js -------------------------------------------------------------------------------- /pathfinder_Bot/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDudeFromCI/Mineflayer-Youtube-Tutorials/HEAD/pathfinder_Bot/package-lock.json -------------------------------------------------------------------------------- /pathfinder_Bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDudeFromCI/Mineflayer-Youtube-Tutorials/HEAD/pathfinder_Bot/package.json -------------------------------------------------------------------------------- /pvpBot2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDudeFromCI/Mineflayer-Youtube-Tutorials/HEAD/pvpBot2/index.js -------------------------------------------------------------------------------- /pvpBot2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDudeFromCI/Mineflayer-Youtube-Tutorials/HEAD/pvpBot2/package-lock.json -------------------------------------------------------------------------------- /pvpBot2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDudeFromCI/Mineflayer-Youtube-Tutorials/HEAD/pvpBot2/package.json -------------------------------------------------------------------------------- /pvp_Bot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDudeFromCI/Mineflayer-Youtube-Tutorials/HEAD/pvp_Bot/index.js -------------------------------------------------------------------------------- /pvp_Bot/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDudeFromCI/Mineflayer-Youtube-Tutorials/HEAD/pvp_Bot/package-lock.json -------------------------------------------------------------------------------- /pvp_Bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDudeFromCI/Mineflayer-Youtube-Tutorials/HEAD/pvp_Bot/package.json --------------------------------------------------------------------------------