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. Imagine a world where you need gypsum for bloomeries. Think on that for a while.

    I stand corrected.

    Bloomeries works only with brick blocks.

    It would still be possible though, only MUCH harder.

    You would have to work with zinc, tin or bismuth and a firepit, making enough pickaxes and propicks until you find Gipsum... and then be able to make a bloomery.

    Come to think of it, i would probably need about 2 or 3 tin pickaxes to find gipsum... but maybe i'm just lucky at mining :)

    0

  2. Why not use Gypsum in mortar recipe?

    That would put an unused mineral to gut use.

    note: I started playing Dworf Fortress, and now i'm getting all kinds of ideas :)

    2

  3. [sTDERR] java.lang.NoSuchMethodError: iq.getServerPlayerBase(Ljava/lang/String;)LServerPlayerBase;

    [sTDERR] java.lang.NoSuchMethodError: ays.getPlayerBase(Ljava/lang/String;)LPlayerBase;

    It's a PlayerAPI problem. I use version 1.7 for MC 1.4.6

    Maybe the order is not right.

    1) Forge 486

    2) PlayerAPI 1.7

    then

    3) TerraFirmaCraft B75

    4) [Other mods]

    0

  4. Did you also install PlayerAPI?

    And to help you, we need more information... a crash log would also help a lot.

    You can also take a look at my signature, maybe you missed something.

    and ... Welcome to the Forum :)

    0

  5. ... exploding, but Dunk can't change explosion damage without making base edits, which would break forge compatibility. ...

    Actually, all it would take is to add this code to EntityHurtHandler.java

    else if(event.source == DamageSource.explosion)		{			event.ammount = 500;		}

    500 being the damage to any living entity.

    edit: you could make that to "+= 500;" , that would add 500 damage to vanilla damage, that way TNT would also work properly ....that is if we had any :)

    0

  6. A small update on the StackOverflowError.

    Checking so many blocks with the way how they are checked, the default java stack size runs out of memory.

    So this can't really be called a bug.

    To solve this problem, you have to add -Xss4M (or at least -Xss2M) to your server start script.

    This will make the memory stack big enough to handle 25x25x13 block checking.

    0

  7. There are many GitHub repositories of mods that are for MinecraftForge.

    MinecraftForge is also on GitHub.

    To list just a few:

    MinecraftForge => https://github.com/MinecraftForge

    ForgeCommands => https://github.com/keepcalm/ForgeCommands

    Necessities => https://github.com/kdx7214/necessities/

    ForgeEssentials => https://github.com/ForgeEssentials/ForgeEssentialsMain

    and also my code

    https://github.com/emris?tab=repositories

    And much more for Forge and also Bukkit.

    Much to learn i'd say :)

    0

  8. I know that for many players things like flying or warping are not so interesting in TFC.

    But for some, it would be a nice feature.

    So i made a /fly server side mod. (works in Singleplayer also)

    It has no permission system and ones installed, anyone can use the /fly command.

    But it works really nice with Permission system mod from fihgu

    http://www.minecraft...vanilla-server/

    Download => Fly.zip v1.2

    Changes

    1.2

    It works in Singleplayer now.

    1.1

    No more damage on landing (When /fly is activated, there is no fall damage at all...still working on that one)

    Have fun with it :)

    0

  9. If it's only the new items you need for other "tech" mods, i guess you could make a mod that use TFC items to create the needed/missing items for these mods.

    Though it wouldn't be that believable from the TFC point of view, but it would give items that other mods need.

    0

  10. Well i changed my mod so i can make any kind of pit size now. (for science :) )

    A few pics:

    9x9x9 starting the fire in the first left block, and not in the middle.

    Posted Image

    Posted Image

    20x2x3 also starting the fire in the first left block

    Posted Image

    Posted Image

    As you can see, all logs turned into charcoal 12 blocks away from the fire.

    This gave me an idea to test other sizes, and i managed to reproduce the BUG that took down Raiser server when Jee and i tried to fire up the 25x25x13 pit.

    One of the fixes for this bug is very simple. The code is in TileEntityTerraFirepit.java

    In "private void ProcessPile(....)" this needs to be changed from

    while(!reachedTop && j+y >= 0)
    to

    while(!reachedTop && j+y >= 0 && y < 13)
    This will make sure that only 12 blocks above the fire will be processed and the array will not go over board.

    But i don't think we had that problem on Raiser server...our pit is 13 blocks high.

    The other bug is a StackOverflowError, and i'm still trying to pinpoint that one.

    It happens with a pit that is 25x25x13 or bigger. (I still have to find all the sizes where this happens)

    Update coming soon....

    0