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

    Unleashed 1.1.3 Open Peripherals

    To terminate a program hold Ctrl + T.
  2. A

    Mod pack idea

    You could just try making that "mudpack" yourself. Drop all the mods into an existing FTB Pack and resolve the ID conflicts.
  3. A

    Unleashed 1.1.3 Open Peripherals

    Do you have the monitor connected to the left side?
  4. A

    Unleashed 1.1.3 Open Peripherals

    Show me the code and I can tell you what you have to change.
  5. A

    Unleashed 1.1.3 Open Peripherals

    Make a loop. http://computercraft.info/wiki/Loops
  6. A

    Unleashed 1.1.3 Open Peripherals

    Did you put it next to the firebox? The getTemperature method only works for the firebox. Maybe post your code so I can see what's wrong.
  7. A

    Unleashed 1.1.3 Open Peripherals

    To wrap the boiler: boiler = peripheral.wrap("back") To wrap the monitor: monitor = peripheral.wrap("left") To get the boiler temperature: temperature = boiler.getTemperature() To print the temperature on you're screen: monitor.setCursorPos(1,1) monitor.write(temperature) Those are the...
  8. A

    Ask a simple question, get a simple answer

    I had this set up with Logistics Pipes Extractor Module. You can define what to exclude there.
  9. A

    To many connections on one block....

    With Ender IO you can run MJ power (EU is on the TODO list), liquids and a redstone signal through one block.
  10. A

    Is it possible to make turtles start after I enter the world ?

    You can either rename the program you want to run on World loading to "startup" as NoPain9 said, or create a new startup program that runs your program. Example: shell.run("exampleprogram")
  11. A

    Problem with Ender IO

    That's not correct. Seems to be an ID conflict too.
  12. A

    Problem with Ender IO

    The item IDs are shifted by 256. Subtract 256 from the value NEI shows you to get the values of the config files. I:"enderIO:itemMaterial"=31736 This works for me.
  13. A

    Getting the most out of your ME Network

    In 1.5.2 there's the blocking mode for Interface recipes. This prevents the mixing of different recipes.
  14. A

    Nuclear Reactor

    Instead of giving us a 40 minute video, you could take some screenshots of your setup, so we can actually see what you have done and what is wrong.
  15. A

    Bio reactor - power for the poor

    I thought the Clockwork Engine is the power source of the poor.
  16. A

    Liquid Measurement on Iron Tanks - Direwolf20 Pack

    I'm working on a program for the Terminal Glasses and Terminal Glasses Bridge, which will display Tank Information and the energy stored in MFSUs. I will make this public for all, when it's finnished. For just Steel Tank Valves: valve = peripheral.wrap("left", "steel_tank_valve_0") --wraps...
  17. A

    Liquid Measurement on Iron Tanks - Direwolf20 Pack

    You can put wrap the Iron Tank Valve or Steel Tank Valve as a peripheral with OpenPeripherals. Either by putting a Computer right next to it or by connecting a Wired Modem to it and to the Computer. If you need code to access the information about the tanks liquid storage, you can PM me.
  18. A

    Flowers for Bee-loved Bees

    According to the official FTB wiki, they need Flowers.
  19. A

    liquidcrafter+applied energistics

    Instead of the LiquiCrafter, the Cyclic Assembler might work.
  20. A

    reversed phantom blocks?

    Thaumcraft's Arcane Pressure Plates might be helpful for your setup as well.