I Broke Epic Auto Towers

  Рет қаралды 167,141

Dex

Dex

Күн бұрын

Пікірлер: 177
@lucasman8613
@lucasman8613 Ай бұрын
Fun fact, the growth was more than generic exponential growth :) The base of the exponent (the percentage with which the tower stats increase) grow as well (with roughly square root growth but exactly sqrt(x*sqrt(x))). This means the function describing your growth will be of the form x^x. Absolutely insane growth.
@lucasman8613
@lucasman8613 Ай бұрын
The base grows because the princess upgrades he tower btw
@mauricebenink
@mauricebenink Ай бұрын
Its even more beyond that, not only does the princes increase the percentage growth, it also increases how often the slime tower can eat, and the princes scales how quickly it scales these 2 towers futher up
@rysea9855
@rysea9855 Ай бұрын
It's probably even more nuanced than that when you consider all the factors into play, but it's definitely still insane. I love this sort of stuff
@rkidy
@rkidy Ай бұрын
@@rysea9855 yeah, thats why we use big O notation when comparing functions with large inputs to simplify them. grossly simplifying: as both the base and the exponent grow, this function would be O(x^x).
@mauricebenink
@mauricebenink Ай бұрын
@@RupertAndCheese best way i could describe it, if you would plot it out on a log scale of the first comment the real growth would still show a exponential growth
@pest270
@pest270 Ай бұрын
So i was watching sifd's video the other day where he got 70k stats, i was like "wow that's amazing" Now me watching Dex completely decimate the game beyond any reason "the 70k was nothing after all huh"
@JoshHolmes-h8q
@JoshHolmes-h8q Ай бұрын
i've tried hitting this and for the life of me cant get it right :I
@ruben307
@ruben307 Ай бұрын
in the end you would have needed one million hits to defeat the boss. then 1000 times more. Soon the fight against the boss would taker longer than the age of the universe.
@DexTag
@DexTag Ай бұрын
I tried to end the run so it counts as "highest floor reached", i did end the next fight with a 1000 times speed up (no clue how fast it actually got), but the one after that ran for half an hour and no numbers changed, so yea
@Mindereak
@Mindereak Ай бұрын
@@DexTag need to keep some tokens to remove the carry towers so you can lose in the end
@Vedzmin8841
@Vedzmin8841 Ай бұрын
Its only possibile to delete the insolent tower is by honey token i think
@popoma776
@popoma776 Ай бұрын
@@Mindereak He just couldn't delete bird tower, because it would just spawn back with same stats but in different place
@OnePieceRooster
@OnePieceRooster Ай бұрын
For every 1 scientific notation the bosses health was over your tower's attack it will take 10x more hits to defeat. (In base 10 adding a zero is multiplying by 10, scientific notation is how many zeros follow the number). Meaning just 3 notations higher and you're looking at 1,000 headbutts ---> 4 is 10,000 ---> 5 is 100,000 and so on. Meaning it would start taking days, then weeks, then months, then years for the boss to go down.
@westyy2684
@westyy2684 Ай бұрын
omg Dex, that was amazing. you managed to grow numbers, not linear, or exponential, but to the power of itself and increased further by princesses. amazing stuff XD
@figa5567
@figa5567 Ай бұрын
What you saw here is just exponential scaling. In the form of statMultiPerRound= (towerBaseStat * towerGrowthMulti^n)/towerBaseStat, where n is the number of times you can consume the tower. So when the malignant tower had 200% stats after coming back and let's say it's at 1M stats,^eaten 5 times, the new stats would have been sometihng like. 1M * 2 ^ 5 = 32M, which is very close to what you see happening in the game. He had some other effects that increase the towerGrowthMulti a bit but it's just some constant in the end. The missing variable here is time, so let's add that in statsCurrentRound+nRounds = statsCurrentRound * (statMultiPerRound^nRounds) And as you see it's just a regular exponential, it just increases a bit faster as you add more consumes to the slime and levels to the malignant tower. Specifically what it is NOT, is a function in the form of x^x, so it's NOT to the power of itself.
@skywatcher458
@skywatcher458 Ай бұрын
Dex got stuck in game world with no exit 😢 he becomes an anime protagonist
@sorrowdaegon3325
@sorrowdaegon3325 Ай бұрын
"I reincarnated in a auto towers game and became invincible"
@two-wo2zr
@two-wo2zr Ай бұрын
Some rumors say that the boss is hitting the tower to this day…
@rysea9855
@rysea9855 Ай бұрын
I am quite surprised to see a game that actually expects the numbers to get this big. The highest number most programming languages can work with by default is roughly 1.8e308, or 2^1024. The fact that it has a safeguard for this totally surprised me though, I did expect the game to just let you hit that max and break it.
@woobilicious.
@woobilicious. Ай бұрын
That's just default behavior for the adder/multiplier in the CPU for numbers, code won't blow up, it'll just keep computing with incorrect values unless you explicitly try to detect it.
@rysea9855
@rysea9855 Ай бұрын
@@woobilicious. Not in my experience. In c# at least, you can keep increasing a double until it hits 1.8e308 where it becomes infinity. Unless you're talking about something else, in which case please do elaborate
@mithkabob
@mithkabob Ай бұрын
Yeah, interesting that they programmed in a safeguard to cap the max base tower power a good way from the maximum 64-bit float value so that even with other temporary modifiers it shouldn't reach the limit. Usually only idle games with exponential scaling bother doing anything with the cap like either unlocking new difficulty/content and scaling things to keep away from it, or by treating is as a milestone to break infinity and using something like the BigNumber library to go way past that value using software workarounds to the hardware limitation.
@znea1
@znea1 Ай бұрын
A recent update added the limit Dex hit, it used to keep going, but the game would crash when you hit over 1.8e308.
@ToyKeeper
@ToyKeeper Ай бұрын
The e308 limit is pretty common since that's where a float64 maxes out... but it's awesome when games put in the extra effort to allow scaling beyond that. Like SwarmSim uses its own number library so e308 is still small potatoes in that game. The natural progression lasts until about e500 or so, but the player can use alternate strategies to get up to e100,000. And at that point, the main limitation is just that each number takes ~40 kilobytes of RAM and a whole bunch of CPU cycles per computation, so the game gets really slow.
@steelthrower-
@steelthrower- Ай бұрын
"oh Scheiße" hab ich gefühlt xD
@Necrotechian
@Necrotechian Ай бұрын
hey the boss only needed to attack 471 000 times to kill itself
@robbegeusens1302
@robbegeusens1302 Ай бұрын
I am guessing the reason why the stats capped at e288 has nothing to do with the dev putting in a cap manually. I think it has to do with how doubles (a type of comma number in code and probably the type used, as it is the only commonly used type that is able to produce numbers this large) are calculated. For those who don't care for a detailed explanation, basically the numbers got so big the additional stats were too small to make a calculable change for the computer, while the boss scaled enough to overcome this mathematical error. For those who wish to know the details, it's a bit complicated but here is as simple as I can think of. Here is how doubles are represented in computers. Doubles are 64 bits (ones and zeros) long. The first bit is the sign (+ or -), the next 11 are used to calculate the exponent (I will call the number you can get from these bits e) and the last 52 are used to calculate the fraction. The last 52 are bits are bitshifted (bassically move the coma but in binary) 53 bits to the right (that means less, it is called right because of how it looks in binary, shifting 2, 2^1, 0b010, 0b means in binary, 1 right would be 0b001, 1, 2^0, shifting it 1 left would be 0b100, 4, 2^2) eg. 2^52 would become 2^-1 (I will call this bishifted number f). This is the formula to calculate the number: (+/-) 2^(e-1023)*(1+f) Doubles lose precision as they grow larger constantly requiring larger changes to actually make any changes. Either that or the dev actually capped the number to avoid a buffer overflow, as that could in some cases crash your pc and in the very worst cases entirely brick your pc (though modern OSs should prevent this). I still believe it is the former though as doubles behave weirdly as they grow very large and you were still able to increase it. None of this weird behaviour is on the dev btw. These calculations are done at a hardware level with the only way around it being writing custom binary operations, which would be actual madness, as well as it being a lot slower.
@DexTag
@DexTag Ай бұрын
It used to be higher apparently at E306, but then the game would apparently completely freeze and you wouldn't be able to do anything anymore at all
@xSnowscopes
@xSnowscopes Ай бұрын
yeah i asked chatgpt at what point a multiplication by 5 (500 something% stats kept) of the number would not change any binary digit and it said around 10^291 which was exactly the highest point reached. i was amazed how quickly dex figured out that he had to increase the stats gained by a factor of 10 to register and how he assumed the dev wouldn't store the number as a double but rather as an abstract representation calculating only on exponents (which wouldve been the right choice)
@robbegeusens1302
@robbegeusens1302 Ай бұрын
@@DexTag It seems then the dev actually did put in a max to avoid a buffer overflow, which is probably what froze the game. The exact highest number for a double is 2^1024x0b1.111111.., 52 1s after the comma basically or 1.79769313486232E308.
@criminal238
@criminal238 Ай бұрын
I would be so funny if a dev watched this thinking how badly could he break it and then being like oh, he broke it that badly.
@Burnt_Embers
@Burnt_Embers Ай бұрын
One thing to note is, for your next runs, you could use the ancient tower´s ability What it does is that it replaces all commons with ruin towers, all uncommons with defender towers and rares with a moai that I cant remember the name of The first two arent that important, but the rare version works like a shop for tokens, each level granting acces to another token trade. 2 of them are very good, one gives percentage based stats and the other one makes a part of all temporary buffs permanent I dont know if there is a unique interaction with the malicious towers sooo you will have to try I guess
@ryanregis99
@ryanregis99 Ай бұрын
"replaces all rares with a moai that I cant remember the name of" heh, fitting for the name "forgotten tower"
@crispysatyr0355
@crispysatyr0355 Ай бұрын
Agreed also forgotten tower is better than the princess on lvl ups
@nathanhirsch8134
@nathanhirsch8134 Ай бұрын
I love how dex always says “sorry guys this is my 2nd time playing so i will make a lot of mistakes” the. Proceeds to absolutely wreck everything like he developed the game for himself
@DefinatelyNotAI
@DefinatelyNotAI Ай бұрын
The Irresistible Number meets Immovable Notation.
@SEproducti0n
@SEproducti0n Ай бұрын
What a legend Dex is. I’m honored to be able to see all this road since beginning, when Bible Evolved just start and talk about Dex in he’s videos
@Th3MousyMouse
@Th3MousyMouse Ай бұрын
Nah Dex, you dont goofed around you absolute madlad. Keep the insanity in your Videos going, but dont forget to sometimes TOUCH SOME GRASS!!!
@isaacribeiro6823
@isaacribeiro6823 Ай бұрын
the reason he can not do it is because anytime he gets close to it grass just pick on her roots and starts running that how op DEX is, even real life grass run over the hills
@JosiahBradley
@JosiahBradley Ай бұрын
The game puts a hard cap on the player to ensure defeat, Dex: Hold my 5 beers + keyboard + sunglasses.
@th3banan444
@th3banan444 Ай бұрын
"That's not even a wall... That's a whole universe waiting for them!"
@KamuiPan
@KamuiPan 17 күн бұрын
Dex is really the King of breaking games with math and reading comprehension. Most would just dismiss the implication of synergy, is like a hidden math formula.
@electrospaghetti8388
@electrospaghetti8388 Ай бұрын
The correct terms are: Decillion Undecillion Duodecillion Tredecillion It's based off of french numbers: Un, Deux, Tres, etc. When you reach 20 (vingt), it becomes vingticillion and starts again
@xSnowscopes
@xSnowscopes Ай бұрын
its based ob latin numbers but yes
@martinferrand4711
@martinferrand4711 Ай бұрын
Three in French is 'trois' ;)
@TheSurgePhoenix
@TheSurgePhoenix Ай бұрын
I can always count on Dex to find some ridiculous way to break these games
@MD-mk3lh
@MD-mk3lh Ай бұрын
Wow, it's been a while since I've last seen someone *actually* break a game. Looking forward to watching some of your other stuff!
@xredgambit
@xredgambit Ай бұрын
Dex just wanted to exit but it won't let him. That's what happens when he plays with all shafts and no balls.
@Ohtrin
@Ohtrin Ай бұрын
Legend say Dex is still begging the game to let him quit while the boss smashes it`s own head against the insolent tower.
@Owl_Knight98
@Owl_Knight98 Ай бұрын
yet another game that got dexstroyed
@karatefrosch17
@karatefrosch17 27 күн бұрын
Ahh the extremely relatable „ive studied english and i basically soeak it fluently but i was born speaking german(covering my austrian or switsh bases here)“ accent.
@theonlyamergeddon
@theonlyamergeddon 23 күн бұрын
My lord the forge tower finally clicked for me watching this video. I saw no reason to ever use it before apart from buffing mosquito's early then selling it later but using it on honey finally made the tower make sense for at least something it can be useful for
@OberstMoep
@OberstMoep Ай бұрын
Geiler build😊. Hab jede Minute genossen. Danke für den upload.
@Jackaboy2020
@Jackaboy2020 Ай бұрын
Two uploads in 1 days, what a blessed life
@Ch1l1C0nCarnag3
@Ch1l1C0nCarnag3 Ай бұрын
Once you reach the e numbers, every time that goes up by 1 it is 10x bigger than its previous number. So that should tell you just how massive those numbers are actually getting, and because this game was going up in increments of 1000, the e number jumps by 3 every time it rolls over.
@KINGOFTHESPARKS755
@KINGOFTHESPARKS755 Ай бұрын
If it is a game where you have stats, dex can make it explode.
@gManGabe
@gManGabe 25 күн бұрын
Game: Endless mode Dex: Lemme actually check that
@FryazeR
@FryazeR Ай бұрын
More of this game would be awesome ❤️
@Gancoek
@Gancoek Ай бұрын
Stairway to heaven turn princesses to queens
@Psoewish
@Psoewish Ай бұрын
This gave me flashbacks to those hyper stacking poison runs in clawler you did a few months back. Exact same vibe on this one xD
@FireL88
@FireL88 13 күн бұрын
finally a game that uses good number abbreviations
@derpionderpson1424
@derpionderpson1424 Ай бұрын
When you have more towers in the shop than it can display, there is an arrow at the top of the shop which can be used to scroll back and forth through them.
@Average_Yuri_Enjoyer
@Average_Yuri_Enjoyer 25 күн бұрын
Dex, Dc stands for Decillion, UDc stands for Undecillion, DDc stands for Duodecillion, TDc stands for Tredecillion and so on.
@lacucaracha111111
@lacucaracha111111 Ай бұрын
Epic auto towers is a perfectly balanced game with no exploits
@NaThingSerious
@NaThingSerious Ай бұрын
Just for your information after decillion, it goes undecillion, duodecillion, tredecillion, and then the game goes to E48 and so on, which basically means x10^48, I’m not sure why it caps at e288, it might be because of some integer limit in the coding, or a cap the developer put on.
@lukiluk8104
@lukiluk8104 Ай бұрын
You can actually go further than that but not much more as the game crash once a stat reach beyond E306, meaning the game crash from the boss stats at round 177
@DanielLopez-up6os
@DanielLopez-up6os 26 күн бұрын
Never even heard of this game but here i am half an hour later still watching
@ratjpg
@ratjpg 27 күн бұрын
just some numbers, since you didn't know the names for them! No - Nonillion Dc - Decillion UDc - Undecillion (although, Uberdecillion was really funny to hear) DDc - Duodecillion TDc - Tredecillion --------- After what's seen in the video --------- qDc - Quattuordecillion QDc - Quindecillion sDc - Sexdecillion SDc - Septendecillion ODc - Octodecillion NDc - Novemdecillion Vg - Vigintillion The pattern repeats after this, until after Novemvigintillion; at which point it becomes Trigintillion.
@BenjaminIrminger
@BenjaminIrminger Ай бұрын
in Version 0.62b there was an implementation of a limit E290 to not get close to the real limit of double type of E 308. so to get as high as possible you shout get close to it with good towers. before you cude brack it with it like some streamer did.
@jeremyabbott4537
@jeremyabbott4537 Ай бұрын
It hurt when you deleted the bear. The bear wants to be strong too!
@fuchschrafter8512
@fuchschrafter8512 27 күн бұрын
i love the german in the englisch. einfach dieses "scheiße" ist extrem geil XD, deswegen liebe ich deutsch streamer, youtuber etc die englisch reden
@hiirozero3623
@hiirozero3623 Ай бұрын
Seem like the numbers get so high that both the tower and the boss hp lost can't even be calculated by the game engine
@chrisharris5415
@chrisharris5415 Ай бұрын
Dex, you were butting up against the hard limit of double precision floating point numbers.
@Malterus_Gaming
@Malterus_Gaming Ай бұрын
Hey :D Good to see you play some EAT aswell :D We want to be greedy :P Nice transition from Cat into the bears with the grand final of an insolent tower :D Well done :DD
@DexTag
@DexTag Ай бұрын
Yea it definitely hooked me (for myself), but i wished I found your videos before I recorded this, then I wouldve known that second main tower can give tokens to speed up scaling temporary stats xd
@Malterus_Gaming
@Malterus_Gaming Ай бұрын
@@DexTag Nice :DD There is plenty of time to go for more rounds :D And there are always improvements to make but you did great!! :D Thank you for watching my content aswell :D
@stephenp8232
@stephenp8232 Ай бұрын
You can get another shop to buy tokens through the ancient towers tower...1 is 10% stats to scale a bit faster
@rees7640
@rees7640 Ай бұрын
So because the game seemes to cap the stats at 1e291 the numbers shouldn't break because the upper limit on numbers that most computers can handle is in the e308s (limits of double precision floating point) also fun fact if the difference is greater than about 20 exponents the tower would be taking 0 damage due to rounding errors
@HunkyChunky112
@HunkyChunky112 Ай бұрын
you litherally smash the game in first video . who needs seasons
@diegonhathanielagrielabalc2504
@diegonhathanielagrielabalc2504 Ай бұрын
The boss at the end: "LET ME INN, LET ME INNNNN"
@latioshunter
@latioshunter Ай бұрын
Insane and crazy, thats what im here for.
@Brainrot-Studios
@Brainrot-Studios Ай бұрын
in the description it says its a brotato game might want to change that but this video is goated
@DexTag
@DexTag Ай бұрын
Thanks!
@ipancoco3190
@ipancoco3190 Ай бұрын
Chop chop little german boy this aint brotato Jk much love ❤
@fuffybear6865
@fuffybear6865 Ай бұрын
And this is why you put points into your luck stat before being born :^)
@England91
@England91 Ай бұрын
My best guess why he couldn't quit normally is because of an integer overflow causing the bug
@kurosakiichike
@kurosakiichike 24 күн бұрын
Deja Vu, this vid is just what i saw in my dream.
@rutimo
@rutimo 29 күн бұрын
If you had bears still, you could have scaled even higher (maybe)
@cantcu5734
@cantcu5734 9 күн бұрын
ja Scheisse xD Geiler Run, gerne mehr davon
@alirezataghavi5459
@alirezataghavi5459 Ай бұрын
Man dude what the hell did I just see . . . bro I played this game myself and I thought you were joking with E288 numbers . . . But oh dear oh dear God no . . . It was actually real in a game that I have never seen it have even a million in number when I played it . . . Dude this is a bit beyond breaking the game
@DerSchimmler
@DerSchimmler Ай бұрын
Pfanner Eistee ausm Tetra Pack :D
@Klorolllio
@Klorolllio Ай бұрын
Danke dir jetzt hab ich Durst
@La_sagne
@La_sagne Ай бұрын
Trendy Eistee aus dem Tetrapack
@La_sagne
@La_sagne Ай бұрын
sag mir bist du ein Göttergeschenk 😂
@C.K.D2001
@C.K.D2001 Ай бұрын
I find the obsidian tower with a flower and honey tower is way more broken. By the time I get to the final boss the obsidian tower has 15k health and 20k damage
@DexTag
@DexTag Ай бұрын
Na, I dont think it can compete, at least not scaling wise. It's more reliable I'd say cause you can do it earlier, but I'd say once you get past the early early game, the next time you can lose is when bosses scale up quickly, so quite late
@MaleHuman-o9o
@MaleHuman-o9o 28 күн бұрын
Im confident that the insolent tower could solo goku, 10 minutes before the video ends.
@bnane42
@bnane42 26 күн бұрын
"Tetrapack"- wait a minute... Is this guy german?
@0mgiPiex
@0mgiPiex Ай бұрын
watched the whole vid 🔥
@fllamingbarfi7126
@fllamingbarfi7126 Ай бұрын
"Tetrapack decadilion" XD
@teck8777
@teck8777 Ай бұрын
Hey dex, if you want an addictive game to try and try to break it, Balatro is for you.
@smoni1015
@smoni1015 Ай бұрын
"Och nööööö" :Wenn selbst der die deutsche Seite enttäuscht ist😂
@fitzvacker2
@fitzvacker2 Ай бұрын
You should do a video named : learn number with dex
@chelvo56
@chelvo56 Ай бұрын
do find it a bit lame that it's an "endless mode" where there is a soft end by artificially capping player scaling so the boss can outscale you.
@adonutguy_with_a_gun
@adonutguy_with_a_gun 28 күн бұрын
bro either got the british laugh or the french laugh 32:07
@Freddy4you1
@Freddy4you1 Ай бұрын
good work in braking the game
@johannesschubert7739
@johannesschubert7739 Ай бұрын
to maximise your board covering everything els with bear would add a little more power
@AaronSchilling-e3z
@AaronSchilling-e3z 28 күн бұрын
34:52 sounds like a villain
@memelescream4796
@memelescream4796 Ай бұрын
Round 60 boss with 67.5k Damage and 675k hp: Rawr im gonna kill ya and mess ya up 3 bears: Too fast. Too soon.
@devKazuto
@devKazuto Ай бұрын
Tetra Pak, the term every German knows xD
@tpg6386
@tpg6386 Ай бұрын
The eternal battle.
@Harbuja
@Harbuja Ай бұрын
I made the same build yesterday and got the same problem. Let the game half an hour run... nothing happens.. the first beartower hold the line. Round 175 does not end. 😅
@ZulkirVT
@ZulkirVT Ай бұрын
*mass pretend* SUCH A SHAME... Big Shaaaame *gigglesnorts* BREAK THAT SYSTEM!!! :D
@mtgnoodz
@mtgnoodz Ай бұрын
I want to see what he does with the towers of defense
@regiliok
@regiliok Ай бұрын
yeah stairways to heaven is the best item in the game btw it litterly allows for infinite scaling
@wehttam2935
@wehttam2935 28 күн бұрын
we need to see him play Library of Ruina
@vadymshkolovyi3888
@vadymshkolovyi3888 Ай бұрын
If dex not broke something, its not dex)
@jaredpena1068
@jaredpena1068 Ай бұрын
you made it yor mission to breake the game now the game has made it its mission to break you😊
@marcofiedler914
@marcofiedler914 Ай бұрын
Bad News, i broke the Game complitly, at Boss Level 174 the Boss has so much Life That he will attack you around 1 Year before he will be killed.
@IsaacWilliams-me4cf
@IsaacWilliams-me4cf Ай бұрын
I wonder of the bear would Max out or if it would keep scaling
@maulidivamanggalayudha6020
@maulidivamanggalayudha6020 Ай бұрын
This excited to see
@konstos2694
@konstos2694 Ай бұрын
Tetrapack-Dikadillion xDDD
@julianmarquart5291
@julianmarquart5291 Ай бұрын
Es gab einen bug dass sich ab E308 stats das Game aufhängt und dann abstürzt, deswegen wurden die stats auf E288 gecaped. Das Update ist erst 3 oder 4 Tage alt
@toymanjosh
@toymanjosh Ай бұрын
i think you reached the interger limit, so even tho the game said u upgraded, it couldnt go past it
@Ropjn
@Ropjn Ай бұрын
Wait, what do you mean Tetrapak doesn't exist anymore lmao
@Tiagocf2
@Tiagocf2 Ай бұрын
you managed to win infinite mode lmao
@darkothedarkness1792
@darkothedarkness1792 Ай бұрын
i hit it too * - * but my full bord has the stats from the slime :D
@andreassandmann6749
@andreassandmann6749 Ай бұрын
Hey Dex, schönes Video
@iamsushi1056
@iamsushi1056 Ай бұрын
100-speed boss go brrrrrrr
@daoppelpass
@daoppelpass Ай бұрын
Harter deutscher Akzent:D
@Dr_3vil
@Dr_3vil Ай бұрын
Dex I just got the dex-troyer in brotato
I build the ULTIMATE Hydra Tower | Epic Auto Towers
36:13
I spent $3000 in pocket ants over the years
2:58:40
ImCade
Рет қаралды 996 М.
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 17 МЛН
Каха и дочка
00:28
К-Media
Рет қаралды 3,4 МЛН
coco在求救? #小丑 #天使 #shorts
00:29
好人小丑
Рет қаралды 120 МЛН
How I Made A Game Breaking Megaloot Build
3:42:25
Mr. Fruit
Рет қаралды 157 М.
I broke Brotato until it Crashed...a lot
58:32
Dex
Рет қаралды 103 М.
Can I Beat Terraria by JUST Fishing?
45:24
frostburn
Рет қаралды 365 М.
ENDLOSMODUS - WE BROKE THE GAME !!! I EPIC AUTO TOWERS
51:36
Malterus Gaming
Рет қаралды 35 М.
Tower Defense but YOU are the Bad Guys
54:48
Olexa
Рет қаралды 382 М.
How I broke Luck be a Landlord
1:47:05
DangerouslyFunny
Рет қаралды 386 М.
How I Beat Calamity in Just 9 Bosses | The True Low% Run
45:07
ChiefLogan
Рет қаралды 297 М.
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 17 МЛН