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

Posts posted by ninthworld


  1. My Run Configuration looks like this:

     

    Main class:

    net.minecraft.launchwrapper.Launch

     

    Program argumants:

    --version 1.7 --tweakClass cpw.mods.fml.common.launcher.FMLTweaker --username=YourMCName --accessToken FML --userProperties={} --assetIndex 1.7.10 --assetsDir C:UsersYourName.gradlecachesminecraftassets

     

    VM argumants:

    -Xincgc -Xmx2G -Xms1G -Dfml.ignoreInvalidMinecraftCertificates=true -Dfml.coreMods.load=com.bioxx.tfc.TFCASMLoadingPlugin

     

    Working directory:

    ${workspace_loc:AddOnPath/run/Client}

     

    Thanks, I got it working!

    0

  2. The problem is that you installed forge separately. The TFC repo already has a gradle script that will handle forge installation. Just follow this guide (you can just run Setup.bat instead of the two gradlew commands):

     

     

    Thanks, I followed your instructions and was able to get it working.

     

     

    After you have a working TFC project you can make your own addon project in almost the same way.

    You can take a look at my simple project here ->  https://github.com/emris/LeatherWaterSacTFC

     

    The only difference is that after adding your addon project to the workspace, you have to do a bit of cleaning up in your Referenced Libraries and add the TFC project in the Projects tab in Java Build Path. I never tried it but it should even work if you delete all of the libraries because they are all a part of the TFC project, and by adding the TFC project as a dependency all the needed libraries can be found there.

    Add a new Run Configuration... for your addon and all should work for the development part.

    I also define different "Working directories"(which i name "runClent" and "runServer") in the "Run Configuration" for every project, that way nothing gets mixed up :)

     

    Building your addon with "gradle build" will not work, because gradle cant find TFC. For that to work just build the TFC project and copy the *deobf*.jar into the "libs" directory where your addon is. You may need to create the libs directory first. Gradle looks in the libs directory for any dependencies it needs to build your addon project successfully.

    You may also need to copy the "dirtyArtifacts" from the TFC project to your addon build directory, not sure if gradle needs it for building or not.

     

    I hope this gives you an idea of at least one way of how you can setup a TFC addon project dev env.

     

    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.

    0

  3. 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.10 Forge Version #: 10.13.2.1291 SSP/SMP (SinglePlayer/MultiPlayer): N/A Description: 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 assigned 

    I 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

    0