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.

Bunsan

Administrators
  • Content count

    1,443
  • Joined

  • Last visited

Everything posted by Bunsan

  1. Information request: Adding new ores to TFC

    The TFCOre config allows you to enter the ID and spawning conditions of any block. This would make "veins" of your stone generate in world like ore does.Yes you'd need the block first. There probably isn't a need to make your stone type behave exactly like TFC stone with the cave-in mechanic. You can do things like implement ISize to give it size properties and make it drop items instead of blocks.
  2. [0.79.28+] TerraFirmaStuff

    Added a bit more. There are now oil lamps for all the other metals and alloys. There are also the ability to combine sticks into bunches and combine the bunches into Bundles of sticks with twine. Twine is crafted using jute and a spindle. These can be uncrafted with a knife and will give a chance of recovering your twine. Info in the OP.
  3. TerraFirmaCraft on New Minecraft Launcher

    No idea for the new MC launcher. I thought there was way to force old launcher. You could try which does the heavy lifting for you.
  4. Chunk corruption?

    No Meksends players on a server config files from the server. This is normal. I don't know the reason for your corruption or why there is an error in the chunk file location. Looking at the mods you've crammed in there I'm not surprised you are having issues.
  5. Torches don't go out in Rain

    Adding this just so it is noted if against all odds there is an update. Due to theAdded consistency to rain checks commit torches no longer go out when it rains. The relevant section of code is https://github.com/Deadrik/TFCraft/blob/master/src/Common/com/bioxx/tfc/Core/TFC_Core.java#L1384-L1395 public static boolean isExposedToRain(World world, int x, int y, int z) { int highestY = world.getPrecipitationHeight(x, z) - 1; boolean isExposed = true; if (world.canBlockSeeTheSky(x, y + 1, z)) // Either no blocks, or transparent blocks above. { // Glass blocks, or blocks with a solid top or bottom block the rain. if (world.getBlock(x, highestY, z) instanceof BlockGlass || world.getBlock(x, highestY, z) instanceof BlockStainedGlass || world.isSideSolid(x, highestY, z, ForgeDirection.UP) || world.isSideSolid(x, highestY, z, ForgeDirection.DOWN)) isExposed = false; } After it checks if it can see sky it used highestY to determine if there is a transparent block above the torch. However if there is no block above the torch then the highestY is the block the torch is on/above. To fix I'd suggest. if (highestY > y && (world.getBlock(x, highestY, z) instanceof BlockGlass || world.getBlock(x, highestY, z) instanceof BlockStainedGlass || world.isSideSolid(x, highestY, z, ForgeDirection.UP) || world.isSideSolid(x, highestY, z, ForgeDirection.DOWN))) isExposed = false;
  6. How do you tame/ride a horse?

    You need to familiarize it enough that it will let you ride it.
  7. Cave-ins not working properly

    I'd say you are the chosen one of RNGesus. I certainly see cave ins working properly with default configs. You say you have other mods loaded, but don't list them you included a screenshot of config. Run just TFC and see if cave-ins occur. Likely the blame is a mod you are running or random good luck.
  8. [0.79.28+] TerraFirmaStuff

    0.2 version. I've reworked recipes and simplified chisel modes. Tiles and bricks are all crafting recipes. Stone tile blocks were also added.Raw clay is coloured and cooked. Raw clay blocks are crafted into bricks and cooked. These are used for crafting clay brick and tile blocks. Stone blocks can be crafted into pillars and circle patterns. Adds Jet, serpentine (worldgen must be added by player) and quartz (uses vanilla quartz ore dictionary) blocks. Adds wood plank fences. Changed chisel mode icons to be more blue to differentiate from TFC modes. Ill update the OP when I have time. https://jenkins.dries007.net/job/TerraFirmaStuff/lastSuccessfulBuild/artifact/build/libs/%5B1.7.10%5Dterrafirmastuff-0.2.jar
  9. Gimme' Limestone,My Lord...

    There are 21 stone types that can spawn on top layer. 4 are flux stones. So 19% chance. If you have Rock Salt you can find Borax as well. There are 13 stone types that can spawn in second layer. 1 is flux stone. So 7.7% chance. Add some RNG and large rock biomes. Welcome to TFC.
  10. B79 Food Preservation

    This is the part of code to look at. Look at the getEnvironmentalDecay and handleItemTicking stuff. https://github.com/Deadrik/TFCraft/blob/master/src/Common/com/bioxx/tfc/Core/TFC_Core.java
  11. Chunk corruption?

    It isn't their bug. This is a minecraft issue. The fact it points at TFC blocks is due to fact world is made up of TFC blocks.
  12. Chunk corruption?

    Use Minecraft Region Fixer to try and repair corrupted regions.
  13. TFC Reloaded world corrupt after power outage.

    Did you try Minecraft Region Fixer?
  14. As per our discussion I've added this to TNFC. Honestly can't think why I hadn't before. Great little addon.
  15. That isn't a TFC recipe. It is a recipe added by TTC-Tech using TFCs API. TFC-Tweaker only removes TFC recipes.
  16. Red Steel Problem

    Yeah a good portion of the wiki is updated, but quite a few aren't still. Pretty much only Kitty can edit wiki, although with approval some can save work pages for her to integrate. However she finished school last spring and is working now, so I don't see any edits forthcoming. When you run into roadblocks it is best to do what you did andask here. There are a few around that can give you correct info. Also if you have NEI and the TFC NEI plugin you can get correct alloy %s and other TFC specific recipes.
  17. Red Steel Problem

    The wiki is correct. It says 50-55% http://wiki.terrafirmacraft.com/Alloys
  18. Red Steel Problem

    Black Steel is 50-55%. You have 60%
  19. How working ore gen in TFC and how I can change it?

    This topic might help out. I'd suggest setting rarity to 0 to disable the generation, but have not tested myself.
  20. Crash

    Ah yes there is a well known bug with nvidia drivers and MC.
  21. Quick question about rainfall.

    Rain you see in game is not related to the rainfall area value he is talking about. Weather in minecraft is global.
  22. Crash

    That is not a crashlog andhttp://terrafirmacraft.com/f/forms/2-support/
  23. Crash

    Fill in the report form and post actual crashlog please. Images aren't helpful.
  24. Be aware Technic is a no go on these forums.