安裝 Steam
登入
|
語言
簡體中文
日本語(日文)
한국어(韓文)
ไทย(泰文)
Български(保加利亞文)
Čeština(捷克文)
Dansk(丹麥文)
Deutsch(德文)
English(英文)
Español - España(西班牙文 - 西班牙)
Español - Latinoamérica(西班牙文 - 拉丁美洲)
Ελληνικά(希臘文)
Français(法文)
Italiano(義大利文)
Bahasa Indonesia(印尼語)
Magyar(匈牙利文)
Nederlands(荷蘭文)
Norsk(挪威文)
Polski(波蘭文)
Português(葡萄牙文 - 葡萄牙)
Português - Brasil(葡萄牙文 - 巴西)
Română(羅馬尼亞文)
Русский(俄文)
Suomi(芬蘭文)
Svenska(瑞典文)
Türkçe(土耳其文)
tiếng Việt(越南文)
Українська(烏克蘭文)
回報翻譯問題
It is also important that the name of the resource you need coincides with how it is called not in the game, but in the files. The error is hidden somewhere here.
Here are the Recipes_Mining.xml & Buildings_Mines.xml file location. (The steam library is not exactly the same for everyone, if you do not know where it is, you can search on Youtube to see where to locate it.)
G:\SteamLibrary\steamapps\workshop\content\294100\1545681321\Defs\RecipeDefs\Recipes_Mining.xml
G:\SteamLibrary\steamapps\workshop\content\294100\1545681321\Defs\ThingDefs_Buildings\Buildings_Mines.xml
1. In Recipes_Mining.xml, copy and paste the below code above or below the original one.
<RecipeDef ParentName="MiningWork">
<defName>Excavate_ Steel </defName>
<label>mining Steel </label>
<description>mining Steel .</description>
<jobString>Mining Steel .</jobString>
<!--
Steel is worth 1.37 silver/unit
1.37 x 332 ticks/silver = 455 ticks
-->
<workAmount>655</workAmount>
<products>
< Steel >10< /Steel >
</products>
</RecipeDef>
Then edit all the "Steel" to the item you want, for example, I used copper from Project RimFactory - Materials. (Steel -> copper)
<RecipeDef ParentName="MiningWork">
<defName>Excavate_copper</defName>
<label>mining copper</label>
<description>mining copper.</description>
<jobString>Mining copper.</jobString>
<!--
copper is worth 1.37 silver/unit
1.37 x 332 ticks/silver = 455 ticks
-->
<workAmount>555</workAmount>
<products>
<PRF_Copper>10</PRF_Copper>
</products>
</RecipeDef>
You should pay attention from the below phrase
<products>
<PRF_Copper>10</PRF_Copper>
</products>
the PRF_Copper is the ore ID from the ProjectFactory - Materials mod, you should find this ID from that mod folder and scrool through all .xml file to find it.
2. As for Buildings_Mines.xml, it will be simple. Just copy the below and paste it above or below the code again.
<li>Excavate_Steel</li>
Then edit the <li>Excavate_Steel</li> to what you typed in Recipes_Mining.xml. The example from below is copy from the above example.
<li>Excavate_copper</li>
3. Once you have edited all the variable, click save in notepad++, and try it out in the game.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
4. If you could not get the result of of your expectation, JUST LET IT GO!!!
You don't want to waste 1 day just to get the code work correctly. Trust me, it's not worth it. Play 1 day rim world is much better then wasting a day to get half-cheated ore from coding Rimworld mod.
.
.
.
5. Hope you all stay safe in 2021.
How would you add Sky steel?