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. R

    ComputerCraft "No such program" after 'shell.run'

    create a new file called startup in there you put the following code: shell.run("Reactor") save and exit and now it will auto start next time the server reloads so you can now reboot the computer or just run reactor directly
  2. R

    Automated smeltery?

    To summerize: put the liquid directly into the casting basin use <item transport of your choice> to pull the finished block from the casting basin.
  3. R

    Those little things that irk you about Minecraft

    Though if the mod has a new machine and NEI integration for it then that at least should be shown. Like the blood altar and what every text box (and tooltip) means.
  4. R

    AE2 P2P Confusion!

    Color the cables one for the P2P backbone and one color for the Actual network. Also note that the cable coming out of the front of the P2P is not part of the P2P backbone network. so Connecting P2P buses loaded from the one on the dense cable will not work: instead of...
  5. R

    Mechanics discussion: all about the grind

    One of the things defining the grind is what the gate you are grinding towards is and how useful the items beyond each gate is. Mods with a lot of gates or a few difficult gates that remain there if you want to build another machine without good rewards at each gate will feel grindy. Most mods...
  6. R

    Detect redstone power level (signal strength) ?

    computercraft can detect redstone level
  7. R

    Space Energy

    Like you said tesseracts (being simple, loss-free and not too expensive) kinda make it obsolete Limitations that your system would have is loss of energy, needing the dish to see the sky, (possibly) only working in a single dimension and managing the satellite network
  8. R

    Ask a simple question, get a simple answer

    or you can change the slim hop sound effect file to silence
  9. R

    Discussion on AE2 Stuff

    If you see 7/8 channels used you are not guaranteed that you can add anything because you might have a device connected upstream. At the controller is the only place you can get the guaranteed accurate count of channels used. You need to trace upstream to find the bottleneck. Often you are...
  10. R

    Discussion on AE2 Stuff

    One of the things missing from vanilla AE2 is a way to find out how many channels are free on a cable. With that I mean how many devices can you hook up before you steal a channel from somewhere else/run out of channels. Once you have a decently sprawling organically built base you are not...
  11. R

    Discussion on AE2 Stuff

    items aren't tile entities they are regular entities. A growth chamber is a tile entity. A tile entity is any block that has more than 4 bits of state (aka just about every block that isn't a decorative one)
  12. R

    Yet Another Computer Build

    The instruction coding could be a bit simpler for the parser 100 = + 101 = - 010 = > 011 = < 110 = [ 111 = ] and 001 = . that way the first 2 bits decide which type of instruction you need (inc/dec, move, loop or IO) and the last bit decides which of the 2 (which you could for example feed...
  13. R

    My Crash Landing World

    add a roof over your area so you aren't in the sun constantly
  14. R

    Those little things that irk you about Minecraft

    Sooner or later it will devolve into something like:
  15. R

    Connecting Railcraft Tanks to AE2 ME Networks

    You could see the P2P as a compression step. The non-P2P channels are uncompressed data transfer and each cable has only so much bandwidth The P2P tunnel compresses the incoming channels down to 1/32 = 3% (a bit of a stretch 16 or 8 per P2P would be more "realistic" but meh) but can't compress...
  16. R

    Elegant solutions to automated AE crystal growth

    make a spiralling channel of water going down Then the seeds will stay in the water a while until they reach the bottom for pickup where you can filter completed crystals out.
  17. R

    Direwolf20 season 7 - Huzzah!

    the conveyor system is AE in space especially with that mod that will auto sort though that'll end up being more Logistics pipes I just hope he won't create a 9x9 as his first room
  18. R

    Modding API: good or bad?

    unless they delve into the security manager stuff and try to prevent mods from doing evil stuff (which is hard to do)
  19. R

    1.9 Preview

    unless there is an enum for "custom" or "composite" where composite is for animated blocks like the enchanting table with a static table and a book with turning pages.
  20. R

    Direwolf20 season 7 - Huzzah!

    I also kept cringing at his quantum bridge use, just put a few P2P through the bridge it'll let you pass up to 1024 channels across. In his current design of the controller he could put 8 P2P on the underside of the controller and then pass them through the quantum bridge. Then put a...