RimWorld

RimWorld

262 vurderinger
[A15/A16] Where is rich soil?
   
Pris
Føj til foretrukne
Gjort til foretrukken
Fjern som foretrukken
Filstørrelse:
Offentliggjort:
Opdateret:
2.300 MB
19. okt. 2016 kl. 1:57
13. dec. 2016 kl. 9:40
2 ændringsbemærkninger ( vis )

Abonner for at downloade
[A15/A16] Where is rich soil?

Beskrivelse
Are you tired of having to seek rich soil?
This mod changes original rich soil color to be darker to make it easier to find.


https://ludeon.com/forums/index.php?topic=27551
72 kommentarer
مُتَّقِينَMUTTAKIIN 4. nov. 2024 kl. 11:03 
DO NOT UPDATE
DaTrüf! (feng shui) 25. dec. 2023 kl. 20:45 
UPDATE
Smokie 22. jan. 2018 kl. 12:25 
Endoric: I just tried to go through the whole process to setup a account to upload mods. I have no clue how to upload it. The code below works though for B18.
endoric 8. jan. 2018 kl. 3:43 
if someone here claims to have fixed it for 18 just upload it to the workshop and include credit and a link to here.
Snow 4. jan. 2018 kl. 7:50 
B18 update coming anytime soon?
k1LLz0Rz 11. dec. 2017 kl. 22:31 
Woot!
Thanks for the feedback ZeProfessional, this (albeit minor) success makes me want to learn more haha.
ZeProfessional 11. dec. 2017 kl. 11:55 
@k1LLz0Rz

Your recent fix seems to be working so far with no problems. Will update if any arise cause I have no clue what I'm doing otherwise. Thanks!
k1LLz0Rz 9. dec. 2017 kl. 22:04 
@ebonite & Blaze

First off, thank you for giving enough info that I'm pretty sure I was able to figure this out!
I'm just learning how to tinker with XML files / just getting into modding, and want to learn properly.
Would one of you cats (or anyone else with experience / skill in this area) mind telling me if this edit looks right in order to get this working with B18?


<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<TerrainDef>
<defName>SoilRich</defName>
<label>rich soil</label>
<texturePath>SoilDark</texturePath>
<edgeType>FadeRough</edgeType>
<renderPrecedence>335</renderPrecedence>
<pathCost>2</pathCost>
<statBases>
<Beauty>-1</Beauty>
<Cleanliness>-1</Cleanliness>
</statBases>
<affordances>
<li>Light</li>
<li>Heavy</li>
<li>GrowSoil</li>
<li>Diggable</li>
</affordances>
<terrainFilthDef>FilthDirt</terrainFilthDef>
<fertility>1.4</fertility>
<takeFootprints>True</takeFootprints>
</TerrainDef>
</Defs>
k1LLz0Rz 9. dec. 2017 kl. 21:38 
@Reaper & Enlon

Assuming I've figured this out properly, the directory you're looking for to edit the XML file (at least on my current setup) is roughly as follows -

C:>Program Files> Steam>steamapps>workshop>content>294100>783475829>Defs>TerrainDefs

Then right click on the XML file and tell it to "Open With" Notepad, so you can edit things!
Ebo 30. nov. 2017 kl. 14:44 
So, TerrainDefs and /TerrainDefs to Defs and /Defs

EdgeType
RenderPrecedence
PathCost
TerrainFilthDef
Fertility
TakeFootprints

all have the FIRST character changed to lower case. Remeber to get BOTH instances of the above items (on either side of the data)

<EdgeType>FadeRough</EdgeType>

becomes

<edgeType>FadeRough</edgeType>