Search results

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord
  1. Z

    Best lagfree sorting system? Pipes vs Tubes

    What sorts of problems have you run into? I'm curious, because I have just started a system. It's got 5 dedicated industrial steam engines from one of my boilers set aside to power (you know...growth potential). Last night one of our folks fired up three quarries to rip apart a couple of...
  2. Z

    Need Assistance With an Automated Boiler

    It does, you are right. I missed where you mentioned it was an LP boiler. Those are much easier to heat up.
  3. Z

    Need Assistance With an Automated Boiler

    I doubt barrels will work (if nothing else, you're only supposed to be automatically able to pull from the bottom, and the barrel would have to be side-on). A barrel-pipe setup would work, but it defeats the purpose of the attached chest (being easy and automatic with no entities floating...
  4. Z

    Need Assistance With an Automated Boiler

    As stated, my recommendation is to make a large (gold is what I used) chest and stick it next to the boiler but leave the boiler unfinished until you get it done. Get that chest chock-plum-full of charcoal and coal coke. Charcoal is less efficient, per log, than stacks of lumber (especially...
  5. Z

    Applied Energistics autocrafting

    So far I like the XyCraft fabricators to handle my storage block solutions. Not having to automatically pipe out of the ME interface is a nice touch, but I lack sufficient quartz to fully realize the system for some time to come. Thanks for all of the awesome suggestions. This mod, and you...
  6. Z

    Applied Energistics autocrafting

    I thought that setup was for autocrafting things as they're called for in the crafting inferface? What skirty described above is similar to our setup currently.
  7. Z

    Applied Energistics autocrafting

    Well, I thought I could figure this out, but I'm running into a roadblock, so...HELP :) I want to autocraft everything that can into a storage block. No gregtech, so I don't have to worry about using the compressor. I thought I run everything into a packager using an ME Interface, but it...
  8. Z

    Walling off lava lakes

    I didn't know either. I don't use IC2 or any of the sub mods much at all and don't attempt to follow his frequent changes. (Edit to be less of a jerk)
  9. Z

    Walling off lava lakes

    I doubt KingLemming would pursue it, since he designed the crucible to fill that slot based on comments from another thread.
  10. Z

    Walling off lava lakes

    Well, sure, but the lag issue from flowing lava could probably be eliminated if each source block was replaced as it was removed. That's work for single player, multiplayer, and just plain lazy player.
  11. Z

    Walling off lava lakes

    I still like the idea of a pump that replaces lava source blocks with cobble. 'draining the heat', as it were.
  12. Z

    Turtle script requests

    There's no need for a turtle to go down to place a block for the landmark. A turtle has the amazingly awesome ability to place blocks on empty space with no connectors (at least, they did in 5.1.1) So you should be able to write two loops (or a function) that iterate from 1 to (max of 64 and...
  13. Z

    Tesseracts and Steam

    Yes. The setup below works perfectly to power 18 industrial steam engines.
  14. Z

    Your Favorite Computer Craft Program Ever

    http://pastebin.com/KBJ1wDz0 Sphere and dome builder. I didn't write it, but I use it extensively for my bases. But I also admit to being a huge fan of http://www.monolithic.com/ ;)
  15. Z

    Enchanting Strategies

    LOL Well, I did post a bit of working code in a previous thread. enc = peripheral.wrap("right") enc.setAutoCollect(true) while true do sleep(20) if enc.getLevels() >= 30 then turtle.select(16) if turtle.getItemCount() == 0 then print("No more books! Keep up!")...
  16. Z

    Enchanting Strategies

    This, but a little bigger (7 wide) so 2 xp turtles. Have a cow spawner next door so I never have to worry about running out of leather.
  17. Z

    Beast Age for enderman farming

    If you don't mind asking, why don't you want to go to the end yet? Don't want to deal with the dragon? Or don't want to go searching for the stronghold? If it's the former, the easier answer, imo, would be to go to the end with a turtle, 9-12 stacks of cobble, some torches, a blank linking...
  18. Z

    What if there was only 1 Mod?

    Thaumcraft, agreed.
  19. Z

    computercraft, quick question.

    ah ha. I didn't think place was correct, but I was rushed. Thanks for the correction.
  20. Z

    computercraft, quick question.

    That's a pretty elegant way to do it, actually. Mine is something like (and this is off the top of my head) enc = peripheral.wrap("right") enc.setAutoCollect(true) while true do sleep(20) if enc.getLevels() >= 30 then turtle.select(16) if turtle.getItemCount() == 0 then...