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.
Fasti

79.26 seed with good trees/pretty

5 posts in this topic

Im having such a hard time finding a seed. Its not even the ores or anything, i make a seed and i always has ash trees in it. Im using a shader and the grass seems a bit lighter, and the ash trees have such a bright and gaudy texture and conflict so much and the planks themselves are bad as well. UGH!

 

I need a seed to fit at least these requirements:

-No ash/acacia/willow trees near starting rock type biome or immediately surrounding it (preferably nowhere, acacia/willow demolish my fps using a shader...and just eff ash trees)

-Aesthetically pleasing - Hugely important to me over most else

 

My ideal seed would include:

-Aspen or birch with a normal tree mainly (normal in reg minecraft, not like white elm/douglas fir)

-Has douglas fir like tree nearby however

-Near/in fluxstone

-Has Gabbro in a surrounding(or in) rock type(playing technode and might need diamonds)

-Has Metamorphic AND Sedimentary rock types nearby

-Mostly i just want it to look good so i can enjoy playing it :)

 

Im going to sink all my free time into playing technodefirmacraft and set up my mods/shaders, spent almost 2 days configuring them and adding recipes/changing oredic. I just want to have a great time playing this and the last thing i need is a seed that looks good!

 

Edit- im getting sorely unlucky, sycamore has the same color leaves, wood looks great tho....i just looked for awhile....17 tries in a row where i got sycamore or ash (mostly ash) as soon as i boot up the world! 17!

Edited by Fasti
0

Share this post


Link to post
Share on other sites

Ill take anything at this point without ash trees/sycamore. If you could post a xyz spot where a small hill meets a lake, or a sweet river.

Edited by Fasti
0

Share this post


Link to post
Share on other sites

Hey, thanks Terex! Ill be sure to check it out, if not outright go with it. I tweaked my shaders (sildurs) a bit, i tried SEUS and the sun was messing up and the water was greenish and seethrough all the way to the bottom, i can't tell from your pictures, but did you change anything with the sun or water, besides adding TFC/stream water ids?

Edited by Fasti
0

Share this post


Link to post
Share on other sites

More screenshots in this thread (taken at a later date): http://terrafirmacraft.com/f/topic/8879-single-player-world-gallery/

 

I use the latest SEUS 10.2 preview 1 shaders. I tweaked the water IDs to render properly (use NEI add on to find out the IDs). In gbuffers_water.vsh:

if (mc_Entity.x == 8 || mc_Entity.x == 9 || mc_Entity.x == 700 || mc_Entity.x == 701 || mc_Entity.x == 702 || mc_Entity.x == 703 || mc_Entity.x == 704 || mc_Entity.x == 705 || mc_Entity.x == 706 || mc_Entity.x == 707 || mc_Entity.x == 708 || mc_Entity.x == 709 || mc_Entity.x == 710 || mc_Entity.x == 711 || mc_Entity.x == 712 || mc_Entity.x == 713 || mc_Entity.x == 714 || mc_Entity.x == 715 || mc_Entity.x == 716 || mc_Entity.x == 426 || mc_Entity.x == 427 || mc_Entity.x == 428 || mc_Entity.x == 429 || mc_Entity.x == 430 || mc_Entity.x == 431) {iswater = 1.0f;}

Also, i tweaked the shadows to render properly because they flicker a lot by default. To remove the flicker, you must edit the gbuffers_terrain.vsh file and reduce the amount of waviness of the tree leaves by the wind. 

First remove all lines with reference to Biomes o plenty to avoid ID conflicts:

//Leaves	if   ( mc_Entity.x == 18.0 		|| mc_Entity.x == 1962.0f //Biomes O Plenty: Leaves		|| mc_Entity.x == 1924.0f //Biomes O Plenty: Leaves		|| mc_Entity.x == 1923.0f //Biomes O Plenty: Leaves		|| mc_Entity.x == 1926.0f //Biomes O Plenty: Leaves		|| mc_Entity.x == 1936.0f //Biomes O Plenty: Giant Flower Leaves		|| mc_Entity.x == 161.0f //Biomes O Plenty: Giant Flower Leaves		 ) {		materialIDs = max(materialIDs, 3.0f);	}	

Then edit float speed of leaf waviness to 0.05: 

#ifdef WAVING_LEAVES//Leaves//			if (materialIDs == 3.0f && texcoord.t < 1.90 && texcoord.t > -1.0) {		float speed = 0.05;

I also edited composite1.fsh to reduce the sun's brightness during the day. It is really bright by default.

 

Edit the value 0.9f to 0.45f for good result (second line below):

//Apply lightmaps to albedo and generate final shaded surface	vec3 finalComposite = final.sunlight 			* 0.45f 	* 1.5f * sunlightMult				//Add direct sunlight						+ final.skylight 			* 0.045f				//Add ambient skylight						+ final.nolight 			* 0.0002f 			//Add base ambient light						//+ final.bouncedSunlight 	* 0.005f 	* sunlightMult				//Add fake bounced sunlight						//+ final.scatteredSunlight 	* 0.02f		* (1.0f - sunlightMult)					//Add fake scattered sunlight						//+ final.scatteredUpLight 	* 0.0015f 	* sunlightMult						+ final.torchlight 			* 5.0f 			//Add light coming from emissive blocks						+ final.glow.lava			* 2.6f 									+ final.glow.glowstone		* 5.1f 									+ final.glow.fire			* 0.025f 									+ final.glow.torch			* 1.15f 							+ final.heldLight 			* 0.05f								;

I think that's all i did. GL!

Edited by Terex
0

Share this post


Link to post
Share on other sites