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

    Big Reactor ... Reactors

    Just thought I'd pop in a link to some Big Reactor Steam turbine testing data https://docs.google.com/spreadsheet/ccc?key=0As9dFXD_KM2CdGFhTUxOUGxMRlpERWtPMmtGT213bmc&usp=sharing#gid=1 As for a RC boiler not producing enough,,, Well, that depends on the size of the turbine... I'm running 2X 80...
  2. P

    ComputerCraft, OpenPeripheral and Applied Energistics

    And one thing I noticed is that if run at startup it will collapse due to lp not having loaded yet. Delaying for about 10 secs should be enough... Sent from my iPad using Tapatalk
  3. P

    ComputerCraft, OpenPeripheral and Applied Energistics

    Ooh, so minimum of 1 tick sleep. Good to know :) But considering that I have more important stuff around I thought it best to eer on the side of caution with sleeping ^^* Especially as I had problems with the program not yeilding when I batched 100 of the getItemAmount's...
  4. P

    ComputerCraft, OpenPeripheral and Applied Energistics

    Ditched AE, went for a LP based solution. Following one assumes that you have a 6 wide and 4 high screen above the computer and the LP request pipe below function sortByAmount(x, y) return x.amount > y.amount end function generateList() print("import started") itemList={} n=1...
  5. P

    ComputerCraft, OpenPeripheral and Applied Energistics

    Checked the list of AE's methods, none of them looks promising,,, But that MethodMan program looks usefull :) I'l have to set up an LP network next then I suppose ^^*
  6. P

    ComputerCraft, OpenPeripheral and Applied Energistics

    I'm running the Direwolf20(1.64) pack and I'm trying to figure out how to retrieve a list of all items in the AE network. Preferably like the now defunct MiscPeripheral's ME-bridge with its getList(). The end result is going to be used to display on a monitor down the line ^^* But at the moment...
  7. P

    Getting rid of a large body of water

    MFFS has a sponge module. It takes massive amounts of power but it should be able to clear a box of 128 down, 128 left, 128 right, 128 forward, 128 backwards and 128 up with the forcefield projector in the center. So if you want to clear massive amounts of water, try MFFR.
  8. P

    What type of armor do you prefer?

    Its invisible but it doesn't provide flight. Boots of the travelers help but its more expensive than MPS and less adaptable...
  9. P

    What type of armor do you prefer?

    The type of armor that you can hide and show your skin ofcourse! I didn't spend time making the skin just to hide it up :P So MPS all the way sadly :(
  10. P

    Sacred rubber sapling "ruined" my world... what can i do?

    A Forcefield miner should be able to get rid of it in a reasonable time,,, Just needs a lot of power... Go to Y-level 128 or the like. Forcefield projector, 128 range upgrades into the up slots, 128 in the left and right slots. Then a desintegrator module, gather module, and a lot of speed...
  11. P

    Did they change energy conduits?

    I use my lil program to control a bank of 60 magmatic dynamo's ^^* I could plug in another laser pre-charger into my system but then I'd have no power over for my quarries ^^*
  12. P

    Did they change energy conduits?

    This program will sit to the left of a comparator and checks once a minute if the signal is 14 (or 15) send out a redstone signal down. It will then once a minute check if the signal reaches 2( or 1 or 0) and then it will turn off the redstone signal down. It will default to having the redstone...
  13. P

    Auto Charcoal Production Using TE & Logistic Pipe Not Working Correctly.

    Have you checked if the LP can extract from a barrel with a provider pipe from the top? As for solving the charcoal problem, perhaps it would be better served with a paradigm where you have 64 charcoal ready in the furnace by putting a supplier pipe at the bottom for 64 charcoal, at the top for...
  14. P

    Unsupported Direwolf 20: 1.6.4 {PUBLIC BETA}

    ModPack: DireWolf20 1.6.4 v.1.0.2 Mod: ProjectRed-Exploration Block: Peridot Ore (2130:2) Effect: Drops near infinite XP orbs when steve's cart tries and fails to mine a Peridot Ore. Steps to reproduce: Step one, get a steves cart with an engine, some storage and a basic drill. Step two, Place...
  15. P

    Melee Turtle Programming

    That script will die due to never yielding, as every branch of the program needs a sleep, doesn't really matter how long, else the CC OS will kill the program for not yielding. If not someone could write a program that does while true do I=1 I=2 End That simple little program would tie up CC...
  16. P

    disable ore oregen

    If its anything to do with Thermal Expansion its ore ID is in config>cofh>ThermalExpansion.cfg, Ore gen is controlled in config>cofh>World.cfg What modpack you using? Resonant Rise?
  17. P

    Melee Turtle Programming

    Screenshots? Does the code toss any errors? Does it attack you if you stand in front of it? CC computers and turtles will only run their program until they are unloaded so you might want to save that program as startup to make sure that the turtle will resume its bashing duties if it happens...
  18. P

    Error with Harvester/Planter

    Screenshot please? And what chunkloader you using? Railcraft or the Chicken one (Has a spinning crystal above it)? If its the railcraft one, are you feeding it enderpearls? For the chicken one, is it covering the area and is the crystal spinning? If its not spinning its been disabled by redstone.
  19. P

    mfr tree farm exploded?

    Modpack? I'm running unleashed 1.1.3 and I've not had any issue directly powering my planter/harvesters with HV current (That would be an MFSU or Ultimate Solar Panel). No clue what you mean with a redstone pump though... As for solar sizes: Advanced produces 8 but outputs 32 Hybrid produces...
  20. P

    AE and Logistics Pipes crafting system question

    I'm not sure exactly how integrated you can get but its easy to merge the system if you use AE as the controller. Connect the following to an interface: Item sink module set to default (or basic logistics pipe set to default) to let the AE system act like the default storage for the logistics...