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

    Does Ender Quarry work with Buildcraft pipes?

    Well, i think this still looks more compact overall:
  2. Z

    Does Ender Quarry work with Buildcraft pipes?

    I would bet you will end up with half the cobblestone going inside your storage system that way. You need a conduit between Tesseract and quarry, else there is 2 inventories competing to receive items, tesseract and chest.
  3. Z

    Does Ender Quarry work with Buildcraft pipes?

    You can set filters to diamond transport pipe, in this case you want to guide cobblestone and dirt towards a void pipe. Other things should automatically go other valid paths, in this case leading to tesseract.
  4. Z

    No flying with Morph in the end?

    The setting works as it should, but something about morph doesn't know what to do with "The End" dimension. It could even be conflict with some other mod that prevents flying there. I know it happened to us when we added Morph on monster pack. (We could fly in all other dimensions after visiting...
  5. Z

    Does Ender Quarry work with Buildcraft pipes?

    You are overcomplicating it. You can put items directly to tesseract as shown here: http://i.imgur.com/WmzgGgr.jpg http://forum.feed-the-beast.com/threads/simple-quarry-setup.43781/page-2#post-607053
  6. Z

    Computercraft (Not Rednet) Timer

    This is a classic infinite loop: while true do ... end You can't say that "second while kicks in", because it never leaves the first one. If you do "while false do", it would never even enter it. True is a boolean value, for example it's same as 1 = 1 is always true, but 1 = 2 is false. But it's...
  7. Z

    Would you build this?

    Those big spinning wheel looking objects on the right of first screenshot look a big harsh on gpu. If they could be reduced down to 10-30 triangle versions i might give it a go. Furthermore all spinning particles and effects should be visual only. If million particles are all affected in...
  8. Z

    Maybe Dirwolf20 1.0.21 will get ComputerCraft 1.6?

    Nothing wrong with Computercraft 1.6 itself, but to do anything useful with it, Openperipherals have to update to support it yet. It's responsible for things like reading energy or liquid values from tanks, and even his script for Mystcraft portals would break.
  9. Z

    Computercraft (Not Rednet) Timer

    Perhaps something like: signal = true while true do signal = not signal rs.setOutput("front", signal) sleep(110) -- Time in seconds end
  10. Z

    Computercraft (Not Rednet) Timer

    Don't know about rednet, but have to offer alternative from project-red (i think). Using timer set to your specific time on a toggle latch, you can toggle redstone signal repeatedly on and off.
  11. Z

    Cannot have 2 launcher installations

    I'm in situation where i play on 2 different monster pack servers, and each one has different mod configuration. I would like to be able to have FTB in 2 locations, but when i do that the options are shared. When i change client location to Place1, and then open other launcher and set it to...
  12. Z

    DW20 1.6.4 Autocrafting high voltage array = 512 solar Panels (Math Check)?

    You should put 1 MFSU before the ME controller as a buffer, not letting anything else to draw power from it. Because it is important that ME system stays 100% online.
  13. Z

    Simple quarry setup

    A simple setup? Here: At base you can put ME interface directly onto Tesseract so it will all go in the system. Unless you do it in awkward way like me and make the ores go through ore processing chain before first entering the ME drives as ingots.
  14. Z

    DW20 1.6.4 Autocrafting high voltage array = 512 solar Panels (Math Check)?

    The battery, lapotron crystal problem is annoying but fixable by changing the crafting patterns with right items. Like if you mainly have Oak planks in ME system, then you must specifically set all recipes that use wood, to use oak planks, not jungle wood or something else. As for ME system...
  15. Z

    Disable wither kill noise

    Put sound muffler at the farms http://ftbwiki.org/Sound_Muffler edit: This doesn't disable all sounds from Wither.
  16. Z

    Need Help Using Nether Portals

    Mystcraft is really good in making portals to your liking.
  17. Z

    QCraft made the server crash after an automated quantum observation

    Do you have qCraft 1.1? Edit: I see from the other forum link that you have... Then i don't know about this.
  18. Z

    Thaumcraft 4.1 research

    Artifice i think, but i think you need Alchemy's essentia distillation before you can see Infusion.
  19. Z

    automatic fortune automation

    But also that there is big difference in what world you use it on. Overworld and The End: Low spawning rate, but some key ingredients (strings, ender pearls, bones, heads). Essence amount very low. Nether: High spawning rate with monsters that drop alot of valuable loot (gold nuggets and swords...
  20. Z

    automatic fortune automation

    I recommend Block smasher that was mentioned in first reply in this thread too. Ore breaking happens in the internal inventory, using at max Fortune 3. Propably not the fastest, but once it has broken up all ores that have built up, can you really feed it ores faster than it breaks them? Even if...