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

    How to efficiently farm for biofuel

    The setup for switching off I was talking about would be a comparator and not gate for each jabba barrel, if any of them get down to 1/16 storage, it would automatically stop the system until they get above that point. Also I was thinking of turning off the transfer nodes instead of turning off...
  2. U

    Show off your Botania mana generation

    Yes that works, I have a 25 part cube of floating entropynniums that get fueled by a single placer, Although I am only dropping about 10 tnt and then letting it drain out, if the server lags I have noticed that it can make things blow up anyways.
  3. U

    Request Getting Started With Modding!

    Wuppy29 has been good for me, he also has some basic java tutorials which would probably be useful. But I actually find that talking to someone about the code helps me understand it the best.
  4. U

    What's new in modded minecraft today?

    Technically new two days ago: Ore Swords
  5. U

    [solved]registerBlock(Block,Block.class,String) not recognized

    yes, I have: public static Block sharpeningblock = new SharpeningBlock(); I have the name and material variable defined inside the class.
  6. U

    [solved]registerBlock(Block,Block.class,String) not recognized

    Edit:******************************************* The SharpeningBlock class extends Block, The ItemSharpeningBlock is supposed to extend ItemBlock still a little confused about how to use metaData for onBlockActivated, but I can probably figure that out...
  7. U

    Forge Version for Modding

    Latest/Recommended always! If you build with the latest it helps ensure future compatibility and mods from the past that are not compatible will likely be update or not maintained.
  8. U

    Request Suggest mods for creation here

    not necessarily, I hate having little bits of power gen all over the place, I would rather have one really expensive really large power gen in a central location and you could put a limiter in for a server that makes it so each player can only have a single buffer in use at one time.
  9. U

    Request Suggest mods for creation here

    So you want something that prevents multiple RF sources from feeding into the same network? or to just remove low cost RF sources?
  10. U

    CoFH problem... again.

    Try setting chunk chance to 100, that should guaruntee an instance per chunk to make sure it does spawn, then you can dial it back to what ever feels reasonable.
  11. U

    How to efficiently farm for biofuel

    ^true, my idea was specifically for supplying materials. That said you could also check your storage system to see how much material you have. If anything gets below some threshold just stop the machine until you are above the threshold again. I dont know that jabba barrels will do this, but...
  12. U

    Mod Dev Listing

    Thats fine, I don't expect this to be a place for any of the "big" dev's. I expect it to be more of a place for new/"small" devs to gain experience and as an entry point into the community.
  13. U

    I need some help with gradlew build

    That makes sense for not being able to access certain things but what I experience was a little different. I'll lay it out better: If the naming was wrong(such that the sword code was unreachable) then the sword shouldn't have existed and the game probably should have crashed. So presumably...
  14. U

    Hey all...

    Mods/mod development is a pretty good place to ask for help also, at least for help with single mod things, not so much for modpacks.
  15. U

    Mod Devs/FTB Team Members on player.me

    New Developer but my First mod is released and I have plans for a couple more already. https://player.me/uberaffe
  16. U

    How to efficiently farm for biofuel

    What mods are Signalum and Enderium Retriever from? Enderium sounds like thermal expansion.
  17. U

    How to efficiently farm for biofuel

    Personally, I like to use ExU's Hyper-Rationing pipes for delivery of items, it keeps a single item of anything that passes through in the connected inventory, meaning that if you have 9 transfer nodes for your nine types all connected to the one Hyper-rationing pipe it will keep the reactor...
  18. U

    Request Suggest mods for creation here

    Don't you have the file in an old mod folder that you can just reuse?
  19. U

    I need some help with gradlew build

    @FyberOptic Rereading your suggestion, why would that effect the functionality of the items? The problem that had been more pressing was that I changed how some of the items interacted with the world, but after gradlew build it still had the old functionality. (This was fixed by something I...
  20. U

    I need some help with gradlew build

    I ended up re-titeling/re-packageing my whole project. Luckily it is still a small one, but it did fix the problem.