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

    If you could add one block what would it be... Get your block idea into my mod!

    couple of neat ideas: an 'invisible block' to place redstone, rails, things that normally wont stay unless placed on a solid block. or somehow make new versions that can be placed in midair, like the angel block from extra utilities. if you go with the invisible block idea, have it so when you...
  2. S

    Is there a way to automate the fractionation unit in RoC?

    even easier way: logistics supplier pipe. configure it so it keeps the machine stuffed with say, 16 of each item, in partial mode. as they get consumed, it will request additional items from the lp network. connect a provider pipe to an AE interface, bridge the 2 with cobble/stone/gold bc pipes...
  3. S

    BIG REACTORS controlling an activly colled with mfr rednet (monster)

    one way to do it: instead of fooling with the rods, just use the redstone ports to fully turn on/off the reactor. what i did was use 3 redstone ports. 1 set to active when reactor temp reaches a certain value,and another set to active when reactor temp drops below another value. use a project...
  4. S

    any dragonvale players around?

    i like these kind of games, but man grinding away the hours to breed/hatch a dragon is just...wow. any players around that feel like gifting some gems? id definitely return the favor. ill even try getting a dragonsai to boost the gifts (only level 11 right now :( ) paper dragons just showed up...
  5. S

    Magical Crops second seed drop

    play with magical crops in horizons, youll get the secondary seeds all day long. in monster...nope. easy way to get essence seeds in monster: autonomous activator bonemealing over a patch of grass, harvester to break the grass/flowers that grow. you will get much essence seeds from that. or use...
  6. S

    Material conversion

    tried the MFR Unifier? that has preferences you can set for converting the various different mod metals/dusts/gems/ores into just one type that you define in the gui
  7. S

    BigReactors Vs ReactorCraft

    @Reika, whats the power output like with the HP Turbines? i just noticed it and now im really interested what a 7 stage turbine can do...and what it takes to get one going ;) also...what do i need to make a grinder run faster? directly attached magnetostatic gets it at around 5 secs, but i saw...
  8. S

    Reactorcraft help

    ouch no way..i do stuff with logistics pipes that have to use latest cc...ok ill figure something out then. really could use some way to monitor the temp on those cores tho...
  9. S

    Reactorcraft help

    for fear of the dreaded 'necro', i must ask: have you gotten anywhere with the CC api? I saw a snippet of code on lisimba's tutorial and the getTemperature method he refers to does not seem to exist...kinda need it if i wanna control the cooling on those cores ;)
  10. S

    BigReactors Vs ReactorCraft

    big reactors + turbines = crazy amounts of rf, but you have to build quite a few turbines to see the benefits. you can get upwards of 300k rf per tick if you go crazy with it. but i hear a proper tokomak reactor from RoC will put a large big reactor/turbine farm to shame. i cant say much about...
  11. S

    Big Reactors: Not enough steam

    heres what i do for turbines/reactor setups: 1) find a temperature that the reactor stays stable at while feeding the turbines steam. this will take fiddling of the control rods percentage until the reactor stays at a reasonable temperature to keep the steam cycle going. you can take it down to...
  12. S

    Automating Wool Farming

    theres a crop for lapis, sorry forgot about that ;)
  13. S

    Automating Wool Farming

    in monster, you can also do magical crops. grow spider essence for string to make wool, grow dye essence for the dyes to color it. dye essence has a recipe for every color in the game except white and brown, youll have to bone/cocoa farm those
  14. S

    Power Transfer mega thread?

    tesseracts...i have tesseracts (all on same channel) on an array of 10 big reactor turbines, pulling over 320k rf/tick combined. then i plug these into mfr drill prechargers, im running 32 laser drills with that setup (2 prechargers per drill, 5k rf/t per precharger).
  15. S

    IC2 Reactors + Computercraft

    should be, assuming the turtle is south of the reactor block, and assuming you want the item in the turtles first inventory slot: reactor.pushItem("south", 9, 1, 1)
  16. S

    IC2 Reactors + Computercraft

    you have to use the commands as if you were doing them from the reactor so if you did reactor.pushItemIntoSlot("south", 1, 1, 9) then this would push 1 item, from slot 1 of the reactor, to an inventory south of the reactor block, into slot 9 of that inventory with pullItem, its the reverse...
  17. S

    Starting my Monster experience

    something ive discovered and not many people do here for early power: pink generators + magical crops = very easy early game power. all you need is a few vanilla dyes, seeds and some magic essence (either grown with essence seeds, or mined). once you have enough of those, you can start growing...
  18. S

    IC2 Reactors + Computercraft

    the getHeat, getEUOutput, getMaxHeat, isActive calls are specific to the reactor. the rest are for manipulating items in the inventory (these are the same for any block which has an inventory, like chests, crafting tables, etc). which is good, youd need that if you planned on doing everything...
  19. S

    IC2 Reactors + Computercraft

    from experience...i dont think there are commands to 'run' an ic2 reactor. its literally just turn on/off via redstone signal. the only use i ever had for cc with ic2 reactors was to turn off the reactor while replacing spent fuel cells with new ones. you have to design the reactor so it does...