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

    Misc Peripherals Chatbox

    Dynmap says that it should be able to emit messages into the normal Minecraft chat, which MiscPeripherals' Chat Box should be able to detect as an incoming chat event.
  2. gattsuru

    How to enable disabled mods in FTBUnleashed?

    Does this error occur during startup before the minecraft main menu, while selecting a world, while selecting a Lan server, or while loading a world? By server, are you running a single instance of Minecraft, or are you running a separate client and server? If so, the change will need to be...
  3. gattsuru

    How to enable disabled mods in FTBUnleashed?

    That's the enchanting table. There should be an option to continue anyway.
  4. gattsuru

    Im getting bad Fps on my gaming pc... WHY

    That usually indicates a problem with your Java installation, or a possible hard disk issue. Try uninstalling and reinstalling Java.
  5. gattsuru

    Ask a simple question, get a simple answer

    Do you have MineFactory Reloaded? There may be a bug with how MFR tries to move things to the newer Fluid interface. I'm also not sure how the lava consumption is calculated; it's certainly still net-positive, but you probably end up costing significant amounts of energy in that.
  6. gattsuru

    How to add GT to FTBUnleashed?

    The current version of GregTech (3.11) is compatible with Tinker's Construct. At least with the default setting for other mods in the Unleashed pack, there are no ID conflicts, so it's just a matter of adding it from the Edit Mod Pack menu. I haven't checked EnchantingPlus, NetherOres...
  7. gattsuru

    Ask a simple question, get a simple answer

    As far as I can tell, it's better to have a high number of leaves (or saplings) within the bee territory, and as few non-leaf (or non-sapling) blocks as possible. That's probably more relevant than pollination speed, with larger territories. Only water, fruit juice, and honey in Fermenters, to...
  8. gattsuru

    Ask a simple question, get a simple answer

    Not a bee expert, but from diving into the code, it looks like bees select random blocks in their territory and then check if that block is a vanilla tree leaf or Forestry pollination API. They'll fail if they run into a Natura (as of Natura 2.1, which has no Forestry API code) or Biome O'...
  9. gattsuru

    Ask a simple question, get a simple answer

    Straw Golems will harvest, but not replant, most plants. Smart Straw Golems will both harvest and plant seeds. Wooden golems can grab the wheat and leftover seeds. Forestry farms require apatite and a significant amount of copper and tin investment, but they're exceptionally cheap to run -- a...
  10. gattsuru

    Im getting bad Fps on my gaming pc... WHY

    Can you provide us the following fields from a DXdiag? Display Tab - device box - Name: Chip Type: Approx Total Memory: Display Tab - driver box - Main Driver : Version : Date: To open a dxdiag : In Vista, Win7, or Win8, type dxdiag in the Start menu search bar In other versions of Windows...
  11. gattsuru

    UE Question

    There are two major 'power' mods in UE that are relevant, AtomicScience and Mekanism. Atomic Science's fusion generators are slightly better for the space than a Steam Boiler, but they're also more complicated, expensive (requiring diamonds), and moving uranium around can be dangerous. Fusion...
  12. gattsuru

    Tri-Iron Tank Management Controls System

    If you have ThermalExpansion, you can also do this without ComputerCraft. Set the Fruit Juice and Honey tanks to your squeezer or an intermediary small tank with Liquiducts set to always on. Use "Tank Empty" -> Redstone signal from each of the honey and fruit juice tanks, run to a redstone AND...
  13. gattsuru

    Importing & Exporting from one side

    There's also a lot of warnings on the AE-wiki that ME Interfaces will stop importing items into the network if the Interface's internal buffer fills up with exportable items. I've yet to see it happen in a practical case, but that's also made me a little cautious.
  14. gattsuru

    Ask a simple question, get a simple answer

    You will need to edit a sizable number of ItemIDs to get Ars Magica to work, but that's the only major issue.
  15. gattsuru

    Im getting bad Fps on my gaming pc... WHY

    I'd need further detail to be certain. Firstly, check that you have the correct graphics driver for your laptop's GPU installed (and if you have nVidia Optimus, that it's sending FTB to the dedicated graphics card). It's likely worthwhile to check your FTB internal settings, especially the...
  16. gattsuru

    Would you like to see a Modded Super Hostile Map?

    There are some interesting things you can do with them -- switching on and off mob spawning when an area demands it or to trick players into not dropping torches, adding checkpoint-like behavior, WirelessRedstone-like behavior without involving Wireless Redstone, simple announcements, or even...
  17. gattsuru

    Ask a simple question, get a simple answer

    I wasn't able to get it to do so.
  18. gattsuru

    Ask a simple question, get a simple answer

    sleep(numberOfSeconds)
  19. gattsuru

    The Future of FTB Modpacks.

    At the very least, because there will always be potential cases where a mod simple will not work. I would /rather/ Modular Powersuits, for example, simply refuse to load (whether through good clear error messages, or through not registering its items or recipes), than to fail unpredictably on a...
  20. gattsuru

    Lua roadblock! Help plz

    The most immediate issue is that ends close their surrounding code blocks; they need to be in the right order, or the code will treat each elseif as if it were in the same code block and scope as the most recent if. You need the Access Denied code block to occur before your second-to-last end...