Search results

  • FTB will be shutting down this forum by the end of July. To participate in our community discussions, please join our Discord! https://ftb.team/discord
  1. S

    Pre generate world

    So just a bit of an update. This still works provided you change the command correctly to load the ftb or whatever mod server. The downside is it takes bloody forever. I'm generating a 10,000 x 10,000 area for my Crack Pack server right now (technically ATL I know) and after running about an...
  2. S

    Automating Factorization - Crystallizer

    Yep, it basically returns exactly what you have there.
  3. S

    Automating Factorization - Crystallizer

    Yeah I'm not sure why but calling 5 getStackInSlot commands on the crystallizer was slower than calling getAllStacks on the chest. getAllStacks really sped up the execution once I started using that and searching through the array for what I wanted.
  4. S

    Automating Factorization - Crystallizer

    Yeah the chest is directly adjascent. I'd post a picture but shortly after pastebinning the code I hit a bug that destroyed my world save (not related to this). And yeah I know about aqua regia. I was showing a friend how to play Dungeons of Dredmor and he decided to try to drink it thinking...
  5. S

    Automating Factorization - Crystallizer

    So as many of us know, automating the crystallizer from Factorization is a bit of a pain because it doesn't automatically distribute items placed into it, and it can only create 1 type of item at a time. To that end, and with the help of OpenPeripherals and Computercraft, I give you... what I...
  6. S

    Unsupported Direwolf 20: 1.6.4 {PUBLIC BETA}

    Mod Pack: Direwolf20 1.0.14 Mod & Version: OpenPeripheralCore 0-3-0-snapshot-39, OpenPeripheralAddons 0-1-0-snapshot-41 Pastebin link to crash log: none Whats the bug? Wired modems will not activate when attached to a Peripheral Proxy. Can it be repeated? yes Known Fix: No known fix for...
  7. S

    Writing Void Ages in Mystcraft 0.10.11.00?

    Hmm, I need the moon to be dark too, and just putting in dark sun, dark moon, stars (normal or twinkling) is still giving me random pages. As I understand it Mystcraft will add up to one missing modifier per object, so I was making the stars without a color page. Could that be doing it? I'm...
  8. S

    Writing Void Ages in Mystcraft 0.10.11.00?

    So I'm trying to get a good void age for a project I want to undertake. I've been writing this: mushroom biome single biome void normal lighting no weather zero length zenith dark sun zero length nadir normal moon zero length zenith normal stars boundless sky But I keep getting extra stuff...
  9. S

    Unsupported Direwolf 20: 1.6.4 {PUBLIC BETA}

    I've confirmed that this issue still exists in DW20 1.0.8, and that the latest version (snapshot 112 as of this posting) of OpenPeripheral fixes it. getTankInfo() returns a table of string values and instead should be returning a nested table for each tank.
  10. S

    Computercraft, Liquids, and Direwolf20?

    No see I tried something very similar to that before and the for k,w line (x,y in my case) I get an error table expected, got string. It's not a nested table, it's actually that string value I listed. You'll notice for the other tostring values it lists them as table: address but not for the...
  11. S

    Computercraft, Liquids, and Direwolf20?

    Unfortunately it's not working. The command is getTankInfo(side) and it's returning a string with what I assume is a table address at the end of it. term.clear() term.setCursorPos(1,1) local tank = peripheral.wrap("back") local dirs ={"north","south","east","west","up","down","unknown"} for...
  12. S

    Computercraft, Liquids, and Direwolf20?

    So I'm wracking my brain over this. Is there any way to get liquid info into a computer in DW20 1.6.4? Without RichardG in the mix I can't find any mix of blocks that will do what the Nuclear Information Reader and a liquid sensor card used to do. And because I'm hosting a server for a...
  13. S

    why does my applied energistics system keep stopping?

    I've also found that import busses tend to cause issues with the molecular assembler. When my quarry is running (ender chest with two importers on it set to stack mode), recipes get stuck and sometimes the crafting queue vanishes altogether. If a recipe hangs on missing materials, often times...