Using "My" Programming Skills To Beat An Infinite Game

Поделиться
HTML-код
  • Опубликовано: 3 фев 2025

Комментарии • 561

  • @TheCodingSloth
    @TheCodingSloth  Месяц назад +80

    To try everything Brilliant has to offer-free-for a full 30 days, visit brilliant.org/TheCodingSloth. You’ll also get 20% off an annual premium subscription. Happy New Year Everyone!
    UPDATE: I've decided not to share the code because it'll ruin the game for regular players.
    HOWEVER, join the Infinite Craft Discord if you want help making your own version. discord.gg/NSMut3Wx3Y

    • @nobody_fear
      @nobody_fear Месяц назад

      @@kevinramy9463 there are plenty of free coding courses for beginners, don’t waste your money on a paid one

    • @prodigypro7933
      @prodigypro7933 Месяц назад

      @@kevinramy9463 womp womp

    • @RayEye-h3m
      @RayEye-h3m Месяц назад +3

      no

    • @AOOA926
      @AOOA926 Месяц назад

      @@aIwaysorangefunction simulateDragAndDrop(element, startX, startY, targetX, targetY, steps = 10) {
      function triggerMouseEvent(target, eventType, clientX, clientY) {
      const event = new MouseEvent(eventType, {
      bubbles: true,
      cancelable: true,
      clientX,
      clientY,
      view: window,
      });
      target.dispatchEvent(event);
      }
      console.log(`Start: (${startX}, ${startY}), Target: (${targetX}, ${targetY})`);
      // Start dragging
      triggerMouseEvent(element, "mousedown", startX, startY);
      // Gradual movement
      let currentX = startX;
      let currentY = startY;
      const deltaX = (targetX - startX) / steps;
      const deltaY = (targetY - startY) / steps;
      return new Promise((resolve) => {
      function moveMouse() {
      currentX += deltaX;
      currentY += deltaY;
      triggerMouseEvent(document, "mousemove", currentX, currentY);
      if (
      Math.abs(currentX - targetX) < Math.abs(deltaX) ||
      Math.abs(currentY - targetY) < Math.abs(deltaY)
      ) {
      // Drop the item at the target
      triggerMouseEvent(document, "mouseup", targetX, targetY);
      console.log("Drag-and-drop completed.");
      // Force final alignment
      element.style.position = "absolute";
      element.style.left = `${targetX}px`;
      element.style.top = `${targetY}px`;
      resolve();
      } else {
      requestAnimationFrame(moveMouse);
      }
      }
      requestAnimationFrame(moveMouse);
      });
      }
      async function test() {
      const itemsRows = document.getElementsByClassName("items-row");
      for (const row of itemsRows) {
      const items = row.getElementsByClassName("item");
      const processedPairs = new Set(); // Reset on each test
      for (let i = 0; i < items.length; i++) {
      for (let j = 0; j < items.length; j++) {
      if (i !== j && !processedPairs.has(`${i}-${j}`)) {
      processedPairs.add(`${i}-${j}`); // Track processed pairs locally
      await processCombination(items[i], items[j], 500, 100); // Fixed target position
      }
      }
      }
      }
      }
      async function clickClearButton() {
      const clearBtn = document.getElementsByClassName("clear")[0];
      if (clearBtn) {
      clearBtn.click();
      console.log("Clear button clicked.");
      await new Promise((resolve) => setTimeout(resolve, 500)); // Wait for DOM to update
      } else {
      console.error("Clear button not found.");
      }
      }
      async function processCombination(firstItem, secondItem, targetX, targetY) {
      const firstRect = firstItem.getBoundingClientRect();
      const secondRect = secondItem.getBoundingClientRect();
      const firstStartX = firstRect.x + firstRect.width / 2;
      const firstStartY = firstRect.y + firstRect.height / 2;
      const secondStartX = secondRect.x + secondRect.width / 2;
      const secondStartY = secondRect.y + secondRect.height / 2;
      await simulateDragAndDrop(firstItem, firstStartX, firstStartY, targetX, targetY);
      await simulateDragAndDrop(secondItem, secondStartX, secondStartY, targetX, targetY);

      // Delay before clicking the clear button, to allow for any UI updates
      await new Promise((resolve) => setTimeout(resolve, 500));
      await clickClearButton();
      }
      // Run the test function
      await test();

    • @liamfarrar8861
      @liamfarrar8861 Месяц назад

      the invite is invalid

  • @Yosleco
    @Yosleco Месяц назад +403

    This is why I can’t get any new discoveries in infinite craft

    • @mitchwranich2236
      @mitchwranich2236 Месяц назад +31

      I managed to get about 80 ND because I kept adding numbers to Pirates of the Caribbean

    • @scientiaestpotentia2007
      @scientiaestpotentia2007 29 дней назад +3

      I got Space Cotgasm and Crasm a few days ago

    • @Silverlight2-4-0
      @Silverlight2-4-0 27 дней назад

      my discoverys are dramaupahntoaum and the ent urn games revenge of the jedi

    • @goodpoop887
      @goodpoop887 26 дней назад

      @@scientiaestpotentia2007 i got goku orgasm, Sexy Chicken, Fortnite Shitter, and Gorlock the orgasm

    • @theboog24
      @theboog24 16 дней назад +1

      Just do decimal crafts

  • @FraudWhiteSpace
    @FraudWhiteSpace Месяц назад +1460

    Should've named "finite craft"

    • @watercatॱ
      @watercatॱ Месяц назад +23

      im pretty sure non native english speakers dont even know what that word means. m e t o o

    • @Newb1eProgrammer
      @Newb1eProgrammer Месяц назад +56

      ​@@watercatॱit means not infinite

    • @user-universalmaster.
      @user-universalmaster. Месяц назад +23

      @@watercatॱit means possessing any classification of limitation to possess an culmination, a extremity.

    • @watercatॱ
      @watercatॱ Месяц назад +3

      @@user-universalmaster. its a joke😭

    • @WhiteHatThat
      @WhiteHatThat Месяц назад

      Agreed.

  • @altaccount648
    @altaccount648 Месяц назад +1186

    4 years of computer science, turns to AI.

    • @sworatex1683
      @sworatex1683 Месяц назад +52

      Pretty sad...

    • @FluffyBloxYT-z5c
      @FluffyBloxYT-z5c Месяц назад +14

      to be fair he do fix up some parts ai couldn't

    • @altaccount648
      @altaccount648 Месяц назад +3

      @FluffyBloxYT-z5c 💀right...

    • @xMartasowo
      @xMartasowo Месяц назад

      Yeah well thanks to ai i can also re create it >:)

    • @sworatex1683
      @sworatex1683 29 дней назад +11

      @FluffyBloxYT-z5c dude doesnt know any js basic checks to do upfront. Hes only a science dev who has never worked in this job. No experience in solving real world problems

  • @martine27
    @martine27 Месяц назад +755

    Seeing a programmer use AI to beat a game made using AI makes me think the Unabomber was right

    • @maxthetube8466
      @maxthetube8466 9 дней назад +2

      Dead internet theory

    • @luzianamejia5535
      @luzianamejia5535 6 дней назад

      I like the mind of the Unabomber. Wish I could meet him 😵‍💫🪰

    • @somerandomuser5155
      @somerandomuser5155 4 дня назад

      Well if you want to meet him you have to become him first ​@@luzianamejia5535

  • @lekelamega
    @lekelamega Месяц назад +160

    And because of this code, making a first discovery is 100 times more difficult

    • @FrostNugget23
      @FrostNugget23 29 дней назад

      Omg you’re right 😭😭😭

    • @ZephyDaBoiJR
      @ZephyDaBoiJR 23 дня назад

      lekelamega jumpscare

    • @bitonic589
      @bitonic589 16 дней назад +3

      Bro just combine a bunch of random numbers together

  • @Aqueouslyyy
    @Aqueouslyyy Месяц назад +275

    I was wondering why "My" was in quotations 😭

    • @lightning_11
      @lightning_11 Месяц назад +5

      It do be accurate, though!

  • @NoahBarrows-x8x
    @NoahBarrows-x8x Месяц назад +35

    Possible next steps:
    1. Run it skipping any items containing numbers, since you don't consider things like "Shrek 728" to be novel items.
    2. Try clearing after every 30 combinations or so instead of every combination to see if that makes it run faster.

    • @biondu8699
      @biondu8699 17 дней назад

      3. Use cheat engine to make faster cycles.

  • @sebastianbaldeo3209
    @sebastianbaldeo3209 Месяц назад +339

    sick now we have "limited craft"

    • @Nann1006
      @Nann1006 Месяц назад +20

      finite craft

    • @lightning_11
      @lightning_11 Месяц назад +1

      @@Nann1006 Fine craft

    • @nailauthar
      @nailauthar Месяц назад

      @@lightning_11 mine craft

  • @enderz1256
    @enderz1256 Месяц назад +115

    10:10 "Pteracornicornicornicornicornicornicornicorn" 🗣🗣

    • @jonqthqn
      @jonqthqn Месяц назад +9

      nicornicornicor… hold up a minute 😭

    • @MBStein12
      @MBStein12 Месяц назад

      @jonqthqnWAAAA

    • @patrickstening
      @patrickstening Месяц назад +2

      Chocolate santa clawsosarus rex!?!?!?!?!??!?!

  • @AimForDaHead-16s
    @AimForDaHead-16s Месяц назад +98

    I think the favourite 2 lines of all programmers are : "And guess what? I didnt even use AI" and "Ok, i think i fixed it now".

  • @DominoKiddoo
    @DominoKiddoo Месяц назад +54

    0:50 i prefer "Finite Craft"

  • @GlowNinjaZ
    @GlowNinjaZ Месяц назад +87

    This is such a good showcase of the limitations of AI to code. It works at first but as soon as you have to do anything more complicated it sucks and you have to either completely rewrite or understand the code and modify it to your needs anyway. Most of the time I've learned to just do it myself from the start.

    • @_gameforcer
      @_gameforcer Месяц назад +6

      If you can't understand the code AI gave you then you absolutely should either learn how it works or write your own code. That's a big IF though and it kinda shows a skill issue on your part. Because if you can understand AI code then you should have no problems either properly prompting AI to modify it or just quickly doing it yourself.

    • @Kayow12
      @Kayow12 28 дней назад

      ​@@_gameforceryeah if you know how to code then you tell it each line or two properly and that'll still save a lot of time with accuracy

    • @Sakupenny
      @Sakupenny 15 дней назад

      ​@@_gameforcerI can't understand AI code because it invents functions that don't exist

    • @_gameforcer
      @_gameforcer 15 дней назад +1

      @ You either prompted it to do some task that requires "invention of a function" or it created mocks of functions to simplify the solution for you. In the second case you can prompt the AI to explain.
      Tl;dr still skill issue on your part

    • @Sakupenny
      @Sakupenny 15 дней назад

      @@_gameforcer ru high? if gpt doesn't know how to do something it just guesses random functions that don't exist, "game:GetSkinColorAsync()" type shit

  • @sculkyyOld
    @sculkyyOld Месяц назад +20

    The reason why progress slows down is probably because it keeps crafting old combinations that already have results

    • @swaggceo
      @swaggceo Месяц назад

      Yeah that’s why there are bunch of cathulhu and other mess lmao

    • @_kingston
      @_kingston 29 дней назад +3

      Could probably track for each item the index of the last item you tried to combine it with & keep incrementing index of item 2 until the number of items doesn’t increase & index of item 1 is 1 less than item2. Record index 2.
      Then increase index of item 1 by 1. Repeat until you are at end of combinations. Reset item 1 to 0 and set item 2 to that items max item 2 + 1. Keep repeating until no you iterate item 1 without increasing number of items

  • @zigzag619
    @zigzag619 3 дня назад +2

    bro uprooted every single new discovery in the game💀💀

  • @adams00134
    @adams00134 Месяц назад +32

    Plottwist, he found all items at day 7, but decided to remove this and say that he closed browser.

  • @einekleineente1
    @einekleineente1 Месяц назад +16

    I am so glad it took you 2h to write the Code! I feel much better now 😊

  • @ToeNail-VR
    @ToeNail-VR 29 дней назад +16

    12:27 do it for a whole month

  • @nourr2239
    @nourr2239 13 дней назад +3

    *Using my 4 years of computer science*
    attempts to use chatgpt on first probleme
    so relatable

  • @lupusreginabeta3318
    @lupusreginabeta3318 12 дней назад +2

    No way he asked Big Daddy Raga to adapt to his bad code😂

  • @ivanbiswas-j6v
    @ivanbiswas-j6v 21 день назад +1

    Normal people: Kicking rocks all day*
    The Coding SLoth trying to get 3 million items in infinite craft in 1 week

  • @Ek-xtreme
    @Ek-xtreme Месяц назад +6

    Finally subscribed you Sir are a descendant of my humor 🧑🏾‍🍳

  • @alexbohike9111
    @alexbohike9111 5 дней назад +1

    Balatro is a perfectly fine excuse to be unproductive!

  • @VerdantGMD
    @VerdantGMD Месяц назад +26

    3:42 Water still? STILL WATER??? MANGO MANGO MANGO

  • @NormalDemons
    @NormalDemons Месяц назад +26

    I love this guy he inspired me to learn coding

  • @NelDSon-f2b
    @NelDSon-f2b 2 дня назад

    Why is the process so relatable 😂

  • @Nunu-go5tw
    @Nunu-go5tw 6 дней назад +1

    Please correct the title to IA used her skills as she did 95% of the work

  • @dylan_1313
    @dylan_1313 Месяц назад +13

    0:15 America moment

    • @veqxh
      @veqxh 28 дней назад +3

      Or canada. Or the UK. Or SAE. Or Mexico. Or Brazil.... I think you get the idea.

    • @dylan_1313
      @dylan_1313 28 дней назад

      @ it’s especially true for the just elected president, if ykyk

    • @veqxh
      @veqxh 28 дней назад +1

      @dylan_1313 trump is good. What do you mean?

    • @veqxh
      @veqxh 28 дней назад +1

      @dylan_1313 not accurate at all.

    • @dylan_1313
      @dylan_1313 17 дней назад

      @@veqxh explain why (Challenge: without being racist)

  • @18Theories
    @18Theories Месяц назад +9

    As a programmer for 4 lazy years myself in JS, Python, and other programming languages, I detect a common skill issue here that we both have. Jokes aside that somehow helped me with my "own" code too and it was a good time watching so thanks man!

  • @kai_2210
    @kai_2210 13 дней назад +1

    9:31 I read some of the results of the creations and I died

  • @catgod999
    @catgod999 29 дней назад +5

    Optimize the code to not use already used combinations, speed it up and keep it going for a month

  • @Notsolongname
    @Notsolongname 25 дней назад +3

    5:18 I KNEW IT WAS A FUCKING RICKROLL LMAOOO

  • @randomgamedev-z5k
    @randomgamedev-z5k Месяц назад +23

    A new year with new errors

  • @anjanavabiswas8835
    @anjanavabiswas8835 26 дней назад

    Fine I'll watch the sponsor segment. You got me. You deserve it.

  • @hephestusbh1803
    @hephestusbh1803 Месяц назад +3

    Balatro is a great game, nice plug
    Great video it was very entertaining to watch

  • @brightonshifu
    @brightonshifu Месяц назад

    😂😂the ad placement was so good I let it play, no skipping.

  • @maze7050
    @maze7050 Месяц назад +6

    EVEN CODING ALOTH IS ADDICTED TO BALATRO 😭

  • @Rafaelgames3.0
    @Rafaelgames3.0 6 дней назад +1

    Bro said no memes one sec later:i understand it now 7:36

  • @pinguis_thorax
    @pinguis_thorax Месяц назад +10

    Why didn't you save all the things already combined so it only tries new combination wouldnt that make it way faster

  • @catgod999
    @catgod999 29 дней назад +1

    Cthulhu 78473 when I discover Clothing 78474: 💀

  • @wehzahm
    @wehzahm Месяц назад

    Happy new year everyone 🎉🎉

  • @bitonic589
    @bitonic589 16 дней назад

    Infinite craft 🚫
    A small portion of the set of real numbers is the amount of possible items you can craft in Infinite Craft ✅️

  • @RandomVoidGuy
    @RandomVoidGuy 7 дней назад

    Instantly liked and subscribed when I heard the god of war reference to ZEUUSS!

  • @okarthegreat
    @okarthegreat 15 дней назад +1

    Time is finite. Computers require time to combine items in Infitite Craft. Therefore, the number of items possible is limited by time. Checkmate Neil. 😎
    /hj or whatever

  • @Noah6544
    @Noah6544 Месяц назад

    Thanks for showing how many issues you ran into that’s realistic and entertaining

  • @JackBond1234
    @JackBond1234 Месяц назад +2

    You did all that work trying to code dragging and dropping ui elements when you could just make network requests directly for any of the matches you want.

    • @anjanavabiswas8835
      @anjanavabiswas8835 26 дней назад

      But would that be visually appealing?

    • @JackBond1234
      @JackBond1234 26 дней назад

      @anjanavabiswas8835 If it were me, I'd make my own UI for it. It'd probably be faster

  • @A.New.Channel0
    @A.New.Channel0 Месяц назад

    Nice video! Keep up the good work and happy new year!

  • @selfeducation4u
    @selfeducation4u Месяц назад +6

    I imagine Neal watching this video

  • @e_person882
    @e_person882 Месяц назад +1

    there goes the amount of new discoveries

  • @chessbergen
    @chessbergen Месяц назад +2

    Well, there goes all my first discoveries lol

  • @tsg-art_studio
    @tsg-art_studio Месяц назад

    This video warms my cold withered heart.

  • @sabarathore5174
    @sabarathore5174 29 дней назад +1

    "Children" being a coding term will always make questionable sentences.

  • @so.do.you.like.amongus
    @so.do.you.like.amongus 20 дней назад

    You have given me a life of suffering due to you not giving me the code

    • @alienshooterdefender86
      @alienshooterdefender86 17 дней назад

      You do realise sending exceesive requests costs neal money, right? What are you even gonna do it with - mindlessly run it for hours on end with no purpose?

  • @TH3MAN0FGAMES
    @TH3MAN0FGAMES Месяц назад

    *HAPPY NEW YEAR!!!!!* 🎊🎊🎊🎊🎊🎊🎊🎊

  • @HelloQro
    @HelloQro Месяц назад +16

    gotta say, those 4 years of learning how to code didn't go to waste :P

  • @omagadh
    @omagadh Месяц назад

    i didnt expect for first discoveries getting industrialised

  • @Reddumz
    @Reddumz Месяц назад

    I skipped through like 80% of the video and instantly was blasted with "SCOTLAAND FOREVERRRRRRRRRR " 11:27

  • @ItzYousof
    @ItzYousof Месяц назад +2

    Happy new year

  • @err0rz633
    @err0rz633 Месяц назад +5

    I'm assuming there is a character length limit for the item names. Combined with the fact that there are a limited number of possible characters, this limits all the character combinations in the names which would limit the amount of items. So it indeed isn't infinite.

    • @dadmitri4259
      @dadmitri4259 Месяц назад

      why would there be a limit to the number of characters in an item name?

    • @dadmitri4259
      @dadmitri4259 Месяц назад +1

      oh wait. according to a stack overflow answer, javascript does seem to have some kind of maximum string size. of which is at least around 2^30 characters for most browsers

    • @tipoima
      @tipoima Месяц назад

      There is a limit, IIRC it's 32 characters, maybe bit less. Don't remember how it counts emojis or other non-standard characters.
      If the output would be longer than these, the elements just don't combine.

    • @BrentBE5
      @BrentBE5 16 дней назад

      @@tipoima Elements **longer** than 30 characters dont combine anymore. Also it's theoretically possible to get 319 characters in an element, but the record I know of is 305 characters (an element is maximum 20 llama 2 tokens)

  • @giakhanglephan3614
    @giakhanglephan3614 14 дней назад

    "limited craft" should be fire

  • @Eze-oz2wc
    @Eze-oz2wc Месяц назад +1

    Little upset that I cant get any new discoverys because of this but GGs

  • @5IQGD
    @5IQGD 14 дней назад

    First thought logically it's not infinite because Neal's servers aren't infinite to fit everything

  • @FrancisTheMantis
    @FrancisTheMantis Месяц назад

    This vid was so funny please make more like it

  • @alirahimi4746
    @alirahimi4746 Месяц назад +1

    Duuuude, the sponsor spot 😂😂

  • @desertpillow1
    @desertpillow1 Месяц назад +1

    Im not a coder but I think the reason some things were going to the top left is because thats where (0 , 0) is on a monitor (i think)

    • @Clip_It1
      @Clip_It1 Месяц назад

      yes, yes that is where 0,0 is

  • @codechamps1375
    @codechamps1375 23 дня назад

    The ad was reallly realllllly smooooooth

  • @Chadopium-100percent
    @Chadopium-100percent 29 дней назад

    it's just like that rock paper scissors AI game, it constantly develops, it's like trying to find the limit of AI

  • @kejrr-c2l
    @kejrr-c2l Месяц назад

    Ai stopped at cthulhu and started making every possible 25k combinations of it

  • @MysticDeer-tu4ei
    @MysticDeer-tu4ei Месяц назад

    if you had used a table to collect all previous combinations which is I think easy to do (I dont use that programming language so sorry if im wrong) you whouldnt have had a loop that repeatedly tried already used connections.

  • @Ha268YT
    @Ha268YT Месяц назад

    Do more of these coding videos I really like them

  • @skibidi_slicers-5000
    @skibidi_slicers-5000 29 дней назад

    Balatro is actually so fun bro

  • @MaximilianAugustusIIIJr
    @MaximilianAugustusIIIJr 28 дней назад

    This guy is the reason getting a first discovery is hard

  • @jammin1336
    @jammin1336 Месяц назад

    0:32 greg heffly board president patrick star college president 😂😂

  • @GabrielGamerFreitas
    @GabrielGamerFreitas Месяц назад +2

    hi, i'm from brazil, and because you enabled "AI translated audio" to brazilian portuguese, it also enabled the translation of the title of the video. the problem is, the translation is usually google translated (bad). As it is auto enabled by default, i'm warning you in case you haven't noticed. this video here talks about this
    ruclips.net/video/Pk63QMSyg7k/видео.html

  • @drakondra
    @drakondra 29 дней назад

    Theoretically it's finite. It would be interesting to run this program on an 1 exaflops supercomputer

  • @armlatv2260
    @armlatv2260 11 дней назад

    Bro, I spent 6h just getting a [titanic ship {Number}] funniest part is that all of them were new discoveries

  • @pancakesandberrysyt811
    @pancakesandberrysyt811 Месяц назад

    How I list this title
    1. My programming "skills": both creative and unoriginal
    2. "My" programming skills: shows of coping, and not your code
    3. My "programming" skills: wtf dose that means, SLAVERY????????

  • @TheRealFishingFish
    @TheRealFishingFish 4 дня назад +1

    5:43 jjk reference i smell

  • @Jordan-i5l
    @Jordan-i5l Месяц назад

    KEEP GOING!!

  • @lger_tp9582
    @lger_tp9582 28 дней назад

    Next we gonna have infinite craft speed running

  • @oxyriver1
    @oxyriver1 29 дней назад

    9:53 shaqtopus prime
    prime
    minos prime
    PREPARE THYSELF

  • @BeaBea1455
    @BeaBea1455 Месяц назад

    My Pony senses were tingling once I saw this video on my recommended. Glad to see Twilight Sparkle and PiratePony ship made the cut lol.

  • @walkdead94
    @walkdead94 Месяц назад

    5:10 hahahaahah.. I had one ASMR integrated computer like yours once.. :D

  • @animaymayyy19
    @animaymayyy19 18 дней назад

    9:00
    Me when i play this at the airport on full volume

  • @yuhaoxin552
    @yuhaoxin552 Месяц назад

    Maybe add something that helps it remember combinations so that there aren’t as much repeats?

  • @Drostaluna
    @Drostaluna 17 дней назад

    Okay, do it again, but run it where it checks all combinations its done before and puts it in a saved list, til eventually you still dont win and its just infinity lmao

  • @adrielwaderivera1974
    @adrielwaderivera1974 Месяц назад

    Achievement Accomplished: The Brother of Inner Sloth

  • @Bentting
    @Bentting Месяц назад +2

    YOU SHOULD MAKE "Game of bells and thrones and thrones"

  • @Bobbert_The_Foundation
    @Bobbert_The_Foundation Месяц назад

    10:44 i see that error like every other week lol

  • @yablock7346
    @yablock7346 Месяц назад +2

    There are censored words you cant get (word you were able to get but you can't get it anymore), for example "Terrorist"

  • @SoloSoul69
    @SoloSoul69 Месяц назад

    Brother is the sloth for a reason

  • @imkacper
    @imkacper Месяц назад

    they keep making new catthulu sequels

  • @Agentshooter399
    @Agentshooter399 Месяц назад +1

    Bro is the reason why I can't get any first discoveries

    • @Eze-oz2wc
      @Eze-oz2wc Месяц назад +1

      Finally another person who is a little bit annoyed by this too I remember my first first discovery was something called a Gryphong or smth

  • @InfiniteWithout
    @InfiniteWithout Месяц назад +1

    You can input items manually throught local storage so IDK

    • @unique-317
      @unique-317 Месяц назад

      if it really stores which items you have in local storage then there is a limit cause local storage is limited to 5-10mb on most browsers

  • @HellLord-5
    @HellLord-5 Месяц назад

    So basically it’s infinite because it makes stuff up.. so you did beat it and you even got stuff nobody else found. I say that’s a success

  • @XenoHypes
    @XenoHypes Месяц назад

    "Every ounce of brain power I have" 🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣 Nice vid right there🤩🤩🤩

  • @adamcionoob3912
    @adamcionoob3912 Месяц назад +1

    11:48 when I was playing this game for the first time I got same thing but with Diablo, I had hundreds of them.

  • @ant0ngu
    @ant0ngu Месяц назад +11

    AI game vs AI gamer

  • @veryWisemysticaltree
    @veryWisemysticaltree Месяц назад

    "Cheesicornic Darth pie-ranha" 11:46 💀💀💀

  • @chris123lol5
    @chris123lol5 24 дня назад +1

    this video is just an AI beating another AI.