Nathan's Sandbox

Nathan's Sandbox

Welcome to my channel! Enjoy plenty of Tutorials and Let's Plays on all sorts of Sandbox games! Hope you enjoy:)
=====
Channel Playlists:
- kzread.infoplaylists
=====
Contact:
[email protected]
=====
Channel Banner & Logo made by:
FoxelAnimation

Пікірлер

  • @beekey9501
    @beekey95014 сағат бұрын

    This comment contains nine words consisting of at least three symbols.

  • @user-zs8oz7wf4g
    @user-zs8oz7wf4g4 сағат бұрын

    Finally a real automationg ame fuck factorio and its "Its already solved just connect the pipelines you CANNOT fail" Simple but atleast there is a right and wrong.

  • @manelmv97
    @manelmv9722 сағат бұрын

    he stopped making more vidoes :( really enjoy how he builts

  • @yurialvesmielli7058
    @yurialvesmielli7058Күн бұрын

    This game is too complex to my tiny smooth brain

  • @terryking1977
    @terryking19772 күн бұрын

    am i crazy or am i seeing some one just skipping 5 seconds forwards

  • @Seniorsneaky123
    @Seniorsneaky1232 күн бұрын

    Oh, this is one of those things where you keep skipping ahead of the gameplay constantly..... 🙄

  • @Dingleberrycrunch36
    @Dingleberrycrunch363 күн бұрын

    Im still in the very early game, how do you decide how many assemblers of each item are needed per belt for the main bus? Example: you use 4 gear unit assemblers per belt. How does the math work?

  • @SHMEFFREYSHMEPSTEIN
    @SHMEFFREYSHMEPSTEIN3 күн бұрын

    dont know why but it doesn't work for me at all, i'm building it the same way but for some odd reason it pumps water to the output and just never lets any through the liquid shutoff

  • @deanfisher1564
    @deanfisher15644 күн бұрын

    Hey Nathan, missing your ONU videos, thought you would have been back by now with the frost planet pack. Hope all is well. ML

  • @der_azazel
    @der_azazel4 күн бұрын

    Just a support comment ❤

  • @jeremysolomon1106
    @jeremysolomon11064 күн бұрын

    Isn't nuclear power bad for UPS on mega bases?

  • @jeremysolomon1106
    @jeremysolomon11064 күн бұрын

    I thought nuclear power wasn't good for mega bases?

  • @loafofuraniumfreshlybaked569
    @loafofuraniumfreshlybaked5695 күн бұрын

    Step number one: Drop two corpses in our freshwater supply. Best of luck, Duplicant(s)!

  • @TheBonzol
    @TheBonzol5 күн бұрын

    closed this when you said you had mods on

  • @SirBobBotsalot
    @SirBobBotsalot6 күн бұрын

    9:50 ish, we can see the scrolling.

  • @Nathans-Sandbox
    @Nathans-Sandbox6 күн бұрын

    Through my videos yes? Totally recommend watching the entire series;)

  • @niniscraft3216
    @niniscraft32166 күн бұрын

    9:48 How many balancers do you need!?

  • @GForceIntel
    @GForceIntel6 күн бұрын

    You don't need all this. I'll try to explain the best way to get rid of germs in water. Place a reservoir in a chlorine room. Add your intake pipe to white on the reservoir which fills the reservoir (in case you are new) now on the output which is green. Place a shutoff valve which needs 10 powèr and a switch with automation to it with the white input down and green up( this is where clean water will come out from) now run a pipe from reservoir green to shutoff white and from white shutoff with white reservoir. This keeps the water going in a loop killing the germs. Now since the switch is off germy water will never go past the intake not unless you flip the switch on a germ pipe sensor to below 0. Wait until water is clean and that's it.

  • @brandonlowder6364
    @brandonlowder63646 күн бұрын

    IM A PINK AND BLU HACKER

  • @armydude142dontunderestima9
    @armydude142dontunderestima97 күн бұрын

    im on episode 6 right now, one day i will catch up to this point 🤣

  • @armydude142dontunderestima9
    @armydude142dontunderestima97 күн бұрын

    this is by far the best walkthrough series i found the other ones suck

  • @SnorlaxCentral1
    @SnorlaxCentral17 күн бұрын

    got back to the game after 2 years. i'm still going back to this design because it's so space and power efficient. It is prob one of the best designs ever made

  • @BROADBANNED
    @BROADBANNED8 күн бұрын

    Got 80 hours in the game and just automating blue sceince. This was a nice starter base. Cant imagine what a megabase would look like.

  • @nmflash8
    @nmflash88 күн бұрын

    How am I not subscribed, I’ve watched everyone of your factorio videos 😂

  • @tomkitchens8022
    @tomkitchens80228 күн бұрын

    Is that a Factory/Outpost planner Mod? Or something in just missing?

  • @muffinmuncher9756
    @muffinmuncher97569 күн бұрын

    would it be a good idea to have the gear wheel train loop to just below it instead of having to go up and around? or would that congest the tracks also 2 years late too the party i know

  • @NatanStarke
    @NatanStarke9 күн бұрын

    I know the effort this big bases take, im in another mega bsse right now trying to make better performance.

  • @rakly3473
    @rakly347310 күн бұрын

    You should use while loops for your harvesting, this will make the code a lot faster as it does not need to go through the entire script every tile. ie def Farm_Wood(): while num_items(wood) < 500: if can_harvest(): harvest() plant(bush) # bush grows on turf and soil, no need to till. Move_East() # function with the logic for when to move east. move(North) def Farm_Carrots(): while num_items(carrot) < 500: Buy_Carrot_Seeds() # fucntion check for seeds == 0, and if so, buy x seeds. In "real" code you'd put this outside the loop and use an array of seeds + error handling (ie try-catch), but that's not available here. if can_harvest(): harvest() if get_ground_type() != soil: till() Move_East() plant(carrots) move(North) def Farm_Hay(): if can_harvest(): harvest() if get_ground_type() == soil: till() move(North) # no need to move east for hay, it grows faster than you can harvest it - I know it seems like there is redundancy in the code, but trust me, the function nested while loops makes the overall execution of the code a lot faster. And, while not applicable in this game, with parallel logic, it helps in preventing the app 's GUI main thread from locking up (aka "is not responding"). Disclaimer: the game state at time of writing is 'work in progress', so everything is subject to change.

  • @jondal
    @jondal10 күн бұрын

    Holy macaroni

  • @linccooldude1616
    @linccooldude161610 күн бұрын

    Thanks for the showcase

  • @nikachelengwt
    @nikachelengwt10 күн бұрын

    i missed old brick rigs 😭😭

  • @COk1ll3r
    @COk1ll3r11 күн бұрын

    super newb question: do you have any tutorial for train signals? in this part you went kinda fast when building the new stations and didnt mention how the new intersections should be configured in terms of signals, so im kind of lost :'( also you didnt mention how many new trains we should add into the system. thanks in advance!

  • @benjaminjames7815
    @benjaminjames781512 күн бұрын

    wheres the code for the list. Im trying to follow along but i cant get past the sunflowers as theres no code for the list

  • @nicknevco215
    @nicknevco21514 күн бұрын

    Best clicker yet

  • @nicknevco215
    @nicknevco21514 күн бұрын

    Cool you can make pulls

  • @MegaMonkeVr
    @MegaMonkeVr14 күн бұрын

    I wish you could get decimals 😂😂😂😂

  • @grimnar6725
    @grimnar672514 күн бұрын

    Im trying to do something like this for gas. I had all the pieces but i dont know how bridge priorities work. This helps a bit. Still probably going to take some fiddling but thats the game 😅

  • @artificial_float2677
    @artificial_float267715 күн бұрын

    I was surprised that you did not not need to pass x and y in the plant

  • @GForceIntel
    @GForceIntel15 күн бұрын

    How can I increase the steam in a room. I leave my aqua tuner in there and no steam ever builds up. And if it does it turns on and off the steam turbine. How do I increase the heat in order to create more steam

  • @avinashkommineni9259
    @avinashkommineni925916 күн бұрын

    Watching from sunny California, US.

  • @husainebrahim3
    @husainebrahim316 күн бұрын

    Where have you been? I hope you are okay, Im waiting for your frosty planet run!

  • @AuRupe
    @AuRupe16 күн бұрын

    that single duplicant is better than me

  • @OliverDrift
    @OliverDrift16 күн бұрын

    Hi Nathan, will you do a new ONI series with the frozen DLC? I want to see it from you and no other youtuber! :D love your work, thanks for the videos! Greetings from Germany

  • @sealyboi717
    @sealyboi71717 күн бұрын

    I was watching this like "Oh hey this guy watched the same Mega Base tutorial series I did". Then I realized that he didn't watch it, he MADE it.

  • @hugo1593
    @hugo159318 күн бұрын

    This is a blatant copy of Shapez.. Just using numbers instead of shapes and colours

  • @nanomeister1625
    @nanomeister162518 күн бұрын

    Fillet in English is pronounced as "Fill-ay" not "fill-it" for some reason. Making my way though your 4.0 playlist and so far im loving it!!! Love the editing. Cant wait to be more up to date with your videos!

  • @phenomenal325
    @phenomenal32518 күн бұрын

    See that's the weird part I don't have access to the blueprints unless I get robots? How are you able to do blueprints at the beginning?

  • @ggp-ok2eo
    @ggp-ok2eo19 күн бұрын

    squeak through is a good mod if you want to do a mostly vanilla run btw

  • @COk1ll3r
    @COk1ll3r19 күн бұрын

    Very helpful bro, thanks!, Always wanted to play factorio but its so overwhelming this guide fits perfectly for me. One minor thing you mentioned no mods initially but then there are mods XD

  • @t4leno
    @t4leno20 күн бұрын

    Could you make a new ONI series with the new dlc?? It would be cool😎

  • @laszlobandi6456
    @laszlobandi645620 күн бұрын

    you can put a liquid reservoir to the toilet system and it gives you a lot of time to figure out what you do with it. like a chlorine room. no loop just store both ends. that and poles are a bit delay but op. also maybe conveyors. gas reservoir too. I started playing again. still getting distracted where I place things. really don't like remaking them. also not helping with random items like animals from printer. feels bad wasting them. also I lose motivation. 5 high room gives me 7-9-11 beds on split level same room. I saw it's better washing hand before eating, especially with conveyor food. even figured out vacuum/chlorine locks for food. I like to have a well for research and dirt on shelf. I guess I need a dedicated level for toilets. 1 sink for bonus, 3 toilet or so. bath breaks and shifts staggered better but I need more toilets everywhere spaced out. my base is a mess. I need a preset system. killed a dupe with volcano, injured 2, made me learn hospital room. maybe need nature reserve in ladder shafts.