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

    How to Modify Repair Durability with Anvil Repair & AOE Mining to items?

    No, it's adding an item to the tool to repair with. It doesn't give it a custom anvil recipe, just simply gives it a repair item, that's what I meant by not answering the first question. I don't really mean for you to copy and paste the code I posted and expect it to work, I just wanted you to...
  2. H

    How to Modify Repair Durability with Anvil Repair & AOE Mining to items?

    Tinker's Construct AOE code (not answer to first question) To give a repair item to your tools, all you have to do is put .setRepairItem(ItemStack) after your declared ToolMaterial. Example: public static ToolMaterial FOO = addToolMaterial("Bar", 0, 0, 0, 0, 0).setRepairItem(new...
  3. H

    List of Dimension adding mods

    Mystcraft and RFTools obv 4Space there was a candyland mod i believe
  4. H

    Underrated Mods

    wow that made me feel good even though i was clearly fishing for compliments
  5. H

    Underrated Mods

    my mods i'm useless A real answer would be Gany's mods.
  6. H

    Cross-Language Mod Development

    Yeah, I know. Update: Playing with a new toy now. Called "Haxe"
  7. H

    Anti Grief for forge server?

    https://sites.google.com/site/reikasminecraft/territoryzone
  8. H

    Infinity

    No, you can't. That mod is not compatible with Infinity's version.
  9. H

    Modding API: good or bad?

    oh you guys are talking about a Mojang modding API
  10. H

    Modtweaker how to use?

    I did
  11. H

    Modtweaker how to use?

    Isn't it supposed to be in the folder "scripts"?
  12. H

    Looking for some mods

    I think GregTech 6 does something like that with the nether portal.
  13. H

    What is the most overpowered mod in your opinion (NO ORESPAWN)

    I was actually going to create a joke post titled "Coming out" in which I admitted I like OP mods and wrote stuff like "I'm going to tell my parents after I post this", but didn't because I thought it could be offensive to some people (don't blame me). I believe in playing whichever mod is fun...
  14. H

    Cross-Language Mod Development

    Unfortunately not. The indy version didn't work either. I'm now trying to include both the forgeSrc and srg jars in the build path, and looks like it's kinda helping. Only disadvantage is we have to use obfuscated code (for vanilla stuff). EDIT: It works but... damn. All Minecraft fields and...
  15. H

    What is the most overpowered mod in your opinion (NO ORESPAWN)

    IIRC the developer said that himself.
  16. H

    Cross-Language Mod Development

    Tried that already.
  17. H

    Cross-Language Mod Development

    Huh, it does I'll still try to make Groovy work. Even though my interest in modding has dropped significantly, I wouldn't want to give this up. It doesn't appear so. While there is a version of the JVM programmed in Go, I don't think it actually works for Go.
  18. H

    New mod development: Too Much Random Stuff!

    I suggest starting off with decorative mods. They're perfect simulations of big mod projects, yet it doesn't go too heavy on you and you can use your creativity. Since a lot of ideas for mods are taken, it's pretty bad to try and start off with an original idea. It'll just slow down your...
  19. H

    Cross-Language Mod Development

    Huh... looks interesting. Unfortunately I've encountered a large issue. Because of the obfuscation, any references to Minecraft methods will not work outside the dev environment. A fix I thought of for this was creating an API/library written in Java that added new methods for all the Minecraft...