Most of the research was done by these guys Matthew Bolan: ruclips.net/channel/UCB4X... Neil: ruclips.net/channel/UCbM3... Kaptain Wutax: ruclips.net/channel/UCcHy...
The fact that minecraft uses the same formula you use to calculate the area of a polygon is something I never expected, I guess I was wrong Ms. Jerue, algebra is useful in the real world.
"Download the Jar file" Alright alright probably just gonna end up as some mod for fabric or forge "And then install an IDE" Woah woah slow down there! I didnt think we would be going THAT far.
@@artusdreimalneun2595 exe files are windows specific. every OS has its own syntax for command terminals. it would be annoying to code for windows, mac, and linux, then have to deal with hardcore raspberry pi and such fans complain (you would be surprised by how many of them there is and how vocal they are about small things that are completely their fault for using a raspberry pi). It could be easily done however to have the universal jar file just have an input system like the dropper seed cracker, instead of having to change the variables within. It isn't too much extra work to add.
From what code he showed us I think it's possible to crack droppers in any programming language will check tho (have to include my fried who has java edition as I don't lol)
"if you have ever taken third grade math you'll know that this is impossible" my school system which teaches this in their algebra 1 course that is meant for 9th graders: you're saying you're teaching THIRD GRADERS this stuff?
Damn that's weird. In Russia it's like 3rd grade - in 9th grade you usually analyze functions (mins, maxes, zeroes, derivative, etc), solve simple equations with logarithms and trigonometric stuff and do some geometry on the side.
@@George_Haldane I feel like this is one of the reasons America is lagging behind in terms of general education, as although there are many extremely talented people, the general population has been shown to be behind a bit
For future videos on files, on Mac: Open up Finder. In the menu bar at the top of the screen, choose “Go” and hold the option key. With the key held down, choose “Library”. Enter the following folders: Application Support>minecraft>etc. I could make a screen recording if needed
@@aidenlilley1319 Redstone mechanics. Although I think he meant the exact opposite in that droppers are actually easy to predict in Bedrock. I'm not sure though
Amazing effort and accurate information while also making good content. I'm proud of you for coming this far and I hope you go further! Another video idea I would suggest is Minecraft Loot Generation.
chicken randomizers can be used if you have 2 blocks above the ground, enclose the top block, then make 2 holes with pressure plates. you can then summon the chicken and use an arrow or some form of damage (i usually use a command to summon an arrow). then it can fall to 1 side on command. Afterward, the chicken can be killed. However, this of course would be much better ib creative, but it can be used in survival if you have a lot of chickens or you lead back the same chicken to the top every time.
if u dont get the equasion thing then: in coding "=" does NOT mean "is equal to" but it means "make the value to the left of the "=" have the value of the right" so if i write "x=1;" it will assign "1" to "x" if i write "x=x+1;" it will increase the value of x by 1 (x is now 1 more than it was before) PS: if you want to do what "=" does in normal math, you use "==" so for example if you want to check if "x" is equal to "1" you do "x==1" (it wont do anything since its not in any function now, but it can be used like this): if (x==1){ Do some thing; } else{ Do some other thing; } this means: if "x" is equal to "1" then it will do some thing, if its not true, then it will do some other thing
I KNEW IT, whenever i dispensed something i would notice certain slots dispensing more often i always thought they weren't all that random thanks for even more info!
@@JMill937 That's a likely scenario Though the kind of predictable might be something we'll never understand, like a ton of other quantum effects we don't get (yet)
In case anyones curious: the "mod 2^48" that was seen in the formula shown is called modulo arithmetic, which is a system of partitioning infinite discrete element sets into a finite set of subsets. For example, take the set of integers modulo 3. In this system, 1 = 1, 2 = 2, 3 = 0, 4 = 1, 5 = 2, 6 = 0, 7 = 1, 8 = 2, 9 = 0 and so on. This effectively sorts all the integers into three distinct equivalence classes: [1], [2], and [3]. So, in mod 2^48, this means that there are 2^48 distinct numbers that X can be. Once it reaches 2^48, it will cycle back to 0 and count up from there again. I'm a math major, not a compsci major. So there could be some computer wizardry going on that I'm unaware of. But from a mathematical perspective, thats what mod m represents
sad that you had to try so hard to keep people engaged through the programming part. I was very invested. As many people have said, it is really quite simple. The simple things just end up making a complex whole. Also, that IDE looks better than the one I currently use so I will check it out. amazing video. good job to you and the others who figured this out. I always knew that minecraft wasn't as random as many games, but I didn't realize it was *that* bad. that is literally not random at all. I remember the old chunk based rngs they used and how abused they were. basically everything was derived from chunk seeds that could be controlled by loading and unloading certain chunks in your world, typically where a structure (usually woodland mansion), tried to generate but failed. If this dropper seed is connected in any way, maybe rng farms could be possible again in 1.16. I doubt it though. I am sure captainWutax has already talked to johnny elgamer about maybe new ways to make manipulators like they did in 1.12. Who knows what the future holds? well, I do know that this dropper I am looking at will dispense from the third slot upon next activation lol.
It is impossible for code to generate a truly random number. Now you can base it off of time, weather, the amount of clouds in the sky, etc to make it seem more random. But if you know those exact things then you can predict the random output
I mean, people in Melee have been manipulating a similar RNG function for over a year now. Makes you wonder when the largest game community will catch up with them (I'll give it... probably never, tbh).
Nah, everybody’s smart enough for math, it’s just that it gets taught in such an ass way, its magical if you have the right teacher and have the patience for it
there are randomisers that use weather data, and if that's not predictable enough then there's hardware that uses different types of quantum decay to produce a truly random output
@@wewladstbh randomisers on time or so simple to create, but I imagine people have already made certain classes to make it incredibly easy to use those types of randomisers too
Gaming RNG is generally very similar to what he described. Here's the equivalent function with Melee: seed = ((seed * 214013) + 2531011) % 2**32 (This is simpler than Mario 64, and far more complex than DOOM. You can look it up, it's fairly easy.) PS: Manipulating in-game RNG in Melee, including finding seeds, is actually a thing for Melee speedruning (with Break The Targets), although in most other games it's solely left for tool-assisted stuff.
I understood the LGC equation perfectly. Quick facts to help: 1. Modulo is a seemingly complex mathematical operator, but it is just a function that returns the remainder of a division problem. Example: 255 mod 256 = 255. That is the equation that shows how coins are stored in Super Mario 64's memory. 2. The integer 2⁴⁸= 281,474,976,710,656.
@@saadahmad162 Vsause is like a big RUclipsr that explains world stuff, you can find him searching Vsause, also there are 3 channels with three people part of the same mission, and Vsause without numeros is what I referred to.
Hey, Skeppies here! (If you do not think it’s me, check my channel out where I have proof) I just wanted to say that this video is very well done and does a lot of explaining, but I think that your explanation in this video actually helps prove that I was legit in the corner events. I believe this because in order for me to predict what comes out of the droppers next, I would need to dropper seed of the event server in which the corner events took place one, which I didn’t have perms to get even get even if I tried since I was no opped or staff on the server. Not only that but the dropper predictor program you showcased in the video, came out after my 2 event wins, so for me to have done something similar, I would’ve had to code it myself, and if you know me, you would know that I know nothing about coding (planning on learning it very soon). So I had no way of predicting the dispensers at the time. At the end of the day, I just got lucky, very, very lucky. I haven’t ever been that lucky in my like and I haven’t been that lucky ever since. I guess April was just my month. Again, great video! I really enjoyed it!
I must admit that I firstly subscribed to you because of your videos about hermitcraft but now I am a total fan and would even recommend the hermits to invite you XD
This is a pretty crazy feature, I don't think it can be used for anything other than pranking your friends but it is incredibly intriguing. Thanks for enlightening me about this.
For a mac: open finder, press Go in the top left, click “go to folder” and type ~/Library/Application Support/minecraft that should lead you to the Minecraft folder. If that doesn't work, do this combination: up arrow key, command, and G. Then just type the application support thing and you should be good to go
but in the corners game, there definitely is some strategy because how skeppy did it, he chooses different categories until he finalizes to one corner. you can get a better chance of being not chosen by going in a corner with a subcategory with more corners, if that makes any sense lol. also skeppies is definatly extremely lucky
"predicting droppers is easy"
minecraft casino: stonks
Yes
somebody: abuses it
casino: not stonks
@@lool8421
yes
does this work in multiplayer tho?
@@ReaperX27-01
no duh
The amount of research and effort you put into these videos astounds me. This is some of the best content I’ve ever seen, keep up the amazing work!
Wait. I watch your content, I didn’t expect to see you here. That’s cool
AGREED
Tyyy! Very glad you liked it :D
Most of the research was done by these guys
Matthew Bolan: ruclips.net/channel/UCB4X...
Neil: ruclips.net/channel/UCbM3...
Kaptain Wutax: ruclips.net/channel/UCcHy...
a
Video idea: what seed has the slowest or fastest loading time when generating the world
i know what the next wifies video will be....
probably the one with the most extreme terrain/ a lot of structures overlapped?
prolly a seed with the shortest tag or something, idk
slowest would probably be bamboo jungle, fastest would be desert
@@eduardoxenofonte4004 those are biomes, not worlds... But that does make sense.
That moment Mumbo realized his randomizer wasn't as random as he thought it was
It is sort of random
100 like
@@projectsanctuary7944 oh my
@@nathana.2381 yee
@@projectsanctuary7944 now I don’t take what you said seriously 😳😬
I remember being in that competition, all I did was try and follow Skeppies.
I see you everywhere
Lol
WHY ARE YOU EVERYWHERR
@@pineconesacramento8802 bruh wdym do u even watch the videos?
@@Bruzen ikrruclips.net/video/EjOYiaZi8go/видео.html
"Copies code"
This is how every coding tutorial works...
Yes, It's so relatable!
As a programmer myself,
...
Me: *programmer*
Other people: *copies my code*
Me: Am i a joke to you?
@@Brahvim As a programmer myself,
...
Mouhahahah You copied my bad randomizer xD
News: Vsauce of Minecraft talks about how to predict the spewing of droppers
VILLAGER NEWS
with Vsauce's backgound track...
@@amitlanis3104 better watch kombatroll
ruclips.net/video/EjOYiaZi8go/видео.html
3:18 "or is it"
"in the future, entertainment will be randomly generated!"
sorry larry, not quite
weedeater
@@B0ssguy
weedeater
@@capy9846 weedeater
@@outspade lolruclips.net/video/EjOYiaZi8go/видео.html
yes
Next Vid title: Is walking *really* walking in Minecraft?
Is minecraft ACTUALLY minecraft?
@@tomsagamesisbackagain.3808 is Wifies really Wifies?
Is RUclips *really* RUclips?
Is water wet?
Is life actually good
Wifies is the vsauce of minecraft.
HEY MINECRAFT, WIFIES HERE.
I think he even used Vsauce music in the video
He even got the music!
Wifies' brain: Are Droppers actually random?
My brain: haha funny dropper face go :D
:D
Wifies if u respond il drink water
It actually goes :o hah
@@poklolio dispensers go :o droppers go :D
@@dGc22 oh yea! My bad :D
Wifies really out here answering every question nobody asked but we all needed answered
The real ones r asking the real questions.
Cant wait to see: is jumping actually raising your y level?
Does minecraft exist or was it all a dream?
no, according to blah blah blah
Lol
No It addforce by like 1.6f or something idk
Yes
Wifies: ...or is it?
Vsauce music: *"it's showtime"*
And how much does random weigh?
This kid makes me start to question minecraft
same
"kid"
@@general5503 he is a kid
@@zikohaha7440 He's probably a young adult but either way it's a pretty condesending use of the word
@@general5503 better watch kombatroll
ruclips.net/video/EjOYiaZi8go/видео.html
Short answer: No, because nothing you can code will ever be truly random
Long answer: *video plays*
You know its a 'or is it' when the vsauce music starts playing...
The fact that minecraft uses the same formula you use to calculate the area of a polygon is something I never expected, I guess I was wrong Ms. Jerue, algebra is useful in the real world.
Wifies: Are Droppers *Actually* Random?
Me: Let Me Guess, No?
I mean, is anything programmed actually random? Is anything in reality even actually random?
@@supC_ fax fax
In c# you can do true random I think as my coding test looped 10billion times showed no discrepancies in change
@@tylergrieve1418 ikrruclips.net/video/EjOYiaZi8go/видео.html
@@supC_ in reality in quantum mechanics there are truly random events
"Download the Jar file"
Alright alright probably just gonna end up as some mod for fabric or forge
"And then install an IDE"
Woah woah slow down there! I didnt think we would be going THAT far.
Would be interesting to pack the whole java stuff as one single executable...
You can definitely just open that on notepad you don’t need a whole ide for it, it’ll just make the colors pretty
@@artusdreimalneun2595 exe files are windows specific. every OS has its own syntax for command terminals. it would be annoying to code for windows, mac, and linux, then have to deal with hardcore raspberry pi and such fans complain (you would be surprised by how many of them there is and how vocal they are about small things that are completely their fault for using a raspberry pi). It could be easily done however to have the universal jar file just have an input system like the dropper seed cracker, instead of having to change the variables within. It isn't too much extra work to add.
@@artusdreimalneun2595 or even just a webpage
From what code he showed us I think it's possible to crack droppers in any programming language will check tho (have to include my fried who has java edition as I don't lol)
potato potato, irish potato
spaghetti is flacid, and i’m on acid
@Matthew Stewart why did you say that
Wwoooow me too
same
...what?
@@tgapcharlie ikrruclips.net/video/EjOYiaZi8go/видео.html
7:04 the fact that his voice audio stays from the change of clip means that he talked over so he could’ve just looked at the clip
Right, like it's a good video but the "prediction" was really lame
No one actually carea, but he still manages to make it interesting...
I care
Carea
lmao yep thats the idea
cares also I care this is so cool
*cares
3:18 Wifies: Or is it?
Vsause music: Allow me to introduce myself.
Wifies: computers can't be competely random
Me being big brain: nothing can be completely random
That's not true. Quantum effects seem to be entirely random.
Players are the most random part of any game
Time it takes for radioactive components to decompose is random.
I've seen alot of randomness in video games but every game I saw can be rng abused I mean ANY game with randomness can be rng abused
actually, computers can be random. Minecraft just uses a low level of randomness that can be easily cracked
"if you have ever taken third grade math you'll know that this is impossible"
my school system which teaches this in their algebra 1 course that is meant for 9th graders: you're saying you're teaching THIRD GRADERS this stuff?
Yeah same I’m taking it in 7th tho
Damn that's weird. In Russia it's like 3rd grade - in 9th grade you usually analyze functions (mins, maxes, zeroes, derivative, etc), solve simple equations with logarithms and trigonometric stuff and do some geometry on the side.
@@kyle.m935 Yeah kudos to the competent people who manage the school system and allow people to skip levels
@@George_Haldane I feel like this is one of the reasons America is lagging behind in terms of general education, as although there are many extremely talented people, the general population has been shown to be behind a bit
@@anthonyluo12 Probably because they're teaching this stuff at an early age e.g. 3rd grade
And that makes the general population forget all this stuff
Mad respect to wifies for taking this amount of time to learn about this and create a highly interesting video :)
You can see the seeds in a hacked client, to find a lot of random things(droppers, enchanting tables), even on multiplayer.
clientcommands
Wifles: *Says a statement that most people believe to be true*
Me: *Waiting for the "Or are they..."*
Wifies: it is quite easy
Also Wifies: *hakker stufff*
It is quite easy
For future videos on files, on Mac:
Open up Finder. In the menu bar at the top of the screen, choose “Go” and hold the option key. With the key held down, choose “Library”. Enter the following folders: Application Support>minecraft>etc.
I could make a screen recording if needed
thank you so much wifies for listing every song you use in your videos, Ive been looking for the song at 1:20 for ages🙏🙏
Wifies-“Droppers are really predictable”
Bedrock edition-“I am four parallel universes ahead of you”
What makes bedrock edition more random?
@@aidenlilley1319 Redstone mechanics.
Although I think he meant the exact opposite in that droppers are actually easy to predict in Bedrock. I'm not sure though
someone will find out how to do it soon..
Amazing effort and accurate information while also making good content. I'm proud of you for coming this far and I hope you go further! Another video idea I would suggest is Minecraft Loot Generation.
Wifies: Are dropper really random?
Me: You have made me rethink my entire existence
chicken randomizers can be used if you have 2 blocks above the ground, enclose the top block, then make 2 holes with pressure plates. you can then summon the chicken and use an arrow or some form of damage (i usually use a command to summon an arrow). then it can fall to 1 side on command. Afterward, the chicken can be killed. However, this of course would be much better ib creative, but it can be used in survival if you have a lot of chickens or you lead back the same chicken to the top every time.
Cats: meow
Dogs: woof
9-year-olds: *FIRST FIRST*
Hotel: trivago
unoriginal people: [these comments]
7:11 legit thought he was gonna say the entire bee movie script
if u dont get the equasion thing then:
in coding "=" does NOT mean "is equal to" but it means "make the value to the left of the "=" have the value of the right"
so if i write "x=1;" it will assign "1" to "x"
if i write "x=x+1;" it will increase the value of x by 1 (x is now 1 more than it was before)
PS:
if you want to do what "=" does in normal math, you use "=="
so for example if you want to check if "x" is equal to "1" you do
"x==1" (it wont do anything since its not in any function now, but it can be used like this):
if (x==1){
Do some thing;
}
else{
Do some other thing;
}
this means:
if "x" is equal to "1" then it will do some thing, if its not true, then it will do some other thing
C++ is confusing
Wait to assign a variable you use ‘let var = …’
I KNEW IT, whenever i dispensed something i would notice certain slots dispensing more often i always thought they weren't all that random thanks for even more info!
Well nothing is random exept for some quantum effects
Stuff's just chaotic
Or is it predictable, and we just don’t know how to predict it?
@@JMill937 That's a likely scenario
Though the kind of predictable might be something we'll never understand, like a ton of other quantum effects we don't get (yet)
In case anyones curious: the "mod 2^48" that was seen in the formula shown is called modulo arithmetic, which is a system of partitioning infinite discrete element sets into a finite set of subsets. For example, take the set of integers modulo 3. In this system, 1 = 1, 2 = 2, 3 = 0, 4 = 1, 5 = 2, 6 = 0, 7 = 1, 8 = 2, 9 = 0 and so on. This effectively sorts all the integers into three distinct equivalence classes: [1], [2], and [3].
So, in mod 2^48, this means that there are 2^48 distinct numbers that X can be. Once it reaches 2^48, it will cycle back to 0 and count up from there again.
I'm a math major, not a compsci major. So there could be some computer wizardry going on that I'm unaware of. But from a mathematical perspective, thats what mod m represents
This guy : reavels about secret mechanics
Mojang : he is too dangerous to be left alive
Hire the hitman
I love these videos and your music choices so much, keep them coming!
The next thing you know: are endermen just trying to protect us when they attack us?
Such an underrated channel dude
Glad i found it
Droppers/Dispensers in a nutshell: give me the diamond.
*Proceeds to give me wheat seeds for 10 minutes
sad that you had to try so hard to keep people engaged through the programming part. I was very invested. As many people have said, it is really quite simple. The simple things just end up making a complex whole. Also, that IDE looks better than the one I currently use so I will check it out. amazing video. good job to you and the others who figured this out. I always knew that minecraft wasn't as random as many games, but I didn't realize it was *that* bad. that is literally not random at all. I remember the old chunk based rngs they used and how abused they were. basically everything was derived from chunk seeds that could be controlled by loading and unloading certain chunks in your world, typically where a structure (usually woodland mansion), tried to generate but failed. If this dropper seed is connected in any way, maybe rng farms could be possible again in 1.16. I doubt it though. I am sure captainWutax has already talked to johnny elgamer about maybe new ways to make manipulators like they did in 1.12. Who knows what the future holds? well, I do know that this dropper I am looking at will dispense from the third slot upon next activation lol.
Next video is gonna be "is minecraft actually *minecraft*
THANK YOU! I was wondering about this for the longest time!!
Wifies: not random
Me: haha minecraft bedrock random go brrrr
It is impossible for code to generate a truly random number. Now you can base it off of time, weather, the amount of clouds in the sky, etc to make it seem more random. But if you know those exact things then you can predict the random output
@@aozzya1563 someone hasnt heard of quantum physics
@@coolguy284_2 I've heard of it but if I'm being honest don't fully understand everything.
@@aozzya1563 you are the first person on the internet to admit they don't fully understand quantum physics. Thank you for your honesty. Cheers.
@@coolguy284_2 anyone want to try to convince Mojang to use quantum random number generators for minecraft? I'll sign the petition
I love how this channel's videos are both jokes and serious. Some are only one, others are both.
"I predict the order the wool will come out is as follows" - The voiceover that was recorded *after* seeing the result...
If droppers having orders, it feels like a car engine, being having piston firing orders.
When I saw the title, I immediately thought of Skeppies lol.
"and on a mac, idk. you'll have to look it up"
the most relatable quote i've ever seen in a tutorial
Everyone: Talking about the dropper
Me: What happened at the end of the background footage at the end 🤔
I love how Wifies just says "or are they?" in every video
It makes me think and I love it :P
Me, a programmer: no, it can't be, but it is really good at being near random
but what if they used a quantum hardware randomizer
@@jacksonmagas9698 lol
Lmao sure
Wifies: learns to predict droppers
The mumbo jumbo rock paper scissors game: ah darn it
Answer:MAYBE
Lol
MAYBE
Just maybe
I mean, people in Melee have been manipulating a similar RNG function for over a year now. Makes you wonder when the largest game community will catch up with them (I'll give it... probably never, tbh).
Wifies is just explaining complicated things, and
*intense skywars noises*
I love the randomness, no one thought of this and we all wana know
So. Let me get it clear. This was a random video, with a random topic, talking about randomness... Right? Or i am just losing braincells?
@@zpanazura braincells are there
I love your vids man. Keep up the good work
I have always wondered that but i have never googled it 🤔
“Or are they?”
-Wifies 2020
In all seriousness you’ve become the Minecraft Game Theory, and I love it
bruh i believe you they arent random but like 7:10 you prove nothing since it's a voice over
6:22
The bats can also be used. This is the only function of bats.
You can also use them as noise machines
@@sybro9786 LOL
Are we ingnoring the fact that wifies is really, really good at Skywars?
Wifies: The VSauce of Minecraft
Petition for Wifies to Get into MCC
I'm not smart enough for math, so a good chunk of this video just went over my head.
Nah, everybody’s smart enough for math, it’s just that it gets taught in such an ass way, its magical if you have the right teacher and have the patience for it
Literally nothing is "actually" random in a game, the best "randomisers" are those that run on real life time (including milliseconds) in my opinion
there are randomisers that use weather data, and if that's not predictable enough then there's hardware that uses different types of quantum decay to produce a truly random output
@@wewladstbh randomisers on time or so simple to create, but I imagine people have already made certain classes to make it incredibly easy to use those types of randomisers too
Gaming RNG is generally very similar to what he described. Here's the equivalent function with Melee:
seed = ((seed * 214013) + 2531011) % 2**32
(This is simpler than Mario 64, and far more complex than DOOM. You can look it up, it's fairly easy.)
PS: Manipulating in-game RNG in Melee, including finding seeds, is actually a thing for Melee speedruning (with Break The Targets), although in most other games it's solely left for tool-assisted stuff.
I understood the LGC equation perfectly.
Quick facts to help:
1. Modulo is a seemingly complex mathematical operator, but it is just a function that returns the remainder of a division problem. Example: 255 mod 256 = 255. That is the equation that shows how coins are stored in Super Mario 64's memory.
2. The integer 2⁴⁸= 281,474,976,710,656.
I must be really early.
1 view, and there are 12 likes.
*Yep. Thanks RUclips!*
Lol
well, if someone liked and then left before the 30 sec view threshold than that makes sense.
@@Theinatoriinator they removed that, just saying
Very original.
@@AresPro_ agreed
So glad Wutax, Neil and Bolan got a shoutout, they're great
Wifes, The Vsauce of Minecraft.
(Possibly better)
What is vsauce Pls tell
@@saadahmad162 Vsause is like a big RUclipsr that explains world stuff, you can find him searching Vsause, also there are 3 channels with three people part of the same mission, and Vsause without numeros is what I referred to.
@@saadahmad162 basically, he owns a NERD CHANNEL
It’s so cool that you teamed up with captainwutax, didn’t expect some hypixel related youtuber to team up with a really technical youtuber
Hey VVSauce, Wifies Here
YESSIR
bro is really just minecraft Vsauce
True randomness can actually be calculated, therefore it is not true randomness.
I’m not even joking.
"I can predict the order the wool will come out"
*realizes it's on voiceover and the video has a script*
Everyone: first
Me: Does first replies
FIRST REPLIES BEAT THAT!
I got the first reply lol
@@boxily no u didnt
and i am editing this and i feel like i just wooooshed myself for a second or you mean comments idk
minecraft vsauce is the best series ive ever had the pleasure of bingewatching
Hey, Skeppies here! (If you do not think it’s me, check my channel out where I have proof) I just wanted to say that this video is very well done and does a lot of explaining, but I think that your explanation in this video actually helps prove that I was legit in the corner events. I believe this because in order for me to predict what comes out of the droppers next, I would need to dropper seed of the event server in which the corner events took place one, which I didn’t have perms to get even get even if I tried since I was no opped or staff on the server. Not only that but the dropper predictor program you showcased in the video, came out after my 2 event wins, so for me to have done something similar, I would’ve had to code it myself, and if you know me, you would know that I know nothing about coding (planning on learning it very soon). So I had no way of predicting the dispensers at the time.
At the end of the day, I just got lucky, very, very lucky. I haven’t ever been that lucky in my like and I haven’t been that lucky ever since. I guess April was just my month. Again, great video! I really enjoyed it!
He puts so much effort in his videos
I must admit that I firstly subscribed to you because of your videos about hermitcraft but now I am a total fan and would even recommend the hermits to invite you XD
Awesome :D means a lot
Woooooow, the amount of research you put in this video is great!
love that animated fez background for the desktop
.
Finally someone else who noticed it finally hooray
When you realize all of those events use dispensers and you were talking about droppers
Wifies asks the questions nobody else asks, but everyone wants to know the answers to.
Okay. Minecraft and nerdy shit is the BEST and I love these videos. I'm just a little disappointed I don't have very many to binge-watch.
". . . or are they?" is now the line I'm associating this guy with
Droppers: not random
Wifies: **VSAUCE MUSIC**
Wifies: Droppers aren't actually random.
Also Wifies: *Chickens are TOO Random*
This is a pretty crazy feature, I don't think it can be used for anything other than pranking your friends but it is incredibly intriguing. Thanks for enlightening me about this.
Yass almost 150k you deserve this!
Wow that's a lot more subs than when I started! (23k)
Congrats wifies!
For a mac: open finder, press Go in the top left, click “go to folder” and type ~/Library/Application Support/minecraft
that should lead you to the Minecraft folder. If that doesn't work, do this combination: up arrow key, command, and G. Then just type the application support thing and you should be good to go
but in the corners game, there definitely is some strategy because how skeppy did it, he chooses different categories until he finalizes to one corner. you can get a better chance of being not chosen by going in a corner with a subcategory with more corners, if that makes any sense lol.
also skeppies is definatly extremely lucky