Bot Destroys Google Minesweeper

แชร์
ฝัง
  • เผยแพร่เมื่อ 9 ก.ค. 2021
  • Python bot destroys minesweeper with the power of logic and probabilities. Yeah that's it.
    The code
    github.com/CosiNull/minesweep...

ความคิดเห็น • 1.5K

  • @koruba8693
    @koruba8693 2 ปีที่แล้ว +13970

    Why do they call it oven

    • @werferyt6092
      @werferyt6092 2 ปีที่แล้ว +1081

      @@kupicx and of out hot eat the food

    • @furballisticfinn6881
      @furballisticfinn6881 2 ปีที่แล้ว +456

      top questions science still can’t answer

    • @alexanderharrison7421
      @alexanderharrison7421 2 ปีที่แล้ว +545

      @@furballisticfinn6881 Well, the answer is proportional to the reason we should never assume in life, just because carrot big leaf because small leaf carrot big not leaf big size

    • @furballisticfinn6881
      @furballisticfinn6881 2 ปีที่แล้ว +88

      @@alexanderharrison7421 i guess you’re right

    • @Yumiesthetic
      @Yumiesthetic 2 ปีที่แล้ว +24

      why not

  • @stringbeanplepeda1632
    @stringbeanplepeda1632 2 ปีที่แล้ว +22484

    funniest part is that the legit world record is over 2 times faster at 57 seconds

    • @cossibility7019
      @cossibility7019  2 ปีที่แล้ว +7420

      The fact that it works is enough for me 😂😂

    • @MannifyYT2023
      @MannifyYT2023 2 ปีที่แล้ว +756

      Funny how i got that RIGHT UNDER THIS VIDEO

    • @kwekker
      @kwekker 2 ปีที่แล้ว +805

      That's the speed of python for you

    • @randomperson1418
      @randomperson1418 2 ปีที่แล้ว +651

      It's clearly not optimized for speed XD

    • @afj810
      @afj810 2 ปีที่แล้ว +181

      because the bot doesn't know how to chord

  • @BakedAlaskaTM
    @BakedAlaskaTM 2 ปีที่แล้ว +8655

    i legit thought the video was called "bob destroys google minesweeper" for a second and I was like "damn this bob is cracked"

    • @unfazedmc5734
      @unfazedmc5734 2 ปีที่แล้ว +321

      This made me laugh way too hard

    • @ulysses847
      @ulysses847 2 ปีที่แล้ว +27

      Zamn

    • @nise6699
      @nise6699 2 ปีที่แล้ว +129

      Bob's really talented

    • @AughOughWaugh
      @AughOughWaugh 2 ปีที่แล้ว +122

      He has a good gaming chair

    • @gumplay7264
      @gumplay7264 2 ปีที่แล้ว +9

      @@Wat-.- in what world would a cat destroy minesweeper this fluently

  • @SpecRec
    @SpecRec 2 ปีที่แล้ว +3519

    I find it funny that the bot keeps hesitating as if it's thinking lmao

    • @Balou_560
      @Balou_560 2 ปีที่แล้ว +533

      I think it's waiting for the particles that happen when you make a move on this version of the game to clear up as to not mess up what the bot is seeing since I assume it's tracking individual pixels

    • @derdbolt8906
      @derdbolt8906 2 ปีที่แล้ว +92

      If it didn't do that it could legit finish in 10 seconds

    • @saadqadeer7807
      @saadqadeer7807 2 ปีที่แล้ว +23

      @Volzye It's not his theory, OC mentioned it in another comment

    • @Balou_560
      @Balou_560 2 ปีที่แล้ว +10

      @Volzye yee I was just repeating what I remembered the vid creator said, i just said I think in case I said anything wrong

    • @blinded6502
      @blinded6502 2 ปีที่แล้ว +17

      @Volzye You are completely and utterly wrong. You underestimate what modern PC's can do by a millionfold

  • @ryanpenalosa3148
    @ryanpenalosa3148 2 ปีที่แล้ว +4664

    He just has a good gaming chair.

  • @MrLandShark55_55
    @MrLandShark55_55 2 ปีที่แล้ว +2060

    The PC that we once owned had minesweeper on it. It must have been glitched, or modded somehow, because there was one tile that completes the entire board if you click it first. It was always the same tile, so I was able to beat the hardest difficulty in 2 seconds. The rest of my family went crazy trying to figure out how I did this.

    • @cyh..7
      @cyh..7 ปีที่แล้ว +236

      Minesweeper god mode

    • @user-vl3zf2qw1z
      @user-vl3zf2qw1z ปีที่แล้ว +134

    • @FrogGamePlay
      @FrogGamePlay ปีที่แล้ว +175

      ​@@user-vl3zf2qw1zuhm what in the real amogus

    • @FalkyRocket2222
      @FalkyRocket2222 ปีที่แล้ว +3

      @@user-vl3zf2qw1z what the fuck

    • @maximendoza6452
      @maximendoza6452 ปีที่แล้ว +279

      ​@@FrogGamePlay emojis from Ohio 💀

  • @spidernh
    @spidernh 2 ปีที่แล้ว +5572

    what's the point of placing flags? you can win the game just by clicking all the spots that aren't mines, flags are actually useless when you have effectively infinite memory

    • @cossibility7019
      @cossibility7019  2 ปีที่แล้ว +3624

      You’re absolutely right!!
      The way that I programmed the bot is that it constantly takes a screenshot of the current board and plays according to what it currently sees. This means that flags are important in this method since the bot always forgets its previous screenshot. My method is slower but it is easier to implement and debug.
      A better way to do it (as you pointed it out) would be to store the board in the computer’s memory and update the mental map after each move. This way, we can optimize the performance of the bot since it won’t need to rely on flags to know the location of each mine.

    • @spidernh
      @spidernh 2 ปีที่แล้ว +361

      @@cossibility7019 ok, also how did you detect each tile? I'm having issues with what you said you did (check a pixel and see what color it is) because there are pixels that are on the number 1 and will work for it, but for a 4 or something, it'll just be the background color

    • @cossibility7019
      @cossibility7019  2 ปีที่แล้ว +661

      What I did is that I took a specific coordinate where each specific tile has their unique pixel colour (I don’t remember the specific coordinate). One thing to be careful with this method, however, is that you have to take into account the particle animations of the game.
      Each time you click a tile, there are different coloured particles that appear on the screen which can ruin the screenshot.
      My cheap solution to avoid the issue is to wait a certain amount of milliseconds after performing each move (I wait for the animation to end). This solution is what mainly makes my bot slower.
      If you don’t want to wait for the animation to end, I believe that there are Python libraires that can deal with image detection (they can recognize similar images)

    • @midtisel4222
      @midtisel4222 2 ปีที่แล้ว +71

      Its only worth it if the bot knew about right clicking to uncover all the unflagged tiles

    • @joelhoon1707
      @joelhoon1707 2 ปีที่แล้ว +146

      This is literally the entire game
      "Why place flags when you can just not click mines"

  • @theweirdguyroger8537
    @theweirdguyroger8537 2 ปีที่แล้ว +614

    bots in fighting games: 🤡
    bots in chess sudoku minesweeper and other games: 😎

    • @hanzzxeditz
      @hanzzxeditz 2 ปีที่แล้ว +156

      That's because in fighting games they can't predict what the player is thinking as they have a consious mind, while here, they can predict as every code has a pattern, patterns are easy to predict therefore easier -🤓

    • @JoThNoMi
      @JoThNoMi 2 ปีที่แล้ว +94

      @@hanzzxeditz the 🤓do be spitting facts tho.

    • @getawayunclejohn7107
      @getawayunclejohn7107 2 ปีที่แล้ว +50

      @@hanzzxeditz 🤓 but respect

    • @Dips-u
      @Dips-u 2 ปีที่แล้ว +17

      Then there’s bots in Fps games.

    • @streyngthz
      @streyngthz 2 ปีที่แล้ว +4

      Bot also useful in tower defense game, especially the ones that need grinding like btd6.

  • @nosu5530
    @nosu5530 2 ปีที่แล้ว +648

    As a minesweeper player, I can confirm we play it by teleporting our mouse

    • @katdoestuffYT
      @katdoestuffYT ปีที่แล้ว +26

      ‘Mineswapper’ lol
      And yes, I definitely play mineswapper by teleporting our mouse

    • @OverHeatVD
      @OverHeatVD ปีที่แล้ว +4

      @@katdoestuffYT xD

    • @aakashxd9868
      @aakashxd9868 ปีที่แล้ว +1

      can anyone tell me how to play this game
      because most of the time i just click here and there randomly

    • @OverHeatVD
      @OverHeatVD ปีที่แล้ว +16

      @@aakashxd9868 Clicking a cell reveals it. If said cell has a mine, you instantly lose. The goal is to open every non-mine cell.
      Every cell you've already opened will display a number on it. That number is how many mines there are in the 8 surrounding cells. Using this information, you can deduce which tiles have a mine and which tiles don't (in which case they're safe to open).
      Also, there's a thing called flags which allow you to mark tiles as having a mine (so you don't accidentally open them later).

    • @aakashxd9868
      @aakashxd9868 ปีที่แล้ว

      @@OverHeatVD thnx for the info buddy.. 😄

  • @Metawire61
    @Metawire61 2 ปีที่แล้ว +156

    For a lightly programmed bot this is actually pretty fast, pretty sure full programing can do this in like 10 seconds

    • @maxsurman7838
      @maxsurman7838 8 หลายเดือนก่อน

      See CodeBullet's version of this.

    • @xenird
      @xenird หลายเดือนก่อน

      10 milliseconds

    • @floopyy_
      @floopyy_ หลายเดือนก่อน

      @@xenird If you take the time it takes for the clear transition to complete (when you click an empty square), let's say it's 5 frames or about 83ms, then multiply that by however many times you'd clear, i'll lowball it and say its about 10, you get 833ms. 10 seconds might be too high but I don't think a bot can complete google's minesweeper in under a second. A minesweeper with no transitions however can be completed way faster, but it depends how open the field is aka how many clear squares you're clicking

  • @hagash1843
    @hagash1843 2 ปีที่แล้ว +16

    By a moment i thought the title was " boy destroys google's minesweeper", and i thought "danm, this boy is so good that his mouse is teleporting"

    • @danielyuan9862
      @danielyuan9862 2 ปีที่แล้ว +1

      He should play osu! some time.

  • @cj_th3_g4m3r4
    @cj_th3_g4m3r4 2 ปีที่แล้ว +109

    I’m sure we can agree that this bot is pretty good at making music

  • @JillofTrades
    @JillofTrades 2 ปีที่แล้ว +139

    Google: *rigs the system*
    Bot: *rigs the game*
    Google: Wait, that is illegal...

    • @roundelmo
      @roundelmo 2 ปีที่แล้ว +6

      It’s not rigged though

    • @CreeperMan-dr6ql
      @CreeperMan-dr6ql ปีที่แล้ว +1

      What makes you think it's rigged?

    • @victoriouswinner7745
      @victoriouswinner7745 ปีที่แล้ว +2

      @@CreeperMan-dr6ql replies to seven month old comment, misses the joke
      A classic.

  • @Thomas_Everman
    @Thomas_Everman 2 ปีที่แล้ว +17

    It's freaking 4 in the morning and I'm watching a bot play minesweeper.

  • @ClassicDannyboy
    @ClassicDannyboy 2 ปีที่แล้ว +6

    I used to play this in school for hours, great to see a bot do it in a few minutes :)

  • @sniper_monke561
    @sniper_monke561 2 ปีที่แล้ว +16

    2x speed to give him the best gaming chair

  • @atlix2
    @atlix2 2 ปีที่แล้ว +6

    i still don’t even know how minesweeper works and this is just salt in the wound. dope bot

    • @zacharymorris3775
      @zacharymorris3775 2 ปีที่แล้ว +3

      each number tells you how many mines are adjacent to that number

  • @08.aothaiha7
    @08.aothaiha7 2 ปีที่แล้ว +279

    What would the bot do with 2 tiles both have 50% chance to have a mine? (I get that a lot when I play this game)

    • @thewaterleaf7929
      @thewaterleaf7929 2 ปีที่แล้ว +115

      simply be smarter than a human and not take the gamble, duh, it should leave it be until it has more information from other tiles being revealed around the initially troubling ones
      (this wasn't meant to be insulting btw, I was simply trying to play an arrogant personality as a joke)

    • @MatiasRupp
      @MatiasRupp 2 ปีที่แล้ว +132

      @@thewaterleaf7929 sometimes you can't do anything logical but random

    • @popplejam2128
      @popplejam2128 2 ปีที่แล้ว +55

      @@MatiasRupp nope, not how minesweeper works. unless you’re on the last click, you just do another spot and wait until it brings you back toward that area with more information. you don’t have to take a gamble before the last click, and gambles on the last click are very rare.

    • @ITS_MysteR
      @ITS_MysteR 2 ปีที่แล้ว +6

      The bot starts having a seizure

    • @thk2005
      @thk2005 2 ปีที่แล้ว +8

      To my experience, just pick on depend its spawn pattern
      Like a number got L-shape empty tiles
      | | x | |
      | | 3 | 2 I
      |1 | 1 |||||
      then pick the x tile cus most of time (not always) will be a safe spot
      That spawn pattern usually occured so its high chance of safe
      Only do this when u actually no choice more than random pick, and hope its a good tile

  • @Lord_Vertice
    @Lord_Vertice 2 ปีที่แล้ว +87

    I feel like this could be upgraded with concurrency. Right now the bot will first click a lot and then place flags, then repeat. It should be possible to do more things at once and with less waiting time in between

    • @adanakebap101
      @adanakebap101 2 ปีที่แล้ว +14

      He explained that bot works by taking screenshots. It has to wait so particle animations won't ruin the screenshot

    • @azamatrustamov8687
      @azamatrustamov8687 2 ปีที่แล้ว +1

      @@adanakebap101 where did he explained, can you forward it please

    • @adanakebap101
      @adanakebap101 2 ปีที่แล้ว +1

      @@azamatrustamov8687 look at spidernh's comment. Creator replied and explained it.

    • @azamatrustamov8687
      @azamatrustamov8687 2 ปีที่แล้ว

      @@adanakebap101 Thank you a lot

  • @Ugly_sextoy
    @Ugly_sextoy 2 ปีที่แล้ว +54

    I’ve always been confused trying to understand the rules but now it makes me even more confused

    • @megalunalexi5601
      @megalunalexi5601 2 ปีที่แล้ว

      I think it's like, each tile's number is how many mines are in an immediate square around it. So if it's blank then all the tiles touching that one (including diagonal) are safe, and if it's 8 then every tile touching that one is a bomb. You then must use probability to guess which tile you should investigate next. Investigate a bomb and it explodes and you die

    • @danielyuan9862
      @danielyuan9862 2 ปีที่แล้ว +19

      The number is the number of mines around it.

    • @GiantDwarf-vr5zc
      @GiantDwarf-vr5zc 2 ปีที่แล้ว +13

      You try finding all of the mines by clicking tiles.
      The first click of the game is guaranteed to not be a mine, after the first click tiles are either blank or have a mine and if you click on a mine you lose.
      Blank tiles will have a number on them indication how many mine they are touching. A tile with 1 on it means it is touching 1 mine. 2 = 2 mines etc.
      You can place flags on tiles you think/know are mines until the entire board is cleared besides the tiles you have marked as mines.

  • @nightrose6116
    @nightrose6116 2 ปีที่แล้ว +54

    This unironically made me understand how minesweeper works better than any explanation given to me

  • @anselmorrison3774
    @anselmorrison3774 2 ปีที่แล้ว +25

    The song when you beat google minesweeper slaps though

  • @Wingding7562
    @Wingding7562 ปีที่แล้ว +1

    Ah yes now that we have located all the mines we shall turn this land into a marsh

  • @lifepreviouslybalanced5743
    @lifepreviouslybalanced5743 2 ปีที่แล้ว +34

    Meanwhile, me: *dying on the second click on easy mode*

    • @_thresh_
      @_thresh_ ปีที่แล้ว +2

      Just put flags in all the corners of the first big part you dig out

  • @xNightskyy
    @xNightskyy 2 ปีที่แล้ว +3

    bot: i am god
    The world record holder: *n o*

  • @cmyk8964
    @cmyk8964 2 ปีที่แล้ว +15

    It’s interesting, as a human Minesweeper player, to see a bot alternate between opening ALL safe spaces and flagging ALL dangerous spaces. Super multitasking.

  • @JohnDoe-mx6xh
    @JohnDoe-mx6xh ปีที่แล้ว +1

    The way it spams flags is so satisfying

  • @Abon963
    @Abon963 ปีที่แล้ว +1

    I got this video in my recommendation and i remember playing it when i was a child

  • @Drakonus_
    @Drakonus_ ปีที่แล้ว +18

    Would've been much faster if the bot right-clicked on the numbers instead of manually left-clicking the boxes.

    • @ouwkyuha
      @ouwkyuha ปีที่แล้ว +1

      We can't do that on Google's Minesweeper

    • @Drakonus_
      @Drakonus_ ปีที่แล้ว +1

      @@ouwkyuha Yeah, my mistake. With Google's version, it should be both left-click and right-click at the same time.

  • @jwzc
    @jwzc 2 ปีที่แล้ว +3

    "5 game endings no one has ever seen"

  • @coolguy163
    @coolguy163 ปีที่แล้ว +1

    as a fan of minesweeper i can say this is definitely a video

  • @ocandy675
    @ocandy675 ปีที่แล้ว +2

    Imagine the bot just finishing it then checking his search history

  • @imboredrly5478
    @imboredrly5478 2 ปีที่แล้ว +2

    atleast ai wont replace humans playing minesweeper

  • @ibm30rpg
    @ibm30rpg ปีที่แล้ว +10

    As a data structures programmer, I was surprised that the bot didn't go even faster. Maybe the code used the high time complexity traversal methods.

    • @fazaazafg
      @fazaazafg ปีที่แล้ว +4

      The bot didn't go faster because it uses screenshots to analyze the board and the particles flying around makes it hard to do so. So it has to wait a bit for the particles to disappear first.

    • @Shaded_crown1
      @Shaded_crown1 ปีที่แล้ว

      Probably added a wait() idk

    • @basicallyjusttan7727
      @basicallyjusttan7727 ปีที่แล้ว

      @@Shaded_crown1 Are you talking about luau because I'm pretty sure thats the only language with the wait()

    • @Shaded_crown1
      @Shaded_crown1 ปีที่แล้ว

      @@basicallyjusttan7727 Lua yes

    • @basicallyjusttan7727
      @basicallyjusttan7727 ปีที่แล้ว

      @@Shaded_crown1 Luau*

  • @wjgthatsit2357
    @wjgthatsit2357 2 ปีที่แล้ว

    thanks youtube for putting this on my reccomended

  • @dez9088
    @dez9088 2 ปีที่แล้ว +1

    The fact that even a bot had to think

  • @Diamondking_07
    @Diamondking_07 2 ปีที่แล้ว +3

    Plot twist: there is no bot but no one would believe that he is this good

  • @DaApplely
    @DaApplely 2 ปีที่แล้ว +3

    minesweep ASMR

  • @jaydon8822
    @jaydon8822 2 ปีที่แล้ว +2

    This was truely mindsweeping.

  • @kyliedkat
    @kyliedkat ปีที่แล้ว

    This is low key satisfying to watch :0

  • @hoodiesticks
    @hoodiesticks ปีที่แล้ว +5

    I didn't think this was all that impressive until I realized the bot didn't have any special API access. It needed to take screenshots of the game and process the images constantly to understand what was going on, and calculate where on the screen to move the mouse to before clicking. That's a really cumbersome process to have to code.

  • @mysticshadow7110
    @mysticshadow7110 2 ปีที่แล้ว +3

    I only managed to beat hard mode twice only because the other times there were some spots that had to deal with pure luck guessing.

  • @Octocat
    @Octocat 2 ปีที่แล้ว

    This is me avoiding legos in the dark for a glass of water.

  • @Shreyas_Jaiswal
    @Shreyas_Jaiswal 2 ปีที่แล้ว

    The sound feels like some group do people are parading and then shooting from toy guns. 😂😂

  • @frankie11998
    @frankie11998 2 ปีที่แล้ว +4

    wow, he's really good at the game! 😃

  • @bonegamerthecyndaquill7181
    @bonegamerthecyndaquill7181 2 ปีที่แล้ว +101

    is it odd to say I can keep up with the bot's line of thinking to an extent?

    • @jestfullgremblim8002
      @jestfullgremblim8002 2 ปีที่แล้ว +15

      Nah, this bot isn't that good at the game lol

    • @Mik-kv8xx
      @Mik-kv8xx 2 ปีที่แล้ว +21

      @@jestfullgremblim8002 don't be so harsh on it, if not for the animations it could be a good bit faster

    • @jestfullgremblim8002
      @jestfullgremblim8002 2 ปีที่แล้ว +4

      @@Mik-kv8xx speed is not what i'm refering to. I mean patter recognition and that kind of stuff. A good Minefield player would have flaged more mines in some parts of the video and wouod also have cleared more spaces in some other parts. The bot is missing some stuff

    • @Mik-kv8xx
      @Mik-kv8xx 2 ปีที่แล้ว +3

      @@jestfullgremblim8002 well,it's not an ai, just an algorithm

    • @jestfullgremblim8002
      @jestfullgremblim8002 2 ปีที่แล้ว +2

      @@Mik-kv8xx my arguments still applies and stands. The algorithm is missing some stuff. I'm not saying that it isn't good, that it is slow or that i can make a better one. I'm just saying that it can easily improve if some new patterns to recognize are added to it!

  • @CeeMonay
    @CeeMonay ปีที่แล้ว

    Why does this video low key make me anxious

  • @doggo_woo
    @doggo_woo 2 ปีที่แล้ว +15

    Just wanted to ask, what libraries did you use for image detection and the mouse movements? This seems like a good project for beginning complex python learning.

    • @cossibility7019
      @cossibility7019  2 ปีที่แล้ว +7

      Pyautogui

    • @cossibility7019
      @cossibility7019  2 ปีที่แล้ว +4

      Good luck on your projects!

    • @doggo_woo
      @doggo_woo 2 ปีที่แล้ว

      @@cossibility7019 Only pyautogui? I've tried that before, time to try it again!

    • @cossibility7019
      @cossibility7019  2 ปีที่แล้ว +3

      @@doggo_woo yup only pyautogui for mouse movement and image detection!

    • @agent6124
      @agent6124 2 ปีที่แล้ว +5

      @@cossibility7019 i will try to do a bot on dino game with pyautogui !
      thx for the tip

  • @RiteOfSolaris
    @RiteOfSolaris ปีที่แล้ว +3

    While I have gotten a 63 second time in medium, making a bot is hard and everyone should appreciate the work and effort put in.

  • @cathpalug1221
    @cathpalug1221 ปีที่แล้ว

    This give me comfort since I thought 88 seconds are too much

  • @Zephrys1
    @Zephrys1 2 ปีที่แล้ว

    i don’t even know how to play minesweeper but that sure is music to my ears

  • @valakarhtelgrem5210
    @valakarhtelgrem5210 2 ปีที่แล้ว +4

    How did the bot get those right at 0:59 ?
    It basically guessed

  • @CCCMTTT
    @CCCMTTT 2 ปีที่แล้ว +7

    Now where’s the run where the game makes you guess where 2 bombs are in a 2x2 and the bot can’t calculate that

  • @Man_ManUK
    @Man_ManUK ปีที่แล้ว

    first time ever, actually seeing the end of mine sweeper in my life

  • @Slineryo
    @Slineryo ปีที่แล้ว +1

    bot: **spams**
    bot: "gotta go afk and get some food"
    bot: "im back"
    *[repeats until it beats the game]*

  • @PedroLucas-ok9sb
    @PedroLucas-ok9sb 2 ปีที่แล้ว +3

    Nice

  • @funnygamenotfound9134
    @funnygamenotfound9134 2 ปีที่แล้ว +1

    Better than most of the asmr videos.

  • @sarojandongol1482
    @sarojandongol1482 ปีที่แล้ว +2

    Seems like it works on screenshots and thus dependant on the app's speed, thus oddly you can just kinda keep up with what moves it will do the next cycle.

  • @bookle5829
    @bookle5829 2 ปีที่แล้ว +11

    You need to cut down that waiting time. I don't think the bot was thinking. I think the bot was like "Did I win? ...No"
    Edit: By you, I mean the programmer who made it.

    • @ITS_MysteR
      @ITS_MysteR 2 ปีที่แล้ว

      I think that's only because of the programming software he's using, he can't really fix that currently.

    • @bookle5829
      @bookle5829 2 ปีที่แล้ว

      @@ITS_MysteR Oh yeah whoops

    • @cossibility7019
      @cossibility7019  2 ปีที่แล้ว +16

      @@bookle5829
      Yeah umm so if you guys are curious, the reason why my bot is slow is kinda dumb and funny. So notice that in Google minesweeper, when you click on a tile, there is particle animations. These particle animations actually ruin the screenshot that the bot takes to detect the tiles lmao. So i just made the bot wait for the particle animations to end before taking the next screenshot.
      So basically, the bot is like “Are the particles gone so that I can take a clean screenshot… No”
      Using advance image detection libraries, I could probably cut the waiting time of the bot by making the bot guess tiles even if there are particles covering them. But yeah, I don’t feel like it cuz I’m working on a another project right now. 😅

    • @bookle5829
      @bookle5829 2 ปีที่แล้ว

      @@cossibility7019 Oh alright lol
      l hope someone can improve it

    • @nhn05
      @nhn05 2 ปีที่แล้ว

      @@cossibility7019 Instead of scanning for green tiles. Why don't you scan for pixel of the color of number 1, 2, 3, 4 in each tiles. You won't have to deal with the animation.
      Edit: fixing minor typos

  • @PookyCodes
    @PookyCodes 3 ปีที่แล้ว +3

    Let’s go! 0th!

  • @shadex2295
    @shadex2295 2 ปีที่แล้ว

    ngl they got some sick beats

  • @Waterbottlez_
    @Waterbottlez_ ปีที่แล้ว

    It has now become my goal every time I play google minesweeper to be faster than 117 seconds

  • @asheep7797
    @asheep7797 2 ปีที่แล้ว +5

    2nd! since the other guy said 3rd instead of 2nd

  • @Alina060979
    @Alina060979 2 ปีที่แล้ว +6

    Hello! I am from Uzbekistan. I'm 10 years old. I passed the game "Sapper" 3 years ago. It's not difficult, you just need to learn how to play it!

    • @midtisel4222
      @midtisel4222 2 ปีที่แล้ว +2

      As a Polish guy, you are right, i can win the game faster than this bot can due to the fact that i memorised all the patterns and know about right clicking

    • @Alina060979
      @Alina060979 2 ปีที่แล้ว

      @@midtisel4222 Если тебе не удобно писать английским пиши русским :) Я не Англичанин.

    • @araserwhenthe
      @araserwhenthe 2 ปีที่แล้ว +7

      That's cool, and not to be rude but, what does this actually have to do with this video?

    • @ajdndbdjbdj
      @ajdndbdjbdj 2 ปีที่แล้ว +1

      @@araserwhenthe and why they mention where are they from XD

    • @JoThNoMi
      @JoThNoMi 2 ปีที่แล้ว

      @@midtisel4222 Non-polish guys: is it possible to learn this power.

  • @mysteriousgamer2062
    @mysteriousgamer2062 ปีที่แล้ว

    What I don't get is when the water flows in and flowers bloom on the mines the flowers would set them off the have a hair trigger mechanism and and sort of vibration or any loud sound would set them off

  • @Zandezz.
    @Zandezz. ปีที่แล้ว

    The fact that the wr is much faster makes me happy

  • @canigetuuh
    @canigetuuh 2 ปีที่แล้ว +9

    Listen to 1:52 at 0,25x

    • @athensroja
      @athensroja 4 หลายเดือนก่อน +1

      new music

  • @nobright7968
    @nobright7968 ปีที่แล้ว

    This is like the equivalent of playing chess against your right hand with your left

  • @The_Nerds.
    @The_Nerds. 2 ปีที่แล้ว

    The fact they are not only good in chess but also on that

  • @Conedbiscuit
    @Conedbiscuit ปีที่แล้ว +1

    The music is fire🔥

  • @shadowplaxianthgaming3694
    @shadowplaxianthgaming3694 ปีที่แล้ว

    Terminator playing google minesweeper be like:

  • @SqueaksDeCork
    @SqueaksDeCork ปีที่แล้ว +1

    "The game isn't hard you're just bad" Minesweeper bot 2023

  • @Turgineer
    @Turgineer 5 หลายเดือนก่อน +1

    I couldn't even finish a quarter of this game. Wow.

  • @da_w1nn3r96
    @da_w1nn3r96 2 ปีที่แล้ว

    Middle mouse click opens up all adjacent squares as long as there are the correct number of flags adjacent to it.

  • @coryxkenshinsafro8028
    @coryxkenshinsafro8028 2 ปีที่แล้ว

    snek oh it wasn’t the snek eating appel
    ok cool.

  • @herobrine8763og
    @herobrine8763og ปีที่แล้ว

    By left and right clicking a number while it has sufficient flags around it, it automatically clears all of the squares that can be cleared and are also neighbours of that number

  • @MakerofMesses
    @MakerofMesses 2 ปีที่แล้ว

    I love this music! It bangs! It helped me and my wife get back together!

  • @thelunchking4069
    @thelunchking4069 2 ปีที่แล้ว

    Man he really is sweeping the mines

  • @Chickensea10
    @Chickensea10 2 ปีที่แล้ว

    Good luck with your channel

  • @sebisonic
    @sebisonic 2 ปีที่แล้ว

    This looks cool to make

  • @matekristofkiss6622
    @matekristofkiss6622 ปีที่แล้ว

    It sounds like a little bird trying to learn to fly

  • @henrystickmin8812
    @henrystickmin8812 ปีที่แล้ว +2

    Does it take a bit because of the particles

  • @limegloom4481
    @limegloom4481 ปีที่แล้ว

    Bros got some sick beats

  • @pixie9103
    @pixie9103 ปีที่แล้ว +2

    I don’t get how this game works but this really fun to watch

  • @divine_arch2513
    @divine_arch2513 2 ปีที่แล้ว +1

    I didn’t know google had a mine sweeper, I thought there was only snake

  • @saquial
    @saquial 4 หลายเดือนก่อน

    It’s a bit evident how it having to “see” the board affects its performance. It has to wait for the board to clear to update its knowledge database, scan the image, recreate it in a model which the function is able to understand (probably a matrix), analyze the state of the board and then manually use the mouse to click on each conclusion made before.
    The program not having access to a mathematic model of the board, and instead having to build it manually each time, is what ends up slowing it the most.

  • @Em-.-
    @Em-.- 2 ปีที่แล้ว +1

    I think this taught me how to play minesweeper. It’s a miracle!!

    • @iguessso1010
      @iguessso1010 2 ปีที่แล้ว +1

      terrifying pfp

    • @Em-.-
      @Em-.- 2 ปีที่แล้ว

      @@iguessso1010 haha thanks

  • @overfoxed
    @overfoxed 2 ปีที่แล้ว

    I love seeing bots bully old games

  • @thetruth3068
    @thetruth3068 ปีที่แล้ว +1

    This guy is the reason captcha exist

  • @dpetersz
    @dpetersz ปีที่แล้ว +1

    "Destroys" is generous

  • @aweebtaku429
    @aweebtaku429 2 ปีที่แล้ว +1

    The Coding Bullet : Don't mind me imma steal your code

  • @AlteFore
    @AlteFore 2 ปีที่แล้ว +2

    Jesus Christ now minesweeper has a bot crisis

  • @ericawu8779
    @ericawu8779 2 ปีที่แล้ว

    I put this at 2 times speed and it literally just sounds like birds being chaotic

  • @lombeelo8780
    @lombeelo8780 2 ปีที่แล้ว

    You could use OpenCV's pattern matching to get the board quicker

  • @pokeiswho
    @pokeiswho ปีที่แล้ว

    nice gaming chair dude

  • @JustAPersonWhoComments
    @JustAPersonWhoComments 2 ปีที่แล้ว

    There’s something called “Tool Assisted Speedrun”
    and WWII

  • @5715klin
    @5715klin ปีที่แล้ว

    I’d imagine the bot is going back and referencing a screen capture after every step? In which case building its own 2d array of values would drastically reduce down time and bypass the need to place flags ingame

  • @Stevelocks100
    @Stevelocks100 ปีที่แล้ว

    Alternatively: bots sweeps minesweeper

  • @dekuchan710
    @dekuchan710 ปีที่แล้ว

    Can someone explain how to play minesweeper? I have never really understood how

  • @haha69funi28
    @haha69funi28 2 ปีที่แล้ว

    this is euphoric