It’s BILLIONS of floors below the surface, and we get to see it in this video! I’ve done a million before, but this is over 2000x deeper than even that. Apparently if you do manage to get deeper the games tries to do floor -8 then crashes. Stardew Valley gameplay with my commentary as always!

21 Comments

  1. the shafts range from 3-15 EXCEPT for 12 I believe it calculates a random number between 2-8 I think doubles it and then subtracts one and drops you that many floors 2*2-1 being 3 is the lowest roll then 6 gets 11 and 7 gets 13 so no 12

  2. Skull Cavern floor 2147483527 is perceived as Mines floor 120 + 214783527 = 214783647 = 2^(31) – 1
    Basically the skull cavern level is seen as a 32-bit signed integer (signed int), number which is in between [-(2^(31)-1) ; +(2^(31)-1)]. So the final level is just the maximum positive value that the signed integer variable can take. My best guess is that for each falling down there is a an additional check to see if the level variable overflows. When you go to the final level, if you increase the variable by 1, it will be over the possible limit and it'll overflow, so it just doesn't let you advance.
    BTW This is why you hear the sound effect. You click on the ladder, the game initiates the assets needed for advancing to the next mine (you hear the sound of falling down) but then it reaches the conditional for overflow and then stops and leaves you there. Probably this is why the frame rate drops as well, because the conditional isn't the first in the set of instructions.

  3. I think some floor 1 of skull caverns in classified as floor 121 and the bottom of skull caverns is 120 less then the 32-bit integer limit is why the bottom of skull caverns is that specific floor

  4. My first guess is it has something to do with some value being stored as a signed integer, that would be close to the value of the final floor number. Just off by around 100. Could be completely wrong though.

  5. The same interger limit for the original YouTube view counter, because the coders thought no video would ever clock more than 2 billion views. They were wrong.

  6. Wow, pano siya nakarating dyan ng 2:50 pm palang. Gumamit na kasi ako ng staircase pero 12:00 pm ko na narating yung level 100 hahaha lol 😂

  7. 2 147 483 647 is the 18-bit integer limit witch is the max that stardew can generate but other games like Minecraft may have higher ones such as the 38 bit integer limit which is what causes the farlands in Minecraft

  8. As many have stated, the 32 integer limit is 2147483647, if we take skull cavern level 1 for mines level 121, skull cavern 2147483527 becomes mines 2147483647, makes perfect sense

Leave A Reply