Using Image Recognition to play Mario Party Minigames

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 พ.ค. 2024
  • To try everything Brilliant has to offer-free-for a full 30 days, visit brilliant.org/CodeNoodles. The first 200 of you will get 20% off Brilliant’s annual premium subscription.
    Here we go again, it's image recognition time! In this video I write some Python scripts to automate a couple of minigames from Mario Party DS. It was an absolute blast and we managed to achieve some pretty impressive scores. If you like this video, consider subscribing to support the channel!
    This video was sponsored by Brilliant
    LINKS
    ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
    Support the channel: ko-fi.com/codenoodles
    Itch.io: codenoodles.itch.io/
    GitHub: github.com/OfficialCodeNoodles
    MUSIC
    ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
    Shoutout to @TheNobleDemon for making awesome video game music remixes! Check out their channel if you liked the music in this video!
    • Super Mario Sunshine: ...
    • Super Mario RPG: Bewar...
    • Super Mario Land 2: At...
    █▀ █ █ █▄▄ █▀ █▀▀ █▀█ █ █▄▄ █▀▀
    ▄█ █▄█ █▄█ ▄█ █▄▄ █▀▄ █ █▄█ ██▄
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 302

  • @CodeNoodles
    @CodeNoodles  10 หลายเดือนก่อน +50

    To try everything Brilliant has to offer-free-for a full 30 days, visit brilliant.org/CodeNoodles. The first 200 of you will get 20% off Brilliant’s annual premium subscription.

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

      Fun fact, I learned on Brilliant that the polygon method you describe in the video to approximate a circle, is also how we calculate (or rather approximate) Pi!

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

      Given that the definition of Pi is the area of a unit circle that is

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

      how can I learn to program like you do? I'd make my hobby so much easier. I'm trying to find an rng seed with a certain pattern, but if I enter the minigame and reset for a new seed I take 15 seconds (with the emulator sped up), so math tells me I need to check 10k seeds if I want to find 2,5 suitable seeds (=5k for 1ish seed), which would take 4 hours and several PCs running 3 emulators at the same time. And I'd have to check 5 PCs to see if I found the seed during 4 hours, that's why it'd be useful if I was to learn how to write some code and recognize the rng pattern I'm looking for

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

      how tf does math have to do with mario

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

      what are you using to code with i'm trying to get into learning a bit of coding myself

  • @SpaciousBoundary
    @SpaciousBoundary 10 หลายเดือนก่อน +765

    It’s really telling just how impossible it is to win against expert difficulty when even the automated code only just wins

    • @KatherynneF
      @KatherynneF 10 หลายเดือนก่อน +130

      To be fair, even as a kid I was faster than the code for the dominos game and humans can cut corners and won’t stop to turn on the drawing one. We can see multiple inputs ahead and play around that

    • @mistorbear
      @mistorbear 9 หลายเดือนก่อน +18

      well near the end the ai accidentally grabbed a bob-omb so that could be the reason

    • @jblen
      @jblen 9 หลายเดือนก่อน +38

      I mean it's automated code Vs automated code. Maybe they cheated a little because the game AI can see the code, but it's still not limited to human reaction times

    • @AdaTheWatcher
      @AdaTheWatcher 4 หลายเดือนก่อน +7

      The AI is probably rubber banding.

    • @SleepyBrady
      @SleepyBrady 4 หลายเดือนก่อน +17

      As a kid I always played with expert AI and usually was able to win. The only few mini games that were actually impossible were cherry go round and get the lead out. Actually impossible

  • @KinuTheDragon
    @KinuTheDragon 10 หลายเดือนก่อน +691

    For the first one, might I suggest checking if the goomba is at least a minimum distance from any bombs?

    • @CodeNoodles
      @CodeNoodles  10 หลายเดือนก่อน +292

      I actually have that implemented already. It definitely helped!

    • @renakunisaki
      @renakunisaki 10 หลายเดือนก่อน +38

      And prioritize gold.

    • @Laenthor
      @Laenthor 10 หลายเดือนก่อน +5

      ​@@CodeNoodlesYou could also straight up draw squares instead of circles so it would be nearly instant instead of having to call the function for each circle point?

    • @sarowie
      @sarowie 10 หลายเดือนก่อน +55

      @@Laenthor did you watch the video? he has to use a polygon with a certain number of edges, as the game does otherwise ignore the shape.
      You can try to optimize the number of corners, but the advantage will be pretty small.

    • @Laenthor
      @Laenthor 10 หลายเดือนก่อน +6

      @@sarowie Oh I must've missed that part, it just seems to look for a closed shape.

  • @ArisTheMage
    @ArisTheMage 10 หลายเดือนก่อน +130

    As a programmer myself, it’s greatly appreciated you show the code. I hate when the TH-camr at most shows a small snipit. Not to steal your code, but to see your logic :)

  • @MeneerEnMevrouwTrein
    @MeneerEnMevrouwTrein 10 หลายเดือนก่อน +179

    05:30 I've never seen some collect so many goombas before! Too bad it picked up a bob-omb by accident because I would've loved to see how an even bigger goomba collection would've looked like.

    • @sarowie
      @sarowie 10 หลายเดือนก่อน +12

      well, that sounds like a second channel video: AI plays minigames for an hour! I am not ironic, I mean that seriously.

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

      Eyo trein kanaal nice

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

      I've never actually seen the Goomba section condense like that to fit more, it's a little weird.

  • @tornadowizard
    @tornadowizard 10 หลายเดือนก่อน +325

    For the block one, you could have prewritten each shape, "square" "rect up" "rect right" etc so instead of writing out the coords for each map over and over you would just write which shapes get drawn in what order.

    • @CodeNoodles
      @CodeNoodles  10 หลายเดือนก่อน +111

      That's a good point!

    • @tornadowizard
      @tornadowizard 10 หลายเดือนก่อน +44

      Thank you! I haven't used my coding skills in like 3 years unfortunately, glad to know I still have it!

  • @aaronconner1440
    @aaronconner1440 10 หลายเดือนก่อน +131

    This was AMAZING! Please automate more Mario Party minigames!

    • @whee2390
      @whee2390 10 หลายเดือนก่อน +5

      Seconded, this was really interesting to watch

    • @carlyskolnik296
      @carlyskolnik296 10 หลายเดือนก่อน +1

      Same as well I agree

  • @blackcat_064
    @blackcat_064 10 หลายเดือนก่อน +49

    Some minigames I'd love to see you automate are Rail Riders, Cherry-go-round and Study Fall. These are some of my favourite minigames in Mario Party DS

    • @woobgamer5210
      @woobgamer5210 10 หลายเดือนก่อน +3

      Rail Riders and Cherry go Round should be is, cause Rail Riders is just, slide up from the bottom as quick as possible, and Cherry go round is, just continously draw circles as fast as you can.
      tbh i'd love to see Sprinkler Scailers done using melonds or no$gba by being a python script and python script vs 2 expert cpus

    • @GoldenAce17
      @GoldenAce17 10 หลายเดือนก่อน +11

      Getting a 00'00'00 on study fall is possible but SO hard! watching code do it every try would be awesome

    • @thewiseoldfox
      @thewiseoldfox 10 หลายเดือนก่อน +4

      ​@@GoldenAce17I'm pretty sure everyone who grew up with Mario Party DS got 00'00 on Study Fall on accident, making the best unbeatable high score

    • @tacothedank
      @tacothedank 4 หลายเดือนก่อน +2

      ​@@thewiseoldfox I remember being able to do it intentionally without much difficulty. I'd be able to get it like 1 out of every, maybe, 5-8 tries?

  • @chipsleftwing
    @chipsleftwing 10 หลายเดือนก่อน +43

    WOOOOOOO MORE MARIO PARTY THATS WHAT I'VE BEEN WAITING FOR THAT'S WHAT IT'S ALL ABOUT

    • @0hellow797
      @0hellow797 10 หลายเดือนก่อน

      Yeah I’m with Chip on this one

  • @romancatholicgameing
    @romancatholicgameing 10 หลายเดือนก่อน +25

    Hard to believe that your last "image recognition" video was nearly a year ago already! Time flies fast, doesn't it?

  • @beeisland
    @beeisland 10 หลายเดือนก่อน +32

    I'm glad my favorite mario party is getting some attention. Very fun seeing you destroy those infuriatingly perfect expert cpus. Good job and would LOVE to see more.

    • @CodeNoodles
      @CodeNoodles  10 หลายเดือนก่อน +8

      I know! Nintendo made the expert cpus WAY too difficult!

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

      Same 😊

    • @raptore.x
      @raptore.x 10 หลายเดือนก่อน +1

      @@CodeNoodles glad im not the only one who thought those expert cpus were just wayy too good, feels like theyre harder than other mario games sometimes lmao

  • @disdonut
    @disdonut 10 หลายเดือนก่อน +20

    Code Noodles’s taste in music is amazing. I’ve been listening to The Noble Demon for a while because their arrangements are so good. They deserve lots of love for their work

  • @homerlol9058
    @homerlol9058 10 หลายเดือนก่อน +23

    Loving these minigames automation

  • @NekoEchoflower
    @NekoEchoflower 10 หลายเดือนก่อน +3

    Man mario party ds was such a big part of my childhood. Only played with bots sadly, as none of my friends owned a ds, but it was still plenty fun
    Was glad to see a video about it, would love to see more automated games if possible :0

  • @bongwater1856
    @bongwater1856 10 หลายเดือนก่อน +15

    oh man, I loved playing this game as a kid. Loved watching it get destroyed, too! great work

    • @MoundN
      @MoundN 10 หลายเดือนก่อน +2

      That vid was probably as far away from "destruction" as it could be. Its worse than human skill which in your faulty logic would mean literally every person winning against expert bots "destroys" the game like they are playing it in a way that was unintended......
      Watch tas of mario party minigames, there you learn destruction.

    • @bongwater1856
      @bongwater1856 10 หลายเดือนก่อน +2

      🤓

    • @MoundN
      @MoundN 10 หลายเดือนก่อน +2

      @@bongwater1856 I know your comment kinda made you look like that but that's okay!

  • @Freddie_06
    @Freddie_06 10 หลายเดือนก่อน +5

    9:45 "The best solution to a problem is usually the easiest one."
    - GLaDOS

  • @Alex-gv9os
    @Alex-gv9os 10 หลายเดือนก่อน +14

    Definitely want to see other automatization for Mario party minigame 🤩

  • @KLGB76
    @KLGB76 10 หลายเดือนก่อน +6

    Mario Party DS is my favorite Mario Party ever.

  • @unfortunatedisgrace246
    @unfortunatedisgrace246 10 หลายเดือนก่อน +3

    you have the perfect way of explaining so that most people understand without it being too complicated or too long winded! it's actually really entertaining!

  • @doctorgrubious7725
    @doctorgrubious7725 10 หลายเดือนก่อน +3

    Personally I would’ve included a counter-draw around bombs that basically detects if a bomb is in the radius of a goomba, and if the circle it would draw around the bomb overlaps the goomba circle, to subtract the bomb’s circle from the goomba’s,
    For the second game I feel it’s like a cop out due to the fact it’s not really playing, it’s just doing it from a list that you made, you did a good chunk of the work,
    I would’ve gone with the black and white image and than have it instead just find the vertices of every shape and than add it to the shape array, so it creates the list on its own before drawing

  • @ermamu
    @ermamu 10 หลายเดือนก่อน +7

    I’d love to see more! Do you think ‘Hammer Chime’ would work?

    • @CodeNoodles
      @CodeNoodles  10 หลายเดือนก่อน +3

      Probably

  • @theAstarrr
    @theAstarrr 10 หลายเดือนก่อน +4

    YO more nostalgia from probably my favorite videos of yours

  • @love_a_hater
    @love_a_hater 9 หลายเดือนก่อน +2

    This game was my favorite, and seeing that beautifully written code is so satisfying.

  • @piboiindahouse5169
    @piboiindahouse5169 10 หลายเดือนก่อน +3

    My guy's got a sponsor! Good job, you deserve it.

  • @x-x
    @x-x 10 หลายเดือนก่อน +11

    I enjoy your videos so much despite never playing these mini games and having no coding skills! You have a very calming and charming voice, so it's very interesting to hear and you don't try to downplay your skills at any point like many other TH-camrs nowadays. Keep going!

    • @CodeNoodles
      @CodeNoodles  10 หลายเดือนก่อน +2

      Thanks, I'm glad you them!

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

      @@CodeNoodles I really them too! Especially the NSM videos!

  • @BromeoWuggles
    @BromeoWuggles 10 หลายเดือนก่อน +4

    Love the Image Recognition videos

  • @TheLobsterCopter5000
    @TheLobsterCopter5000 10 หลายเดือนก่อน +5

    Try the stargazing one next! Give the automator a challenge by having to compete with 3 expert CPUs at that game...

  • @GhostlyOrSomething
    @GhostlyOrSomething 10 หลายเดือนก่อน +2

    I love this! It's always amazing watching how all this works. I personally find it really entertaining and would like to see more.

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

    I need more of this! This type of stuff is so cool to me

  • @Imaproshaman7
    @Imaproshaman7 10 หลายเดือนก่อน +4

    This was really cool! I'd love to see more of these. The original Using Image Recognition To Find Mario video is how I found out about this channel in the first place. Oh yeah, I'd be interested to see if it would be possible to automate the minigames that require the mic.

  • @Noah-tn5bc
    @Noah-tn5bc 10 หลายเดือนก่อน +3

    This was such a good idea for a game to automate! i alwyas find it fascinating when we can make AI that is better than the in-game one. Would love to see more minigames automated. This was one of my favorite games as a kid ❤️

  • @TalkySteak
    @TalkySteak 10 หลายเดือนก่อน +2

    I was stoked to see another minigame automation video hit my feed. Love this series! Thanks!

    • @CodeNoodles
      @CodeNoodles  10 หลายเดือนก่อน +1

      Thanks, I'm glad you like it!

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

      @@CodeNoodles Do you push your code from these videos to a Github repo by chance?

  • @YeetoTheYeetafic
    @YeetoTheYeetafic 10 หลายเดือนก่อน +1

    CodeNoodles Friend: 'Yo I finally got 500 goombas without a bob-omb in goomba strangler from Mario Party DS!'
    CodeNoodles: 'I got more than humanly possible, I've already beat you'

  • @vaporcranberries
    @vaporcranberries 10 หลายเดือนก่อน +2

    I want to see more of this. This was so entertaining

  • @strawberrylemonadelioness
    @strawberrylemonadelioness 3 หลายเดือนก่อน +1

    I had this game as a kid and I still love it! It's still honestly my favorite Mario Party game.

  • @canadianlucario2643
    @canadianlucario2643 10 หลายเดือนก่อน +5

    Would you try any other Mario party games with this? I’d love to see more of these videos, they help me a lot with learning what I can do with programming

  • @phantomgaming7544
    @phantomgaming7544 10 หลายเดือนก่อน +2

    I played mario party ds a bit too much to know how long it would take just to unlock expert mode and then knowing how difficult it is to go against expert difficulty. Haven't played it in a while but I still have the game and haven't forgotten that I've spent way to much time on the game to have quite the collection and also every minigame unlocked naturally, plus actually being able to beat them quickly was another thing I've done, just never against expert.
    Appreciate seeing one of the most difficult ones get done faster than I could actively do myself

  • @nitro5247
    @nitro5247 10 หลายเดือนก่อน +1

    It’s really cool to see how people my own age are using these tools on our childhood games. I also missed out on MPDS, but I did play NSMB when I was younger. These videos make me want to take on a project of my own, haha.

  • @theAstarrr
    @theAstarrr 10 หลายเดือนก่อน +2

    A suggestion to improve goomba wrangling -
    Check which way the goomba is going (and which way all bombs are going), based on the average time it takes to circle one, is it likely going to be near a bomb when circled?
    (maybe that would be easier if you had a program without delays)
    And I hope you automate all the skill based games in Marioparty DS, it's great fun watching your thinking and programs.

  • @noahvasiliauskas233
    @noahvasiliauskas233 10 หลายเดือนก่อน +3

    More mini games pls I love listening to these 😊

  • @htspencer9084
    @htspencer9084 10 หลายเดือนก่อน +4

    Awesome vid!
    Unsolicited suggestion for the first one: Maybe comparing the location of the chosen goomba over two frames to determine it's movement vector and use that plus knowing how long your circle takes to draw (assuming it's a constant time), means you can draw ahead of the goomba and get it perfectly centered.
    You could even then track the movement of bombs within a certain range of that goomba and know ahead of time if the circle would pick up any bombs so you can avoid that goomba.
    Is any of this multithreaded? Would be curious to see how much of this could be put on worker threads.
    The drawback to my suggestion is when they bounce off the wall, as you'll need to figure out their reflections which sounds like effort but you could probably just ignore it as its only an edge case (pun very much intended).

    • @CodeNoodles
      @CodeNoodles  10 หลายเดือนก่อน +4

      None of this is multithreaded. All of your suggestions are fantastic, but they would be nearly impossible to implement.

  • @__--_--_-----
    @__--_--_----- 10 หลายเดือนก่อน +1

    I love automating, done some work with pyautogui myself to autowin the wordle battle royale game lol. great vid, would love to see more of these

  • @pokeli2728
    @pokeli2728 10 หลายเดือนก่อน +2

    I love these videos! Please make more like this!

  • @johnsimpsen5
    @johnsimpsen5 10 หลายเดือนก่อน +2

    YES!! I love Mario party ds!!! Definitely the best Mario party!!!
    Please do this game again!

  • @tekayo63
    @tekayo63 10 หลายเดือนก่อน +1

    this is so cool! since these were all duel (or at least the duel versions of) minigames, i think in a potential next video it could be cool to see some ffa or 2v2 games like hot shots or sprinkler scalers

  • @ItsIdaho
    @ItsIdaho 3 หลายเดือนก่อน +2

    One of the best DS games ever. Miss our 2 vs 2 sessions😢

  • @velvetbutterfly
    @velvetbutterfly 3 หลายเดือนก่อน +1

    I would love to see you do a video explaining each piece of software you use so that people can get educated on the details to better follow what you're doing

  • @silverstorm323
    @silverstorm323 3 หลายเดือนก่อน +1

    I would love to see more minigames coded. These were fun to watch. Maybe even other MP games in the future?

  • @Zyiah
    @Zyiah 10 หลายเดือนก่อน +1

    i love these sorts of things

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

    These are the best. Its so cool what you can do. I dont understand it but im going to watch it 🤣

  • @realElzie
    @realElzie 10 หลายเดือนก่อน +3

    I’d love to see some more videos on automating Mario party games. I’ve got to design and make my own program for a Python final project for a college class and I might do something like this, not sure yet though…

  • @akamai8097
    @akamai8097 10 หลายเดือนก่อน +3

    I'd like to see more mario party minigames, but I'd love it if you did an episode on a warioware game!

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

    It would honestly be amazing if you do more minigames!

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

    This was great! I would love to see you automate more Mario Party DS mini-games. Part 2 please?

  • @kierrific1357
    @kierrific1357 3 หลายเดือนก่อน +1

    Im glad some people remember this game at least.

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

    these are awesome! id love to see more!

  • @leroyhak5081
    @leroyhak5081 10 หลายเดือนก่อน +5

    Oh man, I remember playing this on the ds. It was always a lot of fun to play against my siblings. And for everyone who thinks the expert ai is near impossible to win from, some games like the 2nd Trace Cadets and the 3rd Domino effect all depend on how fast and accurate you are.

  • @krankenwagen6042
    @krankenwagen6042 10 หลายเดือนก่อน +4

    this is the sequel we didnt deserve but the sequel we got

  • @justarandomwoof2247
    @justarandomwoof2247 10 หลายเดือนก่อน +2

    Would be cool to see more!

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

    I'd definitely like to see more of these. If I could choose minigames to try, I'd say Hedge Honcho (ladybugs and wasps can be predicted by the leaf before them, and Im curious to see if you can make it image recognize that or how well you can make it rub the ladybug), the skydiving minigame, and the boo-spotting 1v3 I forget the names of 😔

  • @rainbowcat498
    @rainbowcat498 6 หลายเดือนก่อน +1

    The sweer nostalgia i got from watching this!!!

  • @CodeNoodles
    @CodeNoodles  10 หลายเดือนก่อน +1

    To try everything Brilliant has to offer-free-for a full 30 days, visit brilliant.org/CodeNoodles. The first 200 of you will get 20% off Brilliant’s annual premium subscription.

  • @pablojp3498
    @pablojp3498 10 หลายเดือนก่อน +2

    Loved the vid

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

    I love videos like this. I’m not very smart with computers and technology but this shit is super cool

  • @bupp291
    @bupp291 10 หลายเดือนก่อน +1

    These are so fun! I'm actually taking a lot of inspiration from these videos for my final project in my Master's degree for Biomedical Engineering. It involves automating a precise specimen sampling mechanism using image recognition, deep learning, and pyautogui. Thanks for the tips! 😃

    • @CodeNoodles
      @CodeNoodles  10 หลายเดือนก่อน +2

      That sounds amazing! Good luck!

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

      @@CodeNoodles Thank you! I'll let you know how it goes 😃

  • @cravonomire9971
    @cravonomire9971 10 หลายเดือนก่อน +3

    It is funny how nostalgic I get for this game.

  • @p6t158
    @p6t158 10 หลายเดือนก่อน +1

    One of my favorite games

  • @fernando98322
    @fernando98322 10 หลายเดือนก่อน +1

    For Trace Cadets, I'm sure you can automate further by tracing the blue lines (really, they're line segments with a set number of directions to take) for adjacent figures but that might take too much processing time that the Expert CPU might beat you at that point

  • @Vextrove
    @Vextrove 10 หลายเดือนก่อน +3

    I would like to see more minigames!

  • @ShadowBulb
    @ShadowBulb 10 หลายเดือนก่อน +4

    Hope ur having a good day!

    • @CodeNoodles
      @CodeNoodles  10 หลายเดือนก่อน +4

      Thank you, I am!

    • @ShadowBulb
      @ShadowBulb 10 หลายเดือนก่อน +1

      @@CodeNoodles I want to learn how do this stuff so I can auto do tasks at school that are digital! I also find it so cool that you just see a task and have the ability to automate it!

  • @daskampffredchen9242
    @daskampffredchen9242 10 หลายเดือนก่อน +2

    I would love to see more

  • @777omen
    @777omen 9 หลายเดือนก่อน +1

    I want to see Image Recognition dominate all of the Mario Party DS bosses.

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

      That'd be so cool if possible

    • @777omen
      @777omen 9 หลายเดือนก่อน +1

      For Hammer Bro it's easy but for the others, I don't know how you would find a way to implement the image recognition.

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

      @777omen dry bones "might" be easy out of the remaining bosses but don't know

  • @DagoDuck
    @DagoDuck 10 หลายเดือนก่อน +1

    If there‘s one thing I‘d really like to see, it‘s optimizing these scripts to near perfection. For example the first minigame if it wasn‘t for that bomb, it would‘ve had so many Goombas, the game had to squish them together.

  • @LevelUpGA
    @LevelUpGA 10 หลายเดือนก่อน +2

    Next time you can try all bloons TD with genetic algorithm, theoretically you need only string recognition and tower positions/hotkeys and clicking on the map and good luck with training, I try random clicking and I win BTD1 in 2/4 times with random clicking (generation 0) without upgrades but not with full hp

  • @louisnemzer6801
    @louisnemzer6801 10 หลายเดือนก่อน +1

    Playing video games: Fun
    Automating a computer to play games for you: More fun

  • @__--_--_-----
    @__--_--_----- 10 หลายเดือนก่อน

    would be nice to see it taken to the next level to automate a more complex game, I think that is more impressive than doing a few simpler games

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

    It's good to know that, no matter how advanced code has become, I'm still able to beat it handily at Domino Effect.

  • @uniderpx3452
    @uniderpx3452 10 หลายเดือนก่อน +1

    hell yeah we love pyautogui

  • @Jagpagaco
    @Jagpagaco 10 หลายเดือนก่อน +2

    code noodles video lets gooo !

  • @AzidDrop
    @AzidDrop 10 หลายเดือนก่อน +2

    I hope there will be another one of these videos 😊

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

    For the second one you could have done some image processing on the shapes, using something like a Lapacian filter for edge detection, with the correct thresholding this would give you a black and white image (with the white part of the image being the shapes you need to draw). This can also be computed very quickly if you did the calculations in the Fourier space. This can be done with Modules like OpenCV-python. :)

  • @nathanlamberth7631
    @nathanlamberth7631 10 หลายเดือนก่อน +2

    Those second two were too close for comfort

  • @knownas2017
    @knownas2017 10 หลายเดือนก่อน +2

    I would subscribe to see more of this kind of content...
    But I'm already subscribed. :)

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

    I would love to see more.

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

    I think you were on to something with the scrapped solution for detecting the grid.
    But you needed to look for the shapes in a blue outline afterwards. THEN you could automate the shapes.

  • @Dragoonmaster999
    @Dragoonmaster999 10 หลายเดือนก่อน +1

    Good Job!

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

    For the first mini game (circle goomba) i know from my childhood that you can draw pretty small circle on the goomba. Reduce the size of the circle to decrease the risk of catching a goomba

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

    For Domino Effect, I feel like it might be helpful to just read the upcoming input instead of the current one. The window to press the input comes up REALLY early so you could basically prebuffer the entire thing and smoke the CPU.

  • @MegaKBang
    @MegaKBang 10 หลายเดือนก่อน +9

    Terrifying how close the expert cpu is to beating an almost perfect AI

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

    So cool ^~^ I love Mario Party DS

  • @ikilledaman
    @ikilledaman 10 หลายเดือนก่อน +2

    bro got a sponsor attaboy ‼‼‼

  • @XenoPon2
    @XenoPon2 10 หลายเดือนก่อน +1

    The best Mario party ever made.

  • @ironici
    @ironici 10 หลายเดือนก่อน +2

    I swear this is the only way to beat Trace Cadets

  • @derpylemon852
    @derpylemon852 10 หลายเดือนก่อน +2

    Automate Study Fall pls! I remember getting a high score of 0.00cm by pressing it exactly when I needed to!

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

    Maybe for Goomba Wrangler, the program could probably compare the latest screenshot with the previous one to gauge its target’s speed so it can predict where the goomba will be when the circle completes

  • @David_Rg
    @David_Rg 10 หลายเดือนก่อน +1

    dude, when I was a kid I hated soooo much the block one 😂
    I still struggle with it, ngl

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

    I think if you use what's called the midpoint circle algorithm to draw your circles, instead of generating a polygon and then drawing it, you should be able to grab goombas much faster

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

    Ok this sounds insane, and would require you to play through the story to unlock them, but what if you automated the Boss Mini games?

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

    Hear me out, I have an idea:
    Write automated code for every mini-game in Mario Party DS, as WELL as custom Party Board AI. Then, bundle all of it together as a custom mod pack that replaces the actual AI with your code, so its essentially like playing against a bunch of copies of you.

  • @then00btitan96
    @then00btitan96 10 หลายเดือนก่อน +1

    the goat is back