0x26e
0x26e
  • 155
  • 269 855
Pathfinding & Basic Parkour with Minecraft Bots using Mineflayer in Python [12]
In this video we cover how to implement pathfinding (and basic parkour, bridging, and general movement) for Minecraft bots using Mineflayer in Python.
My Code:
github.com/0x26e/MineflayerPython/blob/main/scripts/13-pathfinder-bot.py
References:
mineflayer-pathfinder: github.com/PrismarineJS/mineflayer-pathfinder/tree/master
My Discord: discord.com/invite/FMqnBQ5j6C
Mineflayer Discord: discord.com/invite/PXbmVHkKXh
This video is an intermediate tutorial part of my Mineflayer in Python tutorial series. You can find the full playlist here: ua-cam.com/play/PL8Uh__5X0ZE5t_yy29GFsX5U1bFyX7oUB.html
Timestamps:
0:00 Intro
0:10 Requirements
0:24 Code
1:48 Demonstration
Переглядів: 1 425

Відео

Basic Movement for Mineflayer Minecraft Bots in Python [11]
Переглядів 5543 місяці тому
In this video we cover how to have your Mineflayer Minecraft bot run and jump at you on command, in Python. My Code: github.com/0x26e/MineflayerPython/blob/main/scripts/12-jumper-bot.py References: bot.setControlState(): github.com/PrismarineJS/mineflayer/blob/master/docs/api.md#botsetcontrolstatecontrol-state bot.clearControlStates(): github.com/PrismarineJS/mineflayer/blob/master/docs/api.md#...
Raycasting with Minecraft Bots using Mineflayer in Python [10]
Переглядів 4263 місяці тому
In this video we cover how to implement more advanced head movements (looking at players, coords, and in any direction) and basic raycasting for Minecraft bots using Mineflayer in Python. My Code: github.com/0x26e/MineflayerPython/blob/main/scripts/11-raycast-bot.py References: bot.look(): github.com/PrismarineJS/mineflayer/blob/master/docs/api.md#botlookyaw-pitch-force bot.blockAtCursor(): git...
Mineflayer Minecraft Bot Looks Around in Python [9]
Переглядів 4963 місяці тому
In this video we cover how to have your Mineflayer Minecraft bot interact with chat in Python. My Code: github.com/0x26e/MineflayerPython/blob/main/scripts/10-looker-bot.py References: bot.lookAt(): github.com/PrismarineJS/mineflayer/blob/master/docs/api.md#botlookatpoint-force My Discord: discord.com/invite/FMqnBQ5j6C Mineflayer Discord: discord.com/invite/PXbmVHkKXh This video is a beginner t...
AI Chat Bot in Minecraft using Mineflayer in Python [8]
Переглядів 7903 місяці тому
In this video we cover how to implement the basic AI chatbot ELIZA, made in the 1960s as a mock psychotherapist, in a Minecraft Bot using Mineflayer, in Python. My Code: github.com/0x26e/MineflayerPython/blob/main/scripts/09-eliza-chat-bot.py References: ELIZA Wikipedia: en.wikipedia.org/wiki/ELIZA Eliza in Python (Github): github.com/wadetb/eliza My Discord: discord.com/invite/FMqnBQ5j6C Minef...
Minecraft Chat Bot using Mineflayer in Python [7]
Переглядів 5413 місяці тому
In this video we cover how to have your Mineflayer Minecraft bot interact with chat in Python. My Code: github.com/0x26e/MineflayerPython/blob/main/scripts/09-eliza-chat-bot.py References: bot.chat(): github.com/PrismarineJS/mineflayer/blob/master/docs/api.md#botchatmessage My Discord: discord.com/invite/FMqnBQ5j6C Mineflayer Discord: discord.com/invite/PXbmVHkKXh This video is a beginner tutor...
Clean Console for Multiple Mineflayer Minecraft Bots in Python [6]
Переглядів 4303 місяці тому
In this video we cover how to have your Mineflayer Minecraft bot automatically reconnect to servers in Python. My Code: github.com/0x26e/MineflayerPython/blob/main/scripts/06-logger-bot.py github.com/0x26e/MineflayerPython/blob/main/scripts/07-color-bot.py References: Simple-Chalk: pypi.org/project/simple-chalk/ JS Code: github.com/0x26e/MineflayerTutorials/blob/main/scripts/06-color-bot.mjs My...
Multiple Mineflayer Minecraft Bots in Python [5]
Переглядів 7014 місяці тому
In this video we cover how to control multiple Mineflayer Minecraft bots from one script in Python. My Code: github.com/0x26e/MineflayerPython/blob/main/scripts/05-multi-bot.py References: JS Code: github.com/0x26e/MineflayerTutorials/blob/main/scripts/05-multi-bot.js My Discord: discord.com/invite/FMqnBQ5j6C Mineflayer Discord: discord.com/invite/PXbmVHkKXh This video is a getting-started tuto...
Mineflayer Bot Automatically Reconnects to Servers in Python [4]
Переглядів 5604 місяці тому
In this video we cover how to have your Mineflayer Minecraft bot automatically reconnect to servers in Python. My Code: github.com/0x26e/MineflayerPython/blob/main/scripts/04-reconnect-bot.py Note: The reason for the double connection at the start of the demonstration is due to having a duplicate "mineflayer.createBot()" line. You'll notice in the video I have one of these outside of the "start...
Making your Mineflayer Bot Disconnect from Servers in Python [3]
Переглядів 5764 місяці тому
In this video we cover how to how your Mineflayer Minecraft bot disconnect from servers in Python. My Code: github.com/0x26e/MineflayerPython/blob/main/scripts/03-disconnect-bot.py References: this.quit() info: github.com/PrismarineJS/mineflayer/blob/master/docs/api.md#botquitreason Chat event: github.com/PrismarineJS/mineflayer/blob/master/docs/api.md#messagestr-message-messageposition-jsonmsg...
Adding Event Listeners to your Minecraft Bot in Python Using Mineflayer [2]
Переглядів 9694 місяці тому
In this video we cover how to add event listeners for connection-related information to your Minecraft bot using Python and Mineflayer. My Code: github.com/0x26e/MineflayerPython/blob/main/scripts/02-connect-bot.py References: Socket info: github.com/PrismarineJS/mineflayer/blob/master/docs/unstable_api.md#bot_client Login event: github.com/PrismarineJS/mineflayer/blob/master/docs/api.md#login ...
Simple Minecraft Bot in Python Using Mineflayer [1]
Переглядів 4,6 тис.4 місяці тому
In this video we cover the basics to get your Minecraft bot working on a localhost server using Python and Mineflayer. My Code: github.com/0x26e/MineflayerPython/blob/main/scripts/01-simple-bot.py References: Mineflayer's Python README: github.com/PrismarineJS/mineflayer/blob/master/examples/python/README.md Google Colab tutorial: colab.research.google.com/github/PrismarineJS/mineflayer/blob/ma...
ShamanOnly Hits 16,000 Total Level | Wynncraft
Переглядів 395Рік тому
Only took 999 hours...
Super Hostile: Sea of Flame I in 3:32.467 (FWR)
Переглядів 9142 роки тому
Super Hostile: Sea of Flame I in 3:32.467 (FWR)
Mini Hostile: Ragequit Holidays in 1:41.967 (WR)
Переглядів 7152 роки тому
Mini Hostile: Ragequit Holidays in 1:41.967 (WR)
Minecraft Hypixel Bot (Using Mineflayer.js) [Template]
Переглядів 6 тис.2 роки тому
Minecraft Hypixel Bot (Using Mineflayer.js) [Template]
Wynntils Info Overlay [TUTORIAL]
Переглядів 8 тис.2 роки тому
Wynntils Info Overlay [TUTORIAL]
Wynncraft 2.0 (IN-DEPTH ANALYSIS)
Переглядів 1,3 тис.2 роки тому
Wynncraft 2.0 (IN-DEPTH ANALYSIS)
Minecraft's HARDEST ESCAPE ROOM
Переглядів 1452 роки тому
Minecraft's HARDEST ESCAPE ROOM
Xekaj 2012 Advent: Forsaken City in 48.017 (WR)
Переглядів 1102 роки тому
Xekaj 2012 Advent: Forsaken City in 48.017 (WR)
Xekaj 2012 Advent: Fireland Bunker in 46.283 (WR)
Переглядів 1442 роки тому
Xekaj 2012 Advent: Fireland Bunker in 46.283 (WR)
Minecraft Bot Using Premium Account | Mineflayer.js Guides Ep.10
Переглядів 5 тис.2 роки тому
Minecraft Bot Using Premium Account | Mineflayer.js Guides Ep.10
Minecraft Bot Jumps at You | Mineflayer.js Guides Ep.9
Переглядів 3,5 тис.2 роки тому
Minecraft Bot Jumps at You | Mineflayer.js Guides Ep.9
Xekaj 2012 Advent: Centric Elements in 1:08.883 (WR)
Переглядів 1222 роки тому
Xekaj 2012 Advent: Centric Elements in 1:08.883 (WR)
Minecraft Bot Looks at Players | Mineflayer.js Guides Ep.8
Переглядів 3,2 тис.2 роки тому
Minecraft Bot Looks at Players | Mineflayer.js Guides Ep.8
Minecraft Bot Interacts with Chat | Mineflayer.js Guides Ep.7
Переглядів 6 тис.2 роки тому
Minecraft Bot Interacts with Chat | Mineflayer.js Guides Ep.7
Minecraft Bot Displays Color in Chat | Mineflayer.js Guides Ep.6
Переглядів 2,7 тис.2 роки тому
Minecraft Bot Displays Color in Chat | Mineflayer.js Guides Ep.6
Running Multiple Minecraft Bots! | Mineflayer.js Guides Ep.5
Переглядів 7 тис.2 роки тому
Running Multiple Minecraft Bots! | Mineflayer.js Guides Ep.5
Minecraft Bot Disconnects from Server | Mineflayer.js Guides Ep.4
Переглядів 3,3 тис.2 роки тому
Minecraft Bot Disconnects from Server | Mineflayer.js Guides Ep.4
Minecraft Bot Reconnects to Server | Mineflayer.js Guides Ep.3
Переглядів 6 тис.2 роки тому
Minecraft Bot Reconnects to Server | Mineflayer.js Guides Ep.3

КОМЕНТАРІ

  • @mrkss-yeah
    @mrkss-yeah 4 дні тому

    How to make them answer with interval? For example I want to type message and then bot wait some time to answer

  • @bluends1457
    @bluends1457 5 днів тому

    You sound like the backyard scientist

  • @RouxQvixote
    @RouxQvixote 5 днів тому

    Bro I assume youre using anything before 1.21.x

  • @HeroMiner
    @HeroMiner 7 днів тому

    my bot when connected to the server, in vs code terminal it says Logged In To None, i wrote the code like you, what is the problem

  • @1_x409
    @1_x409 28 днів тому

    This is so cool Thanks

  • @M17-n9z
    @M17-n9z 29 днів тому

    ummm how can I make them run a command as they rejoin cuz the server I play in uses /login or /register command

    • @0x26e
      @0x26e 23 дні тому

      Check out my episodes about making the bots type in chat.

  • @codehubhq
    @codehubhq Місяць тому

    is there a mineflayer alternative that supports java 1.21.1 version

    • @0x26e
      @0x26e 23 дні тому

      Not yet, just wait for mineflayer to update.

  • @МУСОР_ТВ
    @МУСОР_ТВ Місяць тому

    Make a video about trading with villagers

  • @Wolfiestein
    @Wolfiestein Місяць тому

    Hello! im following the tutorial installed node and all the dependencies but still get the error saying "import javascript could not be resolved" already did pip install javascript. Python 3.12.5 and Nodejs 22.6.0

  • @МУСОР_ТВ
    @МУСОР_ТВ Місяць тому

    Bro, I'm trying to get a biome through the bot.blockAt(), but all the values in it are empty (I need to get a name, but there's always an empty string). What can be done?

    • @TV-qr4ki
      @TV-qr4ki Місяць тому

      @@МУСОР_ТВ что значит все значения объекта пустые? В bot.blockAt на моём опыте выдаёт либо None (обычно, если бот не видит блок на координатах ввиду отсутствия прогрузки чанков), либо какой-нибудь блок, даже того же воздуха. Ты точно правильно используешь команду? Лучше использовать оба аргумента в скобках => bot.blockAt(vec3(x, y, z), True/False), где vec3 - это экземпляр координат; True - проверять на рамки, таблички и картины на этих координатах, а False - игнорировать их и возвращать только блок. [EN] What does it mean that all object values are empty? In my experience, bot.blockAt outputs either None (usually if the bot does not see the block at the coordinates due to the lack of chunks loading), or some kind of block, even of the same air. Are you sure you're using the command correctly? It is better to use both arguments in parentheses => bot.blockAt(vec3(x, y, z), True/False), where vec3 is an instance of coordinates; True - check for frames, plates and paintings at these coordinates, and False - ignore them and return only the block.

    • @МУСОР_ТВ
      @МУСОР_ТВ Місяць тому

      @@TV-qr4ki я про биом, который находится в объекте блока. Его свойства пустые выдаются (то бишь name пустой и так далее). Блок нормально все находит, а вот с биомом проблемочка

  • @That_Krusty_Kid_ncb
    @That_Krusty_Kid_ncb Місяць тому

    YO thx alot, and onemore thign... could I like bascily swtch up the code and make it just jump...

    • @0x26e
      @0x26e Місяць тому

      Yep, just remove the movement stuff that isn't relating to jumping.

    • @That_Krusty_Kid_ncb
      @That_Krusty_Kid_ncb Місяць тому

      @@0x26e thx a lot bro…

  • @UnknownOp2109
    @UnknownOp2109 2 місяці тому

    bro you didnt telll how to stop it now its keep joining and quitting ;D 🤣

  • @gofdigemldfg
    @gofdigemldfg 2 місяці тому

    Can you tell me how to use the inventory?

  • @Retepeter
    @Retepeter 2 місяці тому

    you should remake this vid

  • @LastAngel-j4w
    @LastAngel-j4w 2 місяці тому

    pls sleep code

  • @matgata1040
    @matgata1040 2 місяці тому

    how can i equip item main hand

    • @TV-qr4ki
      @TV-qr4ki 2 місяці тому

      Hi, just use this method: if bot.inventory.firstEmptyHotbarSlot(): bot.equip(item_ID, "hand") The first command will return the ID of the first empty slot in the hotbar. If it does not exist, the equip method will cause an error, since it only works if there is an empty slot in the hotbar. You can also use: try: bot.equip(item_ID, "hand") except Exception as error: bot.chat(f"An error has occurred: {error}") return

  • @junyuchen4034
    @junyuchen4034 2 місяці тому

    Hi I am trying to run the placeBlock function but this always happens to me: Error: Event blockUpdate:(-207, 69, 485) did not fire within timeout of 5000ms. By any chance do you know what this is about and if this is related to async?

    • @TV-qr4ki
      @TV-qr4ki 2 місяці тому

      Hello, I had the same problem. I think this is a bot bug. If you need to use this particular method and catch errors so that the script does not fail, you can use: try: bot.placeBlock(referenceBlock, faceVector) except Exception as error: bot.chat(f"An error has occurred: {error}") return But it is better to use the following method, which I have recently started using myself: block_pos = vec3(referenceBlock.position.x, referenceBlock.position.y, referenceBlock.position.z) new_block_pos = block_pos.plus(faceVector) bot.lookAt(new_block_pos, [True]) bot.activateBlock(referenceBlock, faceVector) The first command allows the bot to look at the new coordinates where the new block will be installed, due to the fact that in the placeBlock method, the bot turns to the face of the block on which it wants to put a new one. The second one allows the bot to install the block. Note that in this method, the bot will install the block only with its right (main) hand. You should also check that there is air in place of the new block, otherwise the bot will not be able to install it: if bot.blockAt(new_block_pos, True).displayName == "Air": **do things**

  • @DahoOyunda-gi3ef
    @DahoOyunda-gi3ef 2 місяці тому

    Is it possible to make a bot that can connect to modded Minecraft servers with JavaScript using Mineflayer? If possible, can you please make a training video about it?

  • @polat2181
    @polat2181 2 місяці тому

    Is it possible to make a bot that can connect to modded Minecraft servers with JavaScript using Mineflayer? If possible, can you please make a training video about it?

  • @polat2181
    @polat2181 2 місяці тому

    Is it possible to make a bot that can connect to modded Minecraft servers with JavaScript using Mineflayer? If possible, can you please make a training video about it?

  • @polat2181
    @polat2181 2 місяці тому

    Is it possible to make a bot that can connect to modded Minecraft servers with JavaScript using Mineflayer? If possible, can you please make a training video about it?

  • @polat2181
    @polat2181 2 місяці тому

    Is it possible to make a bot that can connect to modded Minecraft servers with JavaScript using Mineflayer? If possible, can you please make a training video about it?

  • @polat2181
    @polat2181 2 місяці тому

    Is it possible to make a bot that can connect to modded Minecraft servers with JavaScript using Mineflayer? If possible, can you please make a training video about it?

  • @polat2181
    @polat2181 2 місяці тому

    Is it possible to make a bot that can connect to modded Minecraft servers with JavaScript using Mineflayer? If possible, can you please make a training video about it?

  • @polat2181
    @polat2181 2 місяці тому

    Is it possible to make a bot that can connect to modded Minecraft servers with JavaScript using Mineflayer? If possible, can you please make a training video about it?

  • @polat2181
    @polat2181 2 місяці тому

    Is it possible to make a bot that can connect to modded Minecraft servers with JavaScript using Mineflayer? If possible, can you please make a training video about it?

  • @polat2181
    @polat2181 2 місяці тому

    Is it possible to make a bot that can connect to modded Minecraft servers with JavaScript using Mineflayer? If possible, can you please make a training video about it?

  • @polat2181
    @polat2181 2 місяці тому

    Is it possible to make a bot that can connect to modded Minecraft servers with JavaScript using Mineflayer? If possible, can you please make a training video about it?

    • @Quayda
      @Quayda 13 днів тому

      const mineflayer = require('mineflayer'); const { Movements, pathfinder, GoalBlock } = require('mineflayer-pathfinder'); const config = { bots: [ { username: 'yarraklıbot', password: 'botPassword1', host: 'toxypvp.aternos.me', port: 25565, version: '1.19.4', }, { username: 'yaraksızbot', password: 'botPassword2', host: 'toxypvp.aternos.me', port: 25565, version: '1.19.4', }, ], utils: { 'auto-reconnect': true, 'auto-reconnect-delay': 5000, // 5 saniye }, }; function createBots() { config.bots.forEach(botConfig => { const bot = mineflayer.createBot(botConfig); bot.loadPlugin(pathfinder); const mcData = require('minecraft-data')(bot.version); const movements = new Movements(bot, mcData); bot.pathfinder.setMovements(movements); bot.once('spawn', () => { console.log(`${botConfig.username} has spawned`); bot.chat('yarakıolan meraba desınmı'); const goal = new GoalBlock(10, 64, 10); // Hedef koordinat bot.pathfinder.setGoal(goal); bot.on('chat', (username, message) => { if (message === '!hello') { bot.chat('Hello, ' + username + '!'); } if (message === '!move') { bot.pathfinder.setGoal(goal); } }); }); bot.on('error', err => { console.error(`${botConfig.username} error:`, err); }); bot.on('end', () => { console.log(`${botConfig.username} has been disconnected`); if (config.utils['auto-reconnect']) { setTimeout(() => { createBots(); // Yine botu başlatır }, config.utils['auto-reconnect-delay']); } }); bot.on('kicked', (reason) => { let reasonText = JSON.parse(reason).text; if (reasonText === '') { reasonText = JSON.parse(reason).extra[0].text; } reasonText = reasonText.replace(/§./g, ''); console.warn(`${botConfig.username} was kicked from the server. Reason: ${reasonText}`); }); }); } createBots(); this can work

  • @Molinono
    @Molinono 2 місяці тому

    it doesnt work anymore, idk if it works with the latest version of mc, since im playing on it right now and i cant see that option.

    • @0x26e
      @0x26e 2 місяці тому

      Current Wynntils has a version of this. They use "{thing}" format instead of "%thing%" format now though (I think)

  • @aritrasengupta6675
    @aritrasengupta6675 3 місяці тому

    i was trying to make a bot look around a bot in bedrock unable to do that using node.js (bedrock-protocol)

  • @DeWitherWarrior
    @DeWitherWarrior 3 місяці тому

    Unrelated question but what editor do you use? All my python editors are a blank white hell but yours looks perfect! Btw keep up the good work❤

    • @LuukDomhof
      @LuukDomhof 3 місяці тому

      that's Visual Studio Code, probably with plugins.

    • @MiTask
      @MiTask 3 місяці тому

      just switch to dark theme lol

    • @0x26e
      @0x26e 2 місяці тому

      Shown in this video is Visual Studio Code. I use very few plugins (if any?).

  • @Mewmew-y4m
    @Mewmew-y4m 3 місяці тому

    Thank you men for keep making videos about Mineflayer.

  • @harshitgoswami7087
    @harshitgoswami7087 3 місяці тому

    Keep grow bro love you

  • @soapboi5
    @soapboi5 3 місяці тому

    yooo man thx vry much!

  • @junyuchen4034
    @junyuchen4034 3 місяці тому

    hi I am researching on autonomous agents in minecraft, do you know if there is a way to collect the realtime game frame through mineflayer?

    • @0x26e
      @0x26e 3 місяці тому

      I believe you could do this using prismarine-viewer (a plugin for mineflayer) and using the first-person setting to take a pic from the bot pov. You may run into issues with this depending on the minecraft version the bot is running on though because there is currently a known issue with the prismarine-viewer rendering using wrong block ids so every block appears different than it actually is (sandstone is replaced with noteblocks, wool is replaced with redstone, etc.)

  • @MonkeyGamingBoy
    @MonkeyGamingBoy 3 місяці тому

    Hello Bro Don't Know Coding But I'm Making Bots With Your Videos, And Still I Can't Understand Coding But I Can Make Bot That Follow Player But When I'm Trying To Make A Bot That Follow Player And Kill Hostile Mobs But I Don't Have Codes Can You Provide Me I Hope You can😢🎉🎉 You Are My Teacher

  • @thepap000
    @thepap000 3 місяці тому

    I thought mineflayer bots only worked on node js?

    • @0x26e
      @0x26e 3 місяці тому

      We can use JsPyBridge to use JavaScript libraries in Python :)

  • @amankumar-rk8gk
    @amankumar-rk8gk 3 місяці тому

    Hi bro plz make a bot and a tutorial video on how to afk on public servers and how to bypass the /login <> command while entering into the server Also if possible a grinder bot

  • @GrhfrggG
    @GrhfrggG 3 місяці тому

    Give Me Full Your Source

  • @Jagdoggo
    @Jagdoggo 3 місяці тому

    Great tutorial, I coulded get this to work before because it just gave me errors but now thanks to this tutorial, i got ot to work!❤

  • @alaric_luminaris
    @alaric_luminaris 3 місяці тому

    How about minecraft bedrock??

    • @firewry
      @firewry 3 місяці тому

      cant do it with bedrock sadly

  • @ishikkiakabane
    @ishikkiakabane 3 місяці тому

    Cool bro, I'm also a python developer. Wanna build a package in python using this node js library?

  • @ishikkiakabane
    @ishikkiakabane 3 місяці тому

    Damn really cool bro, great way of explaining it, it wasn't actually simple in js but you cleared it like a crystal ✨ 👍

  • @apchihbaaa
    @apchihbaaa 3 місяці тому

    video born at my eyes

  • @RSNETWORK99
    @RSNETWORK99 3 місяці тому

    Pls make this in js

    • @0x26e
      @0x26e 3 місяці тому

      I have already made this tutorial in JS 2 years ago. You can find that video here: ua-cam.com/video/SEVJS9qW7Wk/v-deo.html

  • @somykOS
    @somykOS 4 місяці тому

    Is there any sense to make delay before reconnecting? If so, how to do it?

    • @0x26e
      @0x26e 4 місяці тому

      There is some sense in terms of throttling reconnection attempts. This could be done to prevent your bot from being too bot-like and being autodetected by some anticheats. It would likely just be putting a small delay of some form (such as time.sleep() ) right before you attempt to reconnect (between lines 45 and 46 if looking at the tutorial code)

  • @firewry
    @firewry 4 місяці тому

    Heres a few ideas for you if you want to use them 1. auto armor equip 2. pathfinding 3. discord server implementation 4. premium accounts these are just all things that I made and enjoyed

    • @0x26e
      @0x26e 4 місяці тому

      The first 2 are already made and are planned to come out in the coming weeks. Any specific ideas for the discord server implementation? For premium accounts, I've already done this in JavaScript for a Mineflayer tutorial 2 years ago and it's done in the exact same way, but I suppose I could make a new Python tutorial for it at some point. Thanks for the suggestions!

  • @botobeni
    @botobeni 4 місяці тому

    how to play with friends if you don't have any 🤣🤣

  • @felix2642
    @felix2642 4 місяці тому

    Cool tutors. As it was said, don't stop!)

    • @0x26e
      @0x26e 4 місяці тому

      Similar to when I did a tutorial series like this for JavaScript 2 years ago, I'll likely have to stop when I run out of ideas for tutorials to make. Feel free to suggest ideas here or in the discord so that I can keep making them :)

  • @botobeni
    @botobeni 4 місяці тому

    DUDE don't stop, because this is kinda the only usable tutorial on yt