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

    What's new in modded minecraft today?

    I've released the first stable version of Building Bricks, a mod about building blocks and tools for mc 1.8.
  2. H

    Cross-Language Mod Development

    Technically, you could say that all jvm languages access all fields/methods by reflections. Since the instruction to access/call a field/method takes a string as parameter and the jvm is the one that looks it up. I've gone around this issue when making the snapshot mod by obfuscating my own...
  3. H

    Mod Dev Title Request

    I'd like the title too if possible. Hard Mode Tweaks(contains link to ftb user): http://minecraft.curseforge.com/mc-mods/231325-hard-mode-tweaks Twintails: http://minecraft.curseforge.com/mc-mods/229959-twintails
  4. H

    Cross-Language Mod Development

    Python's decorators are a different concept from java's annotations. I'm not sure how Jython implements java annotations, but you might need to wrap them some how to get to the same result. I've considered before trying to use Jython to create mods, but never actually tried it.
  5. H

    What's new in modded minecraft today?

    I updated Hea3veN's Tweaks for 15w32a and "merged" it back into Hard Mode Tweaks for 1.7.10
  6. H

    What's new in modded minecraft today?

    I made a tweaks mod for the 1.9 snapshots that uses @FyberOptic's meddle: https://github.com/hea3ven/Hea3venTweaks Currently it prevents boats from breaking when hitting walls and makes leaf blocks non-solid.
  7. H

    Universal breeding tool

    If you are making your own item, you don't need an event, you can just override Item.itemInteractionForEntity and do it right there.
  8. H

    Buildcraft robots not doing what they are told

    This is stange, that config you are showing should work, provided the map location is correct. One thing though, if you use landmarks, for the planter, you need to lower them one block to include the dirt too.
  9. H

    BuildCraft Quarry

    There's no blacklist/whitelist for the quarry, it would be weird having the quarry arm go through the non mined blocks to reach the blocks underneath.Your best option is probably to use the filler to remove large chunks of land around it and then mine the rest by hand.
  10. H

    1.0.0: Tessaract not working...

    Tesseract support for BuildCraft was added in BuildCraftCompat.
  11. H

    Enhancing the Farming Experience

    Some parts sound similar to terrafirmacraft's handling of crops, which would be cool to see it implemented as a separate, independent, mod.
  12. H

    What's new in modded minecraft today?

    New little mod I made called "Hard Mode Tweaks": http://www.minecraftforum.net/topic/2620241-172forgehard-mode-tweaks-10b1-change-the-lenth-of-the-day/ Allows you to change: Length of the day Damage that monsters do Vanilla gamerules It also adds healing when you eat.