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.

Emris

Members
  • Content count

    546
  • Joined

  • Last visited

Posts posted by Emris


  1. If you give up so fast, then maybe moding is not for you.

    Anyway, how to run java apps in eclipse has nothing to do with minecraft moding, but you could setup a new separate forge dev env and have a look at the "Run Configurations..." there.

    Also -- http://www.minecraftforge.net/forum/ -- is a good place to find the right info.

     

    I use these setting:

    CLIENTMain class: net.minecraft.launchwrapper.LaunchProgram arguments: --version 1.6 --tweakClass cpw.mods.fml.common.launcher.FMLTweaker --accessToken modstest --userProperties {} --username=[your user name] --assetIndex 1.7.10 --assetsDir "C:Users[your os user name].gradlecachesminecraftassets"VM arguments: -Xmx1G -Xms1G -Dfml.ignoreInvalidMinecraftCertificates=true -Dfml.coreMods.load=com.bioxx.tfc.TFCASMLoadingPluginSERVERMain class: cpw.mods.fml.relauncher.ServerLaunchWrapperProgram arguments:VM arguments: -Xmx1G -Xms1G -Dfml.coreMods.load=com.bioxx.tfc.TFCASMLoadingPlugin
    0

  2. That tutorial covers the standard forge setup, TFC is not using that setup, at all. And even if you manage to setup a dev environment with that setup, you will get errors because the TFC core mod stuff was not integrated correctly.

     

    All you need to do is use a few commands in the TFC directory.

    - gradlew SetupDecompWorkspace

    - gradlew eclipse

    Then import a new project into your eclipse workspace using the TFC directory as source.

    0

  3. Server IP: 62.178.245.147:21212

     

    Server Info:

    If you have a really cool idea for a tree, and you would like to design and present it, this would be the place to do just that :)

    Really cool tree designs have a chance to be added to the next TFC release.

    This Server uses MC 1.6.4 and Forge 9.11.1.965 because WorldEdit is still not updated to MC 1.7.10.

     

    Needed Mods:

    Forge 1.6.4-9.11.1.965

    TreeControl_1.6.4-0.1.zip

     

    I also recommend:

    Smart Moving 14.6.1 (also needs PlayerAPI_Core 1.2)

     

    That's it, have FUN :)

    0

  4. You are using the wrong Forge version --> forge-1.7.10-10.13.2.1230-universal.jar

     

    To copy&paste the info on the download page :)

    TFC Beta 0.79.9.357 For MC v1.7.10 (Built using Minecraft Forge v10.13.1.1217)

     

     

     

    EDIT: And i think only Optifine Lite works good with TFC.

    0

  5. The project is already updated to 1.7.10 and running smoothly, all i need to do now is add the new BC stuff and do some rebalancing so everything fits into B79.

    But because of sooo many new things on both sides, it may take some time before i'm done.

    I would also like to add a few new things like the rubber tree, and maybe change a few machines to multipart structures and some other things too :)

    All i can say is, i'll do my best to finish it as fast as possible :)

    1

  6. [09:36:18] [main/ERROR] [FML]: An error occurred trying to configure the minecraft home at C:UsersCharlie'sAppDataRoaming.terrafirmacraft for Forge Mod Loader

     

    What launcher are you using?

    Can you give us a step-by-step of how you are setting up things?

    0

  7. For B79+

     

    You can also use the "assets/terrafirmacraft/sounds.json" file to add any kind of .ogg music file you would like to hear in TFC.

     

    Just copy your .ogg music files to the "assets/terrafirmacraft/sounds/music" directory in the TFC .jar file and edit/add them to the sounds.json file. They will then get loaded on game start.

    example:

    "music.tfc": {    "category": "music",    "sounds": [	    {"name": "music/m0", "stream": true},	    {"name": "music/m1", "stream": true},	    {"name": "music/m2", "stream": true},	    {"name": "music/m3", "stream": true},	    {"name": "music/m4", "stream": true},	    {"name": "music/m5", "stream": true}    ]}

    where "music/m5" is your music file. Do NOT add a "," to the last line !

     

    Have fun :)

    1

  8. That code uses the forge event system and is not changing anything in the onItemUse method, so i would say it's a gray area :)

    0

  9. If you mean changing or overriding a method of a TFC item or block, then the answer is no.

    If you want to change something like the onItemUse method, make a GitHub issue or PR, but i would first discuss that on IRC or forum first.

    0