Using Image Recognition to play Mario Party Minigames

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 พ.ย. 2024

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

  • @CodeNoodles
    @CodeNoodles  ปีที่แล้ว +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 ปีที่แล้ว

      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 ปีที่แล้ว

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

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

      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

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

      how tf does math have to do with mario

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

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

  • @SpaciousBoundary
    @SpaciousBoundary ปีที่แล้ว +781

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

    • @KatherynneF
      @KatherynneF ปีที่แล้ว +134

      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 ปีที่แล้ว +18

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

    • @jblen
      @jblen ปีที่แล้ว +41

      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 11 หลายเดือนก่อน +8

      The AI is probably rubber banding.

    • @SleepyBrady
      @SleepyBrady 11 หลายเดือนก่อน +18

      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

  • @ArisTheMage
    @ArisTheMage ปีที่แล้ว +136

    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 :)

  • @KinuTheDragon
    @KinuTheDragon ปีที่แล้ว +696

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

    • @CodeNoodles
      @CodeNoodles  ปีที่แล้ว +296

      I actually have that implemented already. It definitely helped!

    • @renakunisaki
      @renakunisaki ปีที่แล้ว +39

      And prioritize gold.

    • @Laenthor
      @Laenthor ปีที่แล้ว +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 ปีที่แล้ว +56

      @@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 ปีที่แล้ว +6

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

  • @MeneerEnMevrouwTrein
    @MeneerEnMevrouwTrein ปีที่แล้ว +182

    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 ปีที่แล้ว +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 ปีที่แล้ว

      Eyo trein kanaal nice

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

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

  • @tornadowizard
    @tornadowizard ปีที่แล้ว +326

    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  ปีที่แล้ว +111

      That's a good point!

    • @tornadowizard
      @tornadowizard ปีที่แล้ว +44

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

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

    This was AMAZING! Please automate more Mario Party minigames!

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

      Seconded, this was really interesting to watch

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

      Same as well I agree

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

    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 ปีที่แล้ว +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 ปีที่แล้ว +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 ปีที่แล้ว +5

      ​@@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 11 หลายเดือนก่อน +3

      ​@@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?

    • @NoviceVideoGamer
      @NoviceVideoGamer 27 วันที่ผ่านมา

      @@GoldenAce17 I think I got 00,00 on Study Fall. That's the chalkboard minigame, right?

  • @chipsleftwing
    @chipsleftwing ปีที่แล้ว +43

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

    • @0hellow797
      @0hellow797 ปีที่แล้ว

      Yeah I’m with Chip on this one

  • @disdonut
    @disdonut ปีที่แล้ว +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

  • @beeisland
    @beeisland ปีที่แล้ว +33

    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  ปีที่แล้ว +9

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

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

      Same 😊

    • @raptore.x
      @raptore.x ปีที่แล้ว +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

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

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

  • @NekoEchoflower
    @NekoEchoflower ปีที่แล้ว +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

  • @YeetoTheYeetafic
    @YeetoTheYeetafic ปีที่แล้ว +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'

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

    Loving these minigames automation

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

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

  • @Alex-gv9os
    @Alex-gv9os ปีที่แล้ว +14

    Definitely want to see other automatization for Mario party minigame 🤩

  • @unfortunatedisgrace246
    @unfortunatedisgrace246 ปีที่แล้ว +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!

  • @x-x
    @x-x ปีที่แล้ว +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  ปีที่แล้ว +2

      Thanks, I'm glad you them!

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

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

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

    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

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

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

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

      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 ปีที่แล้ว +2

      🤓

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

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

  • @canadianlucario2643
    @canadianlucario2643 ปีที่แล้ว +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 ปีที่แล้ว +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

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

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

  • @nitro5247
    @nitro5247 ปีที่แล้ว +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.

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

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

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

    Mario Party DS is my favorite Mario Party ever.

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

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

  • @DagoDuck
    @DagoDuck ปีที่แล้ว +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.

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

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

  • @theAstarrr
    @theAstarrr ปีที่แล้ว +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.

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

    YO more nostalgia from probably my favorite videos of yours

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

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

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

      Thanks, I'm glad you like it!

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

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

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

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

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

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

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

    Love the Image Recognition videos

  • @Imaproshaman7
    @Imaproshaman7 ปีที่แล้ว +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.

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

    I swear this is the only way to beat Trace Cadets

  • @Noah-ost
    @Noah-ost ปีที่แล้ว +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 ❤️

  • @TheMamaluigi300
    @TheMamaluigi300 10 หลายเดือนก่อน +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

  • @realElzie
    @realElzie ปีที่แล้ว +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…

  • @fernando98322
    @fernando98322 ปีที่แล้ว +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

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

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

  • @velvetbutterfly
    @velvetbutterfly 10 หลายเดือนก่อน +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

  • @htspencer9084
    @htspencer9084 ปีที่แล้ว +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  ปีที่แล้ว +4

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

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

    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

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

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

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

      That'd be so cool if possible

    • @777omen
      @777omen ปีที่แล้ว +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 ปีที่แล้ว

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

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

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

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

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

  • @SinisterPixel
    @SinisterPixel 11 หลายเดือนก่อน +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.

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

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

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

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

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

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

  • @HPnodsu
    @HPnodsu ปีที่แล้ว +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.

  • @CodeNoodles
    @CodeNoodles  ปีที่แล้ว +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.

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

    Im glad some people remember this game at least.

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

    It is funny how nostalgic I get for this game.

  • @leroyhak5081
    @leroyhak5081 ปีที่แล้ว +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.

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

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

  • @tekayo63
    @tekayo63 ปีที่แล้ว +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

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

    "You know what? Fck you"
    **becomes an even more Expert CPU*

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

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

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

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

  • @batofdestiny
    @batofdestiny 11 หลายเดือนก่อน +1

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

  • @__--_--_-----
    @__--_--_----- ปีที่แล้ว

    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

  • @LevelUpGA
    @LevelUpGA ปีที่แล้ว +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

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

    code noodles video lets gooo !

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

    More mini games pls I love listening to these 😊

  • @__--_--_-----
    @__--_--_----- ปีที่แล้ว +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

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

    In case no one else has said it, pyautogui probably didn't work because it uses older methods of doing stuff that aren't always compatible with newer software, so it doesn't even see the key presses. This may have been the case with your "DS". Pydirectinput solves this problem by using newer methods. At least, that's my understanding.

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

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

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

    I would like to see more minigames!

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

    When you realize he was literally just making another COM for these mario party minigames
    and then he pit them against the pre-existing COMs for these mario party minigames

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

    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. :)

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

    For the first goomba minigame, why not just draw squares instead of circles? Squares are faster and can still enclose the goombas.

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

      The game doesn't recognize squares unfortunately.

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

      @@CodeNoodles ah, that's a shame

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

      2:22

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

    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 😔

  • @noyz-anything
    @noyz-anything 11 หลายเดือนก่อน +1

    once you're done with mario party, maybe try automating pac-pix

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

    CodeNoodles' program vs Nintendo's program!

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

    Those second two were too close for comfort

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

    I love these videos! Please make more like this!

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

    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

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

    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.

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

    The sweer nostalgia i got from watching this!!!

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

    The best Mario party ever made.

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

    This is codebullet but with actual coding! 😂 Cheers

  • @bupp291
    @bupp291 ปีที่แล้ว +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  ปีที่แล้ว +2

      That sounds amazing! Good luck!

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

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

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

    This may aswell be magic as far as im consered

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

    1:51 bleh, upgrade to pynput or something, this library has aged like milk to me.

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

    4:27 - bomb-omb lol I like it

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

    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.

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

    Would be cool to see more!

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

    If you wanted to improve the goomba catch game, you could try making ovals instead of circles, as well as decreasing the size the reduce chances of the AI accidentally picking up bobombs

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

    bro got a sponsor attaboy ‼‼‼

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

    It would honestly be amazing if you do more minigames!

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

    hell yeah we love pyautogui

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

    You should do coin minigames from Mario Party DS like Penny Pinchers.

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

    2 questions i have regarding goomber
    1. will it be checking for golds?
    2. could you make it pause if bobombs are too close? or maybe just make the circles smaller?

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

    I hope I see a codenudel and Codebullet crossover one day !

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

    5:57 I wouldn't call it finished yet. The circle is too large even the opponents circle is smaller than yours. Also it doesn't need to be a perfect circle, a 9 sided polygon would be much faster to draw and look good enough.

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

      For whatever reason, the game doesn't recognize polygons with a low number of points, so I increased the number of point one by one until it was always capable of being recognized. Also I forgot to mention it in the video, but the circle automatically changes size based on how close the bob-ombs are to it, but it still might mess up.

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

      ​​@@CodeNoodlesou might as well add the feature that the progranm recognises the gombas mooving direction and adjust the coordinates accordingly

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

    i love these sorts of things