Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

N0b0dy724

34
Posts
135
Followers
99
Following
A member registered Jul 15, 2022 · View creator page →

Creator of

Recent community posts

Thanks for the info...I didn't realize it doesn't work with the one from the Giants Modhub.  I have uploaded the correct one which will work

Hi MRG!! Great job on the map!! One question is there a manure load point on the south barn?  Also, I noticed the barns have milk and slurry setup?  Do you have to add milk and slurry storage to get them to work or will it only work with beef?  Thank you again for a great map!!

Hi...The mod is still not working correctly with Courseplay.  I talked to the Courseplay guys and they say the old FS19 Collision needs to be removed.  Would you be able to update this?  I have tried a few things but I am not a modder and am not sure what exactly needs to be changed.

Standard size map

From the auther:

Farm the river bottoms in this TN/KY inspired map tailored towards player creation. Large equipment does not lend itself well with this map. I say again, LARGE EQUIPMENT DOES NOT LEND ITSELF WELL TO THIS MAP. It is made for small/mid size equipment. 

Try deleting these objects in Giants Editor..I think these might be what you are looking for

My farm build on the north lot

I believe the houses are not setup as placeables on the map so the only way to delete them is via Giants Editor.  Sorry about that.

Thank you my friend, but all the credit goes to you for creating such a fantastic map!  

I am not sure..on this edit I just change some XML files and remove some of the buildings at the north farm so I would not think it would require a new save game, but always best to back up your files before installing this map since they are named the same.

just regular corn. 

Thank you!

There was a bug that happened on some maps as a result of an update Giants released.  Just required a quick code update.

I disabled the Premium pack but am seeing these 2 errors

2023-12-28 12:35 Error: Failed to open xml file 'C:/***/***/***/Documents/My Games/FarmingSimulator2022/mods/FS22_Taheton_County/maps/mapUS/placeables/waterFillTriggers/waterFillTriggers.xml'.

2023-12-28 12:36 Error: Failed to open xml file 'C:/***/***/***/Documents/My Games/FarmingSimulator2022/mods/FS22_Taheton_County/maps/mapUS/placeables/buyLiqFert.xml'


Looks like these files are missing from the zip file.

Just curious if you will be releasing all of your custom textures? (not sure if you created more?)

Soo cool to see the collaboration!  Fantastic work my friend!

Is anyone else having an issue with the grain dryers only showing the amount of corn and dried corn in them?  Even though you can load other crops like soybeans, wheat, etc.

You can update it yourself..I was able to get it fixed.  

Add this line  pos *= instanceData.w; to the terrainshader.xml right above the line return pos + instanceData.xy; and rezip the map file.


float2 getPatchCoords(VS_INPUT In, ObjectParameters& object)

{

    float4 instanceData = object.terrainInstanceData;

    float2 pos = In.position.xy;

    uint deltaRaw = floatBitsToUint(instanceData.z);

    uint4 deltas = unpackUint4x8(deltaRaw);

    if (pos.x == 0) {

        uint levelDelta = deltas.x;

        pos.y = float(((int)pos.y >> levelDelta) << levelDelta);

    } else if (pos.x >= object.terrainPatchOffset.x-1) {

        uint levelDelta = deltas.y;

        pos.y = float(((int)pos.y >> levelDelta) << levelDelta);

    } else if (pos.y == 0) {

        uint levelDelta = deltas.z;

        pos.x = float(((int)pos.x >> levelDelta) << levelDelta);

    } else if (pos.y >= object.terrainPatchOffset.x-1) {

        uint levelDelta = deltas.w;

        pos.x = float(((int)pos.x >> levelDelta) << levelDelta);

    }

    pos *= instanceData.w;

    return pos + instanceData.xy;

Not sure why, but when the game is set to automatic transmission mode the tractor will not shift into 8th gear and does not get to full speed...stays stuck at 11mpg