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

    Ask a simple question, get a simple answer

    Put it into a Writing Desk's middle-left slot, and you can change the name.
  2. gattsuru

    High Range Item ID Hell

    There are programmatic tools in current versions of Forge to reduce the likelihood of BlockID and ItemID conflicts, but they're not intuitive and -- like most of Forge -- not well documented. Some mods do attempt to dynamically handle errors, but these fixes can cause problems of their own...
  3. gattsuru

    Need some help with a m0d pack (resonant rise)

    Note that Immibis has an... interesting design choice, where the mod called Immibis Core is /not a coremod/ and must not be installed as a coremod but instead into the normal mod folder, while Microblocks is a coremod and must be installed as a coremod.
  4. gattsuru

    High Range Item ID Hell

    NEI can dump a full ItemID map. If you're only getting a 0-4096 range, you've set it to only dump blockIDs (the default). Under the NEI Block/Item ID Settings menu, make sure that the second box on the right side is set to "Dump Item IDs".
  5. gattsuru

    Opinions on AE

    Those are AE Energy, which so it's only about half that in EU. Still a pretty sizable setup.
  6. gattsuru

    FTB miracle lag fix

    If you're just starting out, I would strongly recommend something like a Ubuntu LiveCD -- you can run from these CDs, get used to the environment, and then boot back to Windows just by removing the CD and restarting your computer. In the longer term, dual partitions mean you can install both...
  7. gattsuru

    How do you guys do you power plants?

    True, and good point. Viscosity in the real world is resistance to flow rate, and thus higher numbers would flow slower. In ThermalExpansion's code, it's an integer value (for the purpose of Liquiducts, clamped between 0 and 200, defaulting to 100), where the flow rate is equal to viscosity...
  8. gattsuru

    First attempt at turtle code.......did not work ??

    LUA is case-sensitive. Use "for", all lower-case, not "For", and "end" rather than "End". Conventions are to always use lower camelCase (first word uncapitalized, all other words first letter capitalized) for local variables and all methods. Only globals and some reserved names should be...
  9. gattsuru

    MPS Support Thread

    The blur program is internal to ModularPowersuits, so no other shader mods should be necessary (and I'd expect many of them to cause problems). What modpack are you using, have you upgraded your modular powersuit version, and are you running any other shader mods or optifine?
  10. gattsuru

    How do you guys do you power plants?

    Steam has a higher viscosity than liquids do, which means that the liquiducts can store more per-duct and flow rate per-connection. The GridLiquid doesn't really map out the network, though, so it can't really understand the concept of bottlenecks and thus flow rate per connection without some...
  11. gattsuru

    First attempt at turtle code.......did not work ??

    Also, note that turtles -- at least by default settings -- require fuel to move, and you must tell them to consume which slot holds fuel and to consume that fuel. It's also better for code cleanliness to do avoid repeating sections of code, even if this means using nested loops. For example...
  12. gattsuru

    Adding Ars Magica to exsisting modpacks

    ArsMagica 5.52.013 can be added to the 152wgt 0.7 and 152ngt packs without relatively little change, which is likely the simplest solution. You'll want to change the itemIDs for I:arcane_compound_ID, I:arcane_ash_ID, I:arcane_essence_ID, and I:air_essence_ID in the ArsMagica\AM_Main.cfg...
  13. gattsuru

    Opinions on AE

    If a nuclear reactor overheats, it can cause an explosion ranging from slightly larger than TNT, to devastating a circle the size of several chunks, if on a flat plane. The blast radius can be reduced through the use of protective materials, like hardened stone and glass, or warded stone. Most...
  14. gattsuru

    Opinions on AE

    No, drives last forever. It's a coding thing (specifically, to avoid using multiple item IDs for similar items, it uses NBT data to distinguish between different drive types and whether a specific drive is formatted/full). It's mostly a safety factor matter. Bad Things can happen the storage...
  15. gattsuru

    Opinions on AE

    It'll automatically try to craft any parts that it needs and is aware of (Export Buses can be taught to do something similar)
  16. gattsuru

    Opinions on AE

    Each crafting 'step' needs a separate ME Encoded Pattern and takes a Molecular Assembly Chamber action.
  17. gattsuru

    Opinions on AE

    Yes. If you want to reduce the clutter, you can also set up an ME Dark Cable and redstone to detach the storage buses when not needed, however. Each internal space on a cube must hold at least one ME Pattern Provider or ME Crafting CPU. Each Pattern Provider allows the finished ME Molecular...
  18. gattsuru

    Opinions on AE

    Obviously, you need a mod containing barrels or similar storage items, since the default chests give rather questionable returns. The costs of storage buses are non-trivial, too, especially for items that you don't have in very large numbers. Because each storage bus requires 1 Quartz, 1...
  19. gattsuru

    A question about energy storage/ mekanism

    Running a set of Heat Generators into any number of Electrolytic Separators (set to dump the Oxygen), then the output of the Electrolytic Separators into an equal number of Hydrogen Generators*, can significantly increase the amount of power on hand. With the most recent Mekanism release, I...
  20. gattsuru

    Add Mo Creatures plz

    You probably need to update your version of Mo' Creatures. DrZhark has very restrictive rules for the use of Mo Creatures or the Custom Creature Spawner mods in modpacks (short answer : no), and these mods are pretty CPU-intensive and can significantly change overworld feel. They're fun, but...