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

    Any cool roofing ideas?

    Grow wheat on top having 4 layers like a pyramid. It does look pretty cool. And if you get hungry, you can eat your house.
  2. B

    Applied Energistics stopped crafting

    So whats the problem? It wont craft when you request something?
  3. B

    Applied Energistics stopped crafting

    It's just AE getting confused in crafting priorities, or attempting to do two things at once. If you go into the crafting monitor and shift left click (I believe) multiple times till it is empty the upper right slot, the system will reset and not keep trying to craft crap.
  4. B

    MatterFab Automation Help

    This this and this However, a 4th option is that you can us MFR block that outputs from an inventory, I believe this could work as long as you don't output to pipes.
  5. B

    blaze farm help

    It does sound like it's not a teir 5. Sorry to ask this but you are very sure its teir 5? If the chunkloader config to change the chunkloader properties is changed on the server, there is no way around it. You should ask your server admin if he has changed this.
  6. B

    NEED HELP! "FTB ULTIMATE" CRASHES AT START

    You need to post this under the support section.
  7. B

    Is sugar cane good for biofuel?

    If you are talking about using a multiblock farm from Forestry, no, it is not worth it. If you use a way that collects the sugar cane without power, say a piston and water vanilla system, then it can be worth it. However, with the saplings being nerfed due to the "sappiness" statistic, this...
  8. B

    Ask a simple question, get a simple answer

    is there a way to collect experience orbs and get rid of them? I know that both XP turtles and brain in jars can collect them, put I just want to get rid of them to help with frame rate lag.
  9. B

    lua, lua, lua

    that does sound about right. Have one constantly refreshing the screen and displaying the energy/liquid while the other function will listen for an event monitor_touch. I'll give it a try. that might work, if the parallel doesn't ill give this a try. Thank you guys! good to see the community...
  10. B

    lua, lua, lua

    Hey guys, I've been trying to create a monitor in my base to have complete access to all of my spawners as well as keep track of my power and liquid levels. However, I can't figure out how to combine the os.pullEvent("monitor_touch") with the constant update of my power/liquid levels. Since...
  11. B

    How do you use thaum scanner upgrade?

    damn, what sucks is that the other two functions work, but not that one. Hopefully RichardG knows about it.
  12. B

    How do you use thaum scanner upgrade?

    The same error occurs. So weird. I checked the ComputerCraft forums and google, can't find anyone who has tried to mess with it.
  13. B

    How do you use thaum scanner upgrade?

    sorry, thats just how i wrote in the post. I was right in the program. what I have so far is goggles = peripheral.wrap("right") function readAura() junk, junk2, aura, flux, type = goggles.getAuraNode() end readAura() print("Aura: "..aura) print("Aura: "..tostring(aura)) and i get...
  14. B

    How do you use thaum scanner upgrade?

    I've been messing around with turtles and code recently but this one escapes me. I'm able to wrap the peripheral but don't know how to use the .getAuraNode() to put the data into variables and how to read them. Does anyone know?
  15. B

    Bees and Routers

    how did you get this to work? I've tried and the export buses don't recognize the next generation of bees. Can you show pics?
  16. B

    Ask a simple question, get a simple answer

    Export to a deployer spitting it into lava? I don't think there is a quick way.
  17. B

    Ask a simple question, get a simple answer

    I believe if you shift right click with it in your hand, it dissasembles it into a shell and core, or something like that. So if you can't craft the two back together and erase the data that way (I'm not sure if it does) you can at least put in a new core saving reasourses
  18. B

    lua

    they are embedded as you wrote them such as function dig4() is within function dig3() is within function dig2... When you try to call a function that is embedded, such as how you are trying to call dig5() which is within dig4(), the program can't start there. If you put an extra end statement...
  19. B

    lua

    I think the problem is the levels of the functions. If you put all the functions on the same level, move the "end"s to close off each function before starting the new one, it should work. Why did you embed them anyways?