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.

VegasGoat

Members
  • Content count

    253
  • Joined

  • Last visited

Everything posted by VegasGoat

  1. It was nice to come back after so long and still have everything in place. Good to see people on a lot too. I've decided to build a new road from the area I live SW of spawn back to spawn, since crossing the ocean in winter is such a pain. It'll take a while, but the area around me is mostly unsettled so it'll give new towns another option.
  2. [Solved] Serios frame rate drops

    Try turning off VSync, I've had issues before that were solved by that. Another thing to try is running a server on the same machine, then connecting to that in multiplayer mode (use 127.0.0.1 as the address). I used to do that with my old computer which helped a lot.
  3. Hang gliders!

    Man, that would be really fun to just be able to jump off the top of one of the huge mountains you see in TFC and glide down.
  4. Open Air Latrine Design

    This is pretty much how I start every game too (I also only do hardcore for single player worlds). I use thatch for an entry door since it's easily broken by hand to get back in. Also, a torch in the center keeps the 7x7 area lit where mobs won't spawn.
  5. Staying with 1.6.4 discussion

    I'd say you should just stay on 1.6.4 unless you really need something that 1.7 has (performance, the translation stuff, whatever). Since this is a total conversion mod, upgrading is always going to cause a lot of work on bug fixing and undoing vanilla changes. I'd rather see effort put into new gameplay and features. MC 1.8 is right around the corner and then you're going to have to do this all again if you keep trying to stay up to date. Like ___Frank said, you don't want to be constantly playing catch up and not working on new features. At least wait until Mojang stops rewriting all the code and then port to that version, whatever it may be.
  6. [Solved] HELP!

    Do you still have to break them to pick them up? Do you have graphics set to fast? I remember reading that they only look flat on the ground with fancy graphics. Edit: Simulpost...
  7. The images don't show up, try using imgur.com to post them or use the attachment feature of these forums. The server is up all the time, you can go to the tfc.happydiggers.net website and see the map with people playing. Must be a connection problem on your end. Make sure you're putting the port in the address field, like: "tfc.happydiggers.net:4000"
  8. Well from that same post I quoted, Bioxx says FoodDecayRate shouldn't be less than 1. Maybe go back to the defaults since 78.12 changed the way it works, and reassess from there.
  9. Volunteering.

    The code is on github, you can clone it and submit pull requests. People do it all the time. I'm actually not sure how they feel about posting the actual link to the code here, though. So your first test is to find it
  10. You might want to re-download and install 78.12 because of this fix to food decay.Right now the decay on the server is wacky, where in hot climates food decays really fast and in cold ones it actually removes decay.
  11. Bugs report: Decay going crazy,egg,fences

    There was a "ghost fix" in 78.12 for decay (there's a newer version of 78.12), so try downloading it again if that's the version you're running. http://terrafirmacraft.com/f/topic/5566-decay-not-working-when-changing-fooddecaymultiplier-in-new-config-7812/#entry78890
  12. Damage Types

    I think it's fine that skeletons are basically immune to piercing damage. It's believable and provides for interesting gameplay that promotes using different weapons. Not having any kind of ranged weapon to deal with them is a valid point though, or some way to get close without taking damage. A shield would be nice. And if that dumb vanilla mechanic of shooting faster the closer you get is still there, that needs to go as well.
  13. Sorry I was responding to the part about possibly adding a plugin to automatically replant saplings. Planting some of the missing tree types would be nice. Maybe do it in some randomly chosen locations instead of at spawn so someone would have to get lucky and find them. Sort of makes it fair and similar to how lucky people find nickel or graphite while others don't.
  14. I'm not really a math guy, I'm just a programmer, so anything I say can be wrong. Usually the math guys just give me a formula to implement. But I think the difference is what happens when "mult" is less than 1. In the currently implemented formula you end up with less decay than when you started, which shouldn't happen. I don't know if my proposed solution will work or not but I think it might.
  15. I don't think you should do anything about people not replanting trees. Deforestation is part of TFC.
  16. You're right. Seems like there could be issues if any of the other multipliers are less than 1 as well. I'm guessing the code should really look like this instead: float baseDecayToAdd = (decay * Global.FOOD_DECAY_RATE) - decay;float adjustedDecayToAdd = baseDecayToAdd * thisDecayRate * environmentalDecay * protMult * TFCOptions.decayMultiplier;decay += adjustedDecayToAdd;Global.FOOD_DECAY_RATE will always need to be 1.0 or greater, but other than that the other multipliers can be between 0 and 1 and always result in decay being added. Need to make sure they're not negative also.
  17. Setting up our own decay rate.

    ... and I see you already fixed it 20 minutes ago. Nevermind
  18. Setting up our own decay rate.

    I end up with 2.71, not 1.5. I think there's something wrong with your equation where you're dividing by 24. I think you really just want to multiply it and remove the divide by 24 and not add the result (the result is the new decay). So this: decay = ((decay * Global.FOOD_DECAY_RATE) * thisDecayRate * environmentalDecay * protMult)*TFCOptions.decayMultiplier; Doing that equation 24 times I get 1.5, with initial decay value of 1. Example C++ code: #include <cstdio>int main(int argc, char* argv[]){ float decay = 1; float rate = 1.01703789660558695; printf("Initial decay: %.10fn", decay); int ii; for(ii=1; ii<=24; ++ii) { decay = decay * rate; printf("Decay after %d hours = %.10fn", ii, decay); } printf("Final decay: %.10fn", decay); return 0;}
  19. Setting up our own decay rate.

    Hmm so if there's no additional decay added every tick, why didn't the OPs change to make it 1.5 after 72 days work? With that setting he should have seen barely any decay after 72 days, right?
  20. Setting up our own decay rate.

    The way I understand it is that every hour, the amount of decay is multiplied by that rate, then new decay is added. Hopefully it's not the other way around, which would be worse as you'd be multiplying that new decay right when it was added. So in theory, over 24 hours you'd have 50% more decay than if you didn't have the compounding effect (imagine you removed the decayed amount every hour). That's why rate^24 = 1.5. I'm not sure if it really works out that way or not, because the 1.5 number isn't accounting for the new decay being added every hour. I'll have to write a program to see what really happens. Also, there's going to be a set amount of decay no matter what you do. So if decay is .1 oz per hour on average, after 1728 hours you'd get 172.8 oz of decay even if the rate was 1.0. Setting it to less than 1.0 will probably remove decay.
  21. Gold Panning

    You don't have to make them tile entities, you could use two different block IDs or block subtypes for natural vs. placed gravel. Then you make the natural gravel block drop an item of the placed gravel type when broken. Sorry to keep posting about this, I just wanted to clear up what I was saying. I get the idea that you're not interested so I'll stop. I just liked the idea of using the gold pan and sluice as a prospecting tool, which is gone now. I guess it's not really necessary since you can see ores on the ground now.
  22. I guess I don't ever need to worry about food again thanks to horse auto-breeding:
  23. Gold Panning

    I meant tagging the gold pan with the gravel in it, which already doesn't stack. Or using something like a bucket to pick up gravel for the sluice, which could be tagged the same way. The point about not making it overly complicated makes sense though.
  24. Gold Panning

    What about scanning the area on pickup and tagging the gold pan with the possible metal types? To prevent people placing new gravel in an area with rare metals you could have a separate subtype for naturally spawned gravel vs. placed gravel. Then you could do something similar with buckets to load up a sluice. - You get the metals from the area near where you picked up the gravel, not where you process it - Prevents infinite production because you can only use the gravel that naturally spawned there - Only need to scan the area when the gravel is picked up
  25. I think you're out of luck and these 2 mods just can't work together. They're both modifying the player's armor inventory (TFC adds a back slot for the quiver, BattleGear looks like it adds a bunch of slots for weapons and such). My guess is that BattleGear has replaced the player's armor inventory with its own class which doesn't match what TFC expects.