ATFC: Big Rotating Mining Machine (Episode 32)

  Рет қаралды 62,355

ilmango

ilmango

10 ай бұрын

Using a bigger contraption to get garnierite
support this channel:
Patreon: www.patreon.com/user?u=4255112
second channel: / @imanghi-ilmangossecon...
Twitter: / ilmango1
Twitch: / ilmango
SciCraft Discord:
/ discord
Outro: Reckless by Olivaw / olivaw Creative Commons - Attribution 3.0 Unported- CC BY 3.0 creativecommons.org/licenses/... Music provided by Music for Creators • Reckless - Olivaw

Пікірлер: 196
@MEXICAN_MADNESS
@MEXICAN_MADNESS 10 ай бұрын
You know something is big when even Ilmango says it's big
@moshelando8150
@moshelando8150 10 ай бұрын
That's what she said
@dumfu
@dumfu 10 ай бұрын
@@moshelando8150 she brings up ilmango she's a keeper
@solidsnakedred
@solidsnakedred 10 ай бұрын
I like your pfp Mr Mexican madness it gives me a big smile
@Heizeyeah
@Heizeyeah 10 ай бұрын
Mango called me big 😮
@joelhemphill8005
@joelhemphill8005 10 ай бұрын
I mean, this is still absolutely tiny in comparison to SciCraft's "big". If the build fits within render distance, it isn't big, smh. (jk jk)
@PiTheGuyAlt
@PiTheGuyAlt 10 ай бұрын
18:40 the reason you couldn’t pick up the cart contraption is because the contraption item would hold so much data, it wouldn’t fit in an inventory packet, so the game would kick you. It would effectively ban you from the server because the client couldn’t get your inventory when you joined the server.
@wChris_
@wChris_ 10 ай бұрын
Thank Create for actually handling this error and simply disallowing you to pickup such data dense contraptions.
@Sphendrana
@Sphendrana 10 ай бұрын
Just as expected. Same thing as holding shulkers full of books with high value characters back in the day.
@Stego27
@Stego27 10 ай бұрын
They should really consider zipping the data and putting it in a base64 string or something. I'd imagine the compressibility of the JSON (especially if it's chests full of the same items) would far outstrip the efficiency loss of B64.
@lucasc8972
@lucasc8972 10 ай бұрын
@@Sphendranaoesn’t that still work on some server softwares? They call them areabans
@Susul-lj2wm
@Susul-lj2wm 10 ай бұрын
@@lucasc8972 actually those are called bookbans. Areabans are when you place signs or heads or something in an area so people entering the chunk get kicked
@docvolt5214
@docvolt5214 10 ай бұрын
I'm an automation designer/programmer, mostly with Siemens, it's amazing how a game can recreate what we do irl. There should be more of these mods/games to get kids into the beautiful world of industrial automation
@Otrsor
@Otrsor 10 ай бұрын
Ive experienced this the other way around, used to playing automation games like this and briefly worked on a factory, was damn surprised how close to my automation real life machines and production lines work.
@DVDplayerz
@DVDplayerz 10 ай бұрын
I was one of those kids (now 24 year old). I had started playing minecraft since the beta and ever since I was amazed by the logic in redstone. Today I mostly dwelve in programming and electronics like microcontrollers, which are very similar to redstone. It was awesome to go to college and learn about logic gates after I had already known about them from minecraft. It had really surprised me about how much I already knew. To this day I still hold a grudge to my sibling deleting all my minecraft saves, most of which had some sort of redstone contraption. Would be nice to basically time travel back to those days and see how my brain used to problem solve back then.
@deadboyo2773
@deadboyo2773 10 ай бұрын
Y'all heard of Factorio, you'll love it
@TheGoodMorty
@TheGoodMorty 10 ай бұрын
@@deadboyo2773 I like Dyson Sphere Program
@sorrynotsorry8224
@sorrynotsorry8224 10 ай бұрын
@@TheGoodMorty There are so many great factory builder games. Satisfactory, for example. Astro Colony is a new one set in space that's pretty damn good too but not a lot of content yet.
@JulianSkies
@JulianSkies 10 ай бұрын
To clarify a thing for you: "Contraption too big" error is based on the size of the NBT data. If you pick up an object with too much NBT data it corrupts the entire save file, so Create has a thing where it doesn't let you pick up a contraction with a gigant NBT. IT's not even number of items, if there's a chest with just a few items with a giant NBT then it'll still be too big
@Nevir202
@Nevir202 10 ай бұрын
Must be interesting code for handling that, basically simulates creating the item, checks its size then returns an error if too large, or else creates the item? I'm surprised the contraptions themselves don't create chunk ban issues.
@hjagu1323
@hjagu1323 10 ай бұрын
​@@Nevir202in code it should be able to create the minecart item and see if its to big. Only when put in an inventory can it create issues.
@mhelvens
@mhelvens 10 ай бұрын
I haven't done any Minecraft mod programming before, but can't they store the content of the contraption elsewhere, and just have the NBT data be a reference to it?
@kekw9716
@kekw9716 10 ай бұрын
@@mhelvens Funny story, before this "Error" was set, you could pick it up, but the consequence is that your player data is too large and the server simply rejects any requests from you, basically banning you unless you clear your player data(aka: lose everything in your backpack)
@matiastripaldi406
@matiastripaldi406 10 ай бұрын
Couldn't you make the whole machine into a minecart contraption and take it with you so you don't have to rebuild it for each vein?
@gregb7881
@gregb7881 10 ай бұрын
Yes, it doesn't look like he's planning on rebuilding it though.
@angelorondini5835
@angelorondini5835 10 ай бұрын
I think it's too big
@solidsnakedred
@solidsnakedred 10 ай бұрын
It can't store all the data if I understand correctly it would basically overload the server or client and kick him from the server bc of the sheer amount of data packets. Basically a book ban or classic book ban
@fordalels
@fordalels 10 ай бұрын
@@solidsnakedred as long as the chests and alll arent on it then it should be fine, it would essentially just be the blocks of everything arranged in a schematic. the issue with the chests on the minecart is that it has all the data of like thousands of stacks of items that could absolutely mess up the player data
@gregb7881
@gregb7881 10 ай бұрын
@@fordalels Having chests on a minecart are fine, you just can't go too big or create will stop you. MrRoboticwarfare made a simpler machine on a minecart that dug a square straight down with chests on top and it was fine. Mango is just digging too big of a hole all at once.
@jmfe10
@jmfe10 10 ай бұрын
Ah yes, another ATFC episode that ilmango builds a demonic spinning contraption
@filiprandom
@filiprandom 10 ай бұрын
I think I am genuinely addicted to ilmango. Like every other day I know he tends to upload and I walk around actively waiting for the video to come out, then when it finally does I get really relieved and relaxed as I can now watch ilmango 😌
@m1.r0_bot
@m1.r0_bot 10 ай бұрын
on whichever side you click with a wrench, around that side your block will rotate (clicked side will stay on the same way while the others will rotate clockwise)
@duartedias271
@duartedias271 10 ай бұрын
Oh, like a real life wrench!
@eclogues_
@eclogues_ 10 ай бұрын
omg I've been playing Create for over a year and didn't know this until your comment. thank you
@devchary9087
@devchary9087 10 ай бұрын
Ive found scaffolding out of create blocks (like andesite or brass casings) is very nice as you can use the wrench to instantly pick them up
@AlbusRegis
@AlbusRegis 10 ай бұрын
The rotation rule is actually very simple, the blocks rotate on the perpendicular plane to the face they are clicked on. If that does not sound helpful imagine that you twist the block you are looking at like the side of a rubik's cube: if you click on the "green face" you will still be looking ath the "green face", but now the "red face" is on the side instead of on the top.
@AkiSan0
@AkiSan0 10 ай бұрын
thanks, i will try to remember that as well :D
@enderdragon2233
@enderdragon2233 10 ай бұрын
Does ATFC have mango trees? It would be fitting for your main source of fruit to be mangoes.
@_earlyworm
@_earlyworm 10 ай бұрын
i designed one of these a month ago: you should be able to use a rope pulley and bearing attached, glue the pulley to the bearing and the bearing contraption to the drills, control speed to the pulley to control drill head rotation speed. after testing, the drills at the edge of the spinning head go WAY faster (can exceed 256rpm) than the center ones. the pulley will extend when it can, meaning no need for a piston or shafts. the chests can remain at the top too since it’s all one contraption. if u wanted to make a sort of inch worm flying machine with gantry shafts then u could move the whole pulley-chest-drill assembly as one. it’s low stress, faster, retractable, cheaper, more convenient, and you could attach it to a train if u got creative
@duartedias271
@duartedias271 10 ай бұрын
Yeah I was thinking the same. Mango definitely over engineered this one
@davidbrism428
@davidbrism428 9 ай бұрын
This is super interesting but I'm a little confused. So the bearing's above the pulley, rotating the pulley itself... or the pulley lowers the bearing which rotates the drill assembly down the bottom. In both these cases how do you supply the moving part with the rotation?
@TheDuck309
@TheDuck309 9 ай бұрын
how did you power the bearing to make it spin the drills with a pully?
@davidbrism428
@davidbrism428 9 ай бұрын
​@@TheDuck309 Managed to figure it out. Bearing on top facing down onto pulley. Shafts into 2 perpendicular sides of the pulley, one shaft from on top into bearing. Use clutches to make sure only bearing, or only pulley is spinning. Every time the bearing stops spinning and places the pulley, there's always a shaft spinning for the pulley. Works a treat, looks great, tho using a non-spinning drillhead with more drills and just a pulley is prob faster and easier to build. Bit of work each time with glue, or maybe try the create sticky block to make it one contraption for minecart pickup. Note gearboxes change rotation direction depending on placement orientation. So if you use em for 90 degree corners you'll need some gearshifts with levers otherwise the machine will break placed E-W, or N-S etc. (whichever direction you didn't build it).
@maxwiz71
@maxwiz71 10 ай бұрын
Early in the series I probably knew more about Create than Mango. Now!! 😂 He's gone from nearly novice to expert in a few weeks.
@MrCalls1
@MrCalls1 10 ай бұрын
Still loving the series. I think I’m happy to see the automated everything cobble gen at some point. BUT. …. I would find it much cooler if your train network connected a whole bunch of mega mines where you just chew up the ground.
@martinw51
@martinw51 10 ай бұрын
I agree
@martinw51
@martinw51 10 ай бұрын
Maybe there would be benefit in creating a perimeter for a mob farm? Could be a nice long term project
@Snidbert
@Snidbert 10 ай бұрын
thank you ilmango for building an enormous mining drill
@mrspeedysmax64
@mrspeedysmax64 10 ай бұрын
Ahh, a fellow ISAb viewer, I see!😂
@Snidbert
@Snidbert 10 ай бұрын
@@mrspeedysmax64 thank you mrspeedymax64 for reading comments on ISAB videos
@HAL_9001
@HAL_9001 10 ай бұрын
A couple years ago I built my base in a 32m radius hole I dug using a single row of drills and a windmill running at 4rpm so it wouldn't skip blocks. I'm glad yo see someone figure out a faster way!
@Cuzwainaut
@Cuzwainaut 10 ай бұрын
this really brings me back to the old buildcraft quarry days... i could watch this thing mine for hours
@bengoodwin2141
@bengoodwin2141 10 ай бұрын
A tip for trains: furnace fuels in the train inventory (and not in a vault) speed it up and consumes the fuel
@azumanguy
@azumanguy 10 ай бұрын
The thumbnail is amazing already. What a time for TFC
@devchary9087
@devchary9087 10 ай бұрын
Im just curious, but can you splice saplings with other types? ie: lemon and apple?
@mrShift_0044
@mrShift_0044 10 ай бұрын
yes, this is how splicing works in real life.
@TrueNargin
@TrueNargin 10 ай бұрын
You probavbly won't need it anymore but in my experience, Garnierite is more common in the second stone layer deeper down. It's actually kinda sad you can get everything from a cobble generator but at least automating it all will be a challenge. Maybe not the cobble itself but dirt and clay later is kinda hard or at least it was for me.
@filiprandom
@filiprandom 10 ай бұрын
Honestly not so bad though, it might end up being a bit like factorio, where you get an input of different ores and have to smelt and automate the ingot production of all different metals and alloys. I can imagine rather complex systems forming once you try automate it all.
@Layotu
@Layotu 10 ай бұрын
I wish you'd show the creative designing, it's always interesting.
@bondsmatthew
@bondsmatthew 10 ай бұрын
Mango, any other youtuber that says this amount of redstone "will last a while" I know is joking around because that would last them the entire series
@gobelgomen4143
@gobelgomen4143 10 ай бұрын
The progress between each episode goes crazy 😂
@thelonelybritV2
@thelonelybritV2 10 ай бұрын
Give it some time & ilmango would make a World Eater quarry that crafts new shafts & piston extenders for itself. Who needs flying machines & TNT duping if you can just drill away thousands of blocks per minute?
@dukeandnukem9654
@dukeandnukem9654 10 ай бұрын
This series is amazing, thanks boss
@uku4171
@uku4171 10 ай бұрын
I actually made a fully autonomous mining unit using Create a while back that builds its own path horizontally with gantry shafts and moves moves back and forth to deposit items. The only problem is that it uses the wireless redstone links from Create which have a range of 250 blocks, so that's the length limit. I'm sure you could find a workaround for that though. I am kind of bad at explaining it, but I can upload a video of it on my channel.
@cobaltbluesky2276
@cobaltbluesky2276 10 ай бұрын
"i wonder when we'll see the first garniarite" *1 second later* "nice we found the first garniarite"
@mateus565
@mateus565 10 ай бұрын
lesgo, I dont have to postpone my sleeping schedule because of late night ilmango episodes xD
@garbagedataraccoon
@garbagedataraccoon 10 ай бұрын
This series is very interesting to watch.
@TwentySeventhLetter
@TwentySeventhLetter 10 ай бұрын
The Aged Alcohols addon for TFC just got updated to 1.18.2! I hope they add it to the ATFC modpack, I know how much mango wanted his liquor cellar
@KM____________
@KM____________ 10 ай бұрын
Cant wait to see a miner that just goes off chunk by chunk out into the distance aha
@KM____________
@KM____________ 10 ай бұрын
could set the drill up alongside the train track, and then you just move it up when you need more minerals. getting close to fully auto mining! like you have a station at base that does the cobble crafting and crushing. I dont know anything about the mods, but im starting to see the potential industrialisation haha
@benhamoudamoez735
@benhamoudamoez735 10 ай бұрын
i love ur frequent updates
@tomgidden
@tomgidden 10 ай бұрын
Apparently when you wear blue steel armor, it’s impossible to turn left.
@sorrynotsorry8224
@sorrynotsorry8224 10 ай бұрын
There are going to be kids here that don't understand this reference.
@Gandhi_Physique
@Gandhi_Physique 10 ай бұрын
@@sorrynotsorry8224 I'm not a kid and I don't get it lol
@sorrynotsorry8224
@sorrynotsorry8224 10 ай бұрын
@@Gandhi_Physique Zoolander.
@Gandhi_Physique
@Gandhi_Physique 10 ай бұрын
@@sorrynotsorry8224 Ah. I don't really watch movies lol
@TwentySeventhLetter
@TwentySeventhLetter 10 ай бұрын
that was an incredible joke, my god
@chaoswarriorbr
@chaoswarriorbr 10 ай бұрын
Nice. Reminds me of the mining machines in Space Engineers (RIP💀💀), but more interesting and challenging. I wonder if it would be too complicated to set up a big windmill to do an autocrafter for cobble to save up on chest storage. That short of going crazy in pushing the resources up with air (probably unfeasable due to how high you can blow items) to catch and process
@rumblehansi
@rumblehansi 10 ай бұрын
Space Engineers Vibes x)
@sween187
@sween187 10 ай бұрын
A mining matching / tracking laying machine, this way you train will be on the level
@layla_solomon
@layla_solomon 10 ай бұрын
what a terrifying machine
@ehotblch9602
@ehotblch9602 10 ай бұрын
This one looks way cooler than the previous one
@arthaiser
@arthaiser 10 ай бұрын
that blender design is very cool, makes me thing about that first perimeter that you made that was also circular. have to say that you should work towards both blue and red steel, since red buckets only pick up water and blue ones only pick up lava if im not mistaken, so you are going to need both to make the cobble generator, or rhyolite generator. good thing is that you only need one anvil and one hammer to work both types, which saves around 15 ingots, and these ingots are worth saving, since each red and blue ingot takes a black ingot apart from the rest of the recipe to make it, and each black takes basically a steel one so is really saving 45 ingots
@packediceisthebestminecraf9007
@packediceisthebestminecraf9007 10 ай бұрын
to make a cobblestone generator, a blue steel bucket is probably enough though, because he could just use aqueducts to bring water to his cobble generator.
@arthaiser
@arthaiser 10 ай бұрын
@@packediceisthebestminecraf9007 yes, for the rhyolite one he only needs the blue one, but for the gabbro one he does need the red one, too, and i feel like once you are aiming for one you should be aiming for the other too. in fact i have some math made of how to make 20 red and 10 blue steel, will post it here maybe someone has an use for it: (blue) +5 black steel (50) +1.5 bismuth b(15) +2.5 steel (25) +1 steerling silver (10) (red) +10 black steel (50) +4 steel (20) +3 brass (15) +3 rose gold (15) this would get you 20 red and 10 blue, the 20 red are 14 for the anvil then you have 3 buckets. the 10 blue can be 1 hammer 3 buckets and you get 3 spare ingots to make a pick and axe and some other thing. of course you need another 30 black steel made apart from the black steel needed here. and the .5 amounts is by sawing an ingot.
@JavierSalcedoC
@JavierSalcedoC 10 ай бұрын
The base must grow
@marcusswingle8627
@marcusswingle8627 10 ай бұрын
This machine is absolutely insane! But you could do a similar thing for way less effort. Using the machine from a cart where it turns it into an entity is easier I think. Since it is an entity it will go through blocks. You just need to place rails on the surface and have the machine extend down into the terrain.
@sipiersx5948
@sipiersx5948 10 ай бұрын
ilmango might be the only one that could calm me while he's killing an entire family of wolf
@mhelvens
@mhelvens 10 ай бұрын
Awesome machine! Haven't seen something like this done with Create before.
@outasi_official
@outasi_official 10 ай бұрын
Crazy how just mining a bunch of cobble in bulk and crushing it is soooooo much more worth it than even mining veins of ore
@TwentySeventhLetter
@TwentySeventhLetter 10 ай бұрын
At least pitiful veins like that one to be sure. But yeah it's very satisfying watching all the resources flood in just from digging up the ground
@asseenontv247
@asseenontv247 10 ай бұрын
I've been behind for weeks, but I finally caught up.
@physicalnova2965
@physicalnova2965 10 ай бұрын
Using a steam tank and coal on the train can make it go much faster, it's really useful but kinda expensive
@Halinn
@Halinn 10 ай бұрын
Next time, bring the stuff for two minecart contraptions to carry things?
@owenschulz9504
@owenschulz9504 10 ай бұрын
The tips of the mining machine were moving almost 1500 km/h
@M4nHun73r
@M4nHun73r 10 ай бұрын
you could do something to dig a big trench, and a machine like this behind it to get the ores. run both machines on rope pulleys and gantry shafts :) i was also wondering about a flying machine that can place gantry shafts in front of itself and mine them up behind.
@lilpixie25
@lilpixie25 10 ай бұрын
At least you left a clean hole behind. XD
@fietae
@fietae 10 ай бұрын
I love how ilmangos biggest problem with create is that he's OVERengineering everything
@ebsolas
@ebsolas 10 ай бұрын
Man you really don't get that kind of on the spot puzzling like that glue issue in vanilla. That was clutch.
@Spiderbeeen
@Spiderbeeen 10 ай бұрын
Holy shit that thing rotates fast
@arekusaN
@arekusaN 10 ай бұрын
Really love this series and it's what made me play the modpack myself :D Could you provide a list of the mods you are using?
@greyw0lv
@greyw0lv 10 ай бұрын
wrench rotation rules are very simple: right click rotates the block CLOCKWISE about the face you clicked.
@jackmanblue9373
@jackmanblue9373 10 ай бұрын
I am absolutely rabbid for this series
@spicysand5085
@spicysand5085 10 ай бұрын
I feel like it would be worth it in the long run to hook the cobble washing setup directly into the crusher. The less steps you have to do yourself, the better, right?
@Cyberguy42
@Cyberguy42 10 ай бұрын
I had the same thought. If there is anything produced by washing that shouldn't be crushed it can just be filtered out
@BootyliciousSWC
@BootyliciousSWC 10 ай бұрын
I didnt expect a new episode today, god im in looooveeeee
@nexivy
@nexivy 10 ай бұрын
I am wondering if you can add an autocrafter, or a press to compact the stone into cobble for space would help, or is it not feasible.
@spacetextadventure5619
@spacetextadventure5619 10 ай бұрын
Would be cool to see this machine flipped horizontally and used as a TBM to make a subway tunnel for the Create trains. Might not really be useful though.
@packediceisthebestminecraf9007
@packediceisthebestminecraf9007 10 ай бұрын
yeah, it's probably easier to just make a minecart contraption for that, because it could move forwards automatically much faster and wouldn't be limited by simulation distance...
@xyznihall
@xyznihall 10 ай бұрын
great video
@philbarbato
@philbarbato 10 ай бұрын
I still can’t get over the bucket being an end-game item in this modpack. I guess it keeps you from getting a cobble gen too fast, but it still feels ridiculous. Like, wooden buckets exist irl. 😂
@jasonrodriguez3618
@jasonrodriguez3618 10 ай бұрын
TFC mod just makes the game more tedious than anything else. He’s built a functional train but a bucket is still out of reach lol.
@calvindang7291
@calvindang7291 10 ай бұрын
Wooden buckets exist in TFC too. It's just not a *metal* bucket.
@philbarbato
@philbarbato 10 ай бұрын
@@calvindang7291 okay but you can’t move water with a wooden bucket? 🫠
@filiprandom
@filiprandom 10 ай бұрын
@@philbarbatoa wooden bucket in real life doesn't make an infinite flowing water source, so really the metal bucket making infinite water in ATFC is quite the priviledge
@bobbobkilu
@bobbobkilu 10 ай бұрын
fyi, you can turn the face of a mechanical piston or chasis sticky by just right clicking the face with superglue. Doesn't even take durability.
@goldminingzone5560
@goldminingzone5560 10 ай бұрын
O Nice a New atfc episode
@Jaydee-wd7wr
@Jaydee-wd7wr 10 ай бұрын
The upper limit on number of items is to stop a bug that has something to do with too much NBT data from memory, if you could have more you would end up book banning yourself.
@duartedias271
@duartedias271 10 ай бұрын
Couldnt you adapt this machine to use a hose pulley? Just like you did with the other machine, it should power the mechanical bearing no?
@IsaacNomad-mv6pv
@IsaacNomad-mv6pv 10 ай бұрын
In my opinion the best quarry I ever saw was one made by J70.
@asafwallach9236
@asafwallach9236 10 ай бұрын
Wow that machine looked sick! Did mango desigh it?
@grezamisoit
@grezamisoit 10 ай бұрын
thx!
@EuropesNinja
@EuropesNinja 10 ай бұрын
youre the king
@prodigylock422
@prodigylock422 10 ай бұрын
I've seen designs where you can use a rope pulley and then rotate the pulley block itself,
@homespunheroes
@homespunheroes 10 ай бұрын
Hey, heads up! There's a bug in this version of Create for the Hose Pulley. Be careful when using it!
@TheFlyingCrocodile
@TheFlyingCrocodile 10 ай бұрын
it spins
@recouer
@recouer 10 ай бұрын
i tried to do the same on my creative world but i can't seem to break the blocks under the mechanical bearing
@tunamc5759
@tunamc5759 10 ай бұрын
Love it !!!!
@hoveringgoat8061
@hoveringgoat8061 10 ай бұрын
cobble washing is so powerful. 24 ingots of ore from the vein and 100's from the cobble (1000s?). Yeah its from a big mine but thats easy to automate. I feel like why would you ever even look for minerals after you can wash. Just find the nearest correct stone type.
@hoveringgoat8061
@hoveringgoat8061 10 ай бұрын
and once you automate a cobble gen you can renewably produce just about any cobble type. Need to fully automate steel production and make a billion rails. For reasons.
@defeatSpace
@defeatSpace 10 ай бұрын
Ludicrous!
@theglichedbear
@theglichedbear 10 ай бұрын
ok, who let ilmango cook?
@devilmok
@devilmok 10 ай бұрын
for a moment I thought he got mohawk on the head
@caittastic
@caittastic 10 ай бұрын
if you used a rope pulley instead of poles, you could pull it up automatically
@ICountFrom0
@ICountFrom0 10 ай бұрын
Didn't it used to be that blue steel buckets could move water sources, and red steel buckets could move lava sources, but they couldn't move the OTHER one?
@squorsh
@squorsh 10 ай бұрын
I think it's the other way around, but that's still how it works
@skeleporter3621
@skeleporter3621 10 ай бұрын
the wrench rotates the face you click on clockwise by 90 degrees
@nurrohmadi7852
@nurrohmadi7852 10 ай бұрын
i always wondering why don't you just add drill on top of the drill you used to mining in a couple last episode, so then it wont stuck when it get pull up.
@dronicx4002
@dronicx4002 10 ай бұрын
there's something I've been curious about ever since mango did that blink up the ladder in one of the earlier episodes... there is a mod that lets you right click the bottom of a ladder with an empty hand and it'll take you to the top of it instantly. I think the same goes for if you right click the top of one to go down. there was a mod like that in a 1.12 modpack I played back in the days and I'm wondering if that's been updated and included in atfc and was the cause for that blink way back when. it'd surely make ladders less... obnoxious in future if it's there. doesn't hurt to just try right clicking the ladder with an empty hand when given the chance. if it works it works.
@maximodelavega6421
@maximodelavega6421 10 ай бұрын
When was this episode recorded?
@azafreak
@azafreak 10 ай бұрын
Oof speedie
@agmenos47
@agmenos47 10 ай бұрын
drilling fan
@seagull2204
@seagull2204 10 ай бұрын
You forgot to add the new episodes to the playlist after the 17th one
@ognjentatomir3252
@ognjentatomir3252 10 ай бұрын
Hi, how can I play this modpack?
@MisterUnconcerned
@MisterUnconcerned 10 ай бұрын
I can't tell the difference between Blue Steel, Red Steel, LeTigre, or Magnum.
@michael04__806
@michael04__806 10 ай бұрын
W
@peaceplays42
@peaceplays42 10 ай бұрын
Can you still build a sluice?
@789costela
@789costela 10 ай бұрын
@ilmango if I was you, I would warn aboute eleptik sezure. Cuz I feel when those wheels spun it flashed a bit to much...
@racernatorde5318
@racernatorde5318 10 ай бұрын
Good point. I had several instances of Create machines myself that were really unpleasant too watch. Even a basic belt running at a high speed is already really unpleasant to watch
@maxchronos4567
@maxchronos4567 10 ай бұрын
Im envy,
@gulmorte
@gulmorte 10 ай бұрын
Client mods for vanilla😂
@helyushd6943
@helyushd6943 10 ай бұрын
why dont you make this entire structure a train and move it around? you could just place this drill anywhere you want and just carry it around
@Erik-pu4mj
@Erik-pu4mj 10 ай бұрын
21:56 So veins are irrelevant mid-late game by a lot.
@AkiSan0
@AkiSan0 10 ай бұрын
eh no, it depends on how you build your mining machine and what you like. i have a 16/16 hole digger and i just love to hunt veins. once you have the center, put the contraption above and get the core of the vein, repeat until its gone. im already at 8k gold ingots.... so yeah, its easy with create..
@iceteee95
@iceteee95 10 ай бұрын
pity that there is no need to automate all this. I would find a production exciting, in which an infinite number of raw materials are automatically mined and trains are taken to a factory, where ingots would then be manufactured. everything fully automatic
I Built 300 Hours in Creative Mode
20:47
shovel241
Рет қаралды 142 М.
GADGETS VS HACKS || Random Useful Tools For your child #hacks #gadgets
00:35
Süper ❤️ Cute 💕💃 #dance
00:13
Koray Zeynep
Рет қаралды 22 МЛН
skibidi toilet 73 (part 1)
04:46
DaFuq!?Boom!
Рет қаралды 30 МЛН
ATFC: Whiskey Cobble Generator  (Episode 36)
30:17
ilmango
Рет қаралды 52 М.
I re-coded Minecraft, purely for MAXIMUM FPS
11:26
Element X
Рет қаралды 83 М.
ATFC: Testing Powder Kegs And Finding Diamonds (Episode 35)
32:40
Minecraft's History of Mega-Builds
12:14
Sipover
Рет қаралды 3,7 МЛН
ATFC: Fast Saw Blade Mob Farm (Episode 43)
32:15
ilmango
Рет қаралды 47 М.
Hermitcraft 10: Episode 15 - PERMIT CHALLENGES!
43:06
Grian
Рет қаралды 805 М.
ATFC: Progressing To The Final Metal Tier (Episode 34)
28:42
I Coded a Minecraft Update in 7 Days
20:07
Whimzee
Рет қаралды 264 М.
Help me save The Bee 😭🙏 #shorts #minecraft
0:44
Natop Shorts
Рет қаралды 11 МЛН
Can BRAWLERS SURVIVE in The SMOKE BATTLE!?🤯 #brawlstars #bs #shorts
0:34
KINGS OFFICIAL YT
Рет қаралды 6 МЛН
POV: You Used The Squid Games Cheat
0:12
Agbaps Shorts
Рет қаралды 39 МЛН
Phases of Grief Smiling Critters double
0:13
5G Vision
Рет қаралды 5 МЛН