Content: Slate Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate Marble
Background: Slate Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate Marble
Pattern: Blank Waves Notes Sharp Wood Rockface Leather Honey Vertical Triangles
Welcome to TerraFirmaCraft Forums

Register now to gain access to all of our features. Once registered and logged in, you will be able to contribute to this site by submitting your own content or replying to existing content. You'll be able to customize your profile, receive reputation points as a reward for submitting content, while also communicating with other members via your own private inbox, plus much more! This message will be removed once you have signed in.

  • Announcements

    • Dries007

      ATTENTION Forum Database Breach   03/04/2019

      There has been a breach of our database. Please make sure you change your password (use a password manager, like Lastpass).
      If you used this password anywhere else, change that too! The passwords themselves are stored hashed, but may old accounts still had old, insecure (by today's standards) hashes from back when they where created. This means they can be "cracked" more easily. Other leaked information includes: email, IP, account name.
      I'm trying my best to find out more and keep everyone up to date. Discord (http://invite.gg/TerraFirmaCraft) is the best option for up to date news and questions. I'm sorry for this, but the damage has been done. All I can do is try to make sure it doesn't happen again.
    • Claycorp

      This forum is now READ ONLY!   01/20/2020

      As of this post and forever into the future this forum has been put into READ ONLY MODE. There will be no new posts! A replacement is coming SoonTM . If you wish to stay up-to-date on whats going on or post your content. Please use the Discord or Sub-Reddit until the new forums are running.

      Any questions or comments can be directed to Claycorp on either platform.

ninthworld

Members
  • Content count

    3
  • Joined

  • Last visited

Everything posted by ninthworld

  1. Have you read, understood, and followed all of the rules listed in large text at the top of the support forum? (Yes/No): Yes TFC Version #:1.7.10Forge Version #:10.13.2.1291SSP/SMP (SinglePlayer/MultiPlayer):N/ADescription:I'm trying to setup my eclipse workspace to start making addons for Terrafirmacraft, but I've run into an issue. I've downloaded the Forge (10.13.2.1291) src and run the commands "gradlew setupDecompworkspace --refresh-dependencies" and "gradlew eclipse" I cloned the terrafirmacraft github project and ran the Setup.bat I set my workspace to the forge/eclipse folder and created a new linking folder to the TFCraft/src folder. I added all four of the folders in the linked src to the build path (API, ASM, Common, Resources) I replaced the forgeSrc in the Project->Libraries with the (forgeSrc-1.7.10-10.13.2.1291.jar) from TFCraft/build/dirtyArtifacts When I run the program, I get that errors exists (because "codechicken.nei.api" doesn't exist, which isnt an issue), but I run the program anyways. The program encounters an error and can't continue: cpw.mods.fml.common.LoaderException: java.lang.Error: Unresolved compilation problems: The final field WorldType.DEFAULT cannot be assigned The final field WorldType.FLAT cannot be assigned The final field WorldType.LARGE_BIOMES cannot be assigned The final field WorldType.AMPLIFIED cannot be assignedI tried looking up how to solve this error on google, but since this is kind of a niche thing, I couldn't find any working solutions. The closest "solution" I found was adding the ([1.7.10]TerraFirmaCraft-0.79.18.673.jar) to the lib folder, adding "compile files('lib/[1.7.10]TerraFirmaCraft-0.79.18.673.jar')" to the build.gradle's dependencies section, and rerunning the"gradlew setupDecompworkspace --refresh-dependencies" and "gradlew eclipse" commands. However, even though the program now actually gets to the mojang logo, it can't get to the menu because "You have mod sources that are duplicate within your system, terrafirmacraft : bin, terrafirmacraft : [1.7.10]TerraFirmaCraft-0.79.18.673" Have you deleted your config files or are using default configs and are still able to reproduce this bug? (Yes/No):N/ADo you have any mods other than Forge and TFC installed? (Yes/No):NoIf yes, which mods?If you have Optifine or Cauldron installed, can you still reproduce the bug after uninstalling them? (Yes/No):NoPastebin.com link of the Crash Report: N/A
  2. Running TFC from eclipse workspace

    Thanks, I got it working!
  3. Running TFC from eclipse workspace

    Thanks, I followed your instructions and was able to get it working. I'm having a little trouble with this. When I created the TFCraft project, I was able to run it from eclipse by setting GradleStart as the main method. However, when I create a new project for my mod and set TFCraft as a build path project, there is no main method for me to run the game from eclipse.