Начинающий
- Статус
- Оффлайн
- Регистрация
- 13 Окт 2022
- Сообщения
- 30
- Реакции
- 0
JavaScript:
const mineflayer = require('mineflayer');
const FlayerCaptcha = require('FlayerCaptcha');
(async () => {
const bot = mineflayer.createBot({ host: 'mc.funtime.su', port: 25565, username: 'Явнокрутой228', version: "1.20" });
const captcha = new FlayerCaptcha(bot);
captcha.on('success', async (image, viewDirection) => {
await image.toFile('captcha.png');
console.log('Captcha saved');
});
})();