Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
It works will and have not seen a error as of this moment.
Okay i'll take a look also you mean nanonator102?
"SteamLibrary\steamapps\workshop\content\294100\903253578\Defs\ThingDefs"
die Datei "Items_Resource_Manufactured.xml" geöffnet und den Inhalt ersetz duch
https://drive.google.com/file/d/1wwEeJp6uBHGskaxwd0NOEHnw1Q6m9X6t/view?usp=sharing
das Produzieren geht wieder, man brauch nun keine Forschung ( war zu faul zu schauen wie man das macht) eigentlich hab ich mich noch nie mit dem Moden von Ringworld beschäftigt darum verzeihe man mir das "rumgeschuster".
Thanks.
<steam install directory>/steamapps/workshop/content/294100/903253578
Remove the file in defs "Items_Resource_Manufactured.xml" and then create a new folder at the same level as About and Defs named "Patches". In the Patches folder, create a file called "Patches.xml" and put this text into it:
<?xml version="1.0" encoding="utf-8"?>
<Patch>
<Operation Class="PatchOperationAdd">
<xpath>*/ThingDef[defName = "Neutroamine"]</xpath>
<value>
<recipeMaker>
<researchPrerequisite>NeutroaleafRefining</researchPrerequisite>
<recipeUsers>
<li>DrugLab</li>
</recipeUsers>
</recipeMaker>
<costList>
<Neutroaleaves>5</Neutroaleaves>
</costList>
</value>
</Operation>
</Patch>
This is saying to Add (PatchOperationAdd) attributes to a previously defined object. Find the ThingDef with defName "Neutroamine". Then add the attributes to add, in this case the research needed, where it's made, and the cost list.
Here's the xml:
<?xml version="1.0" encoding="utf-8"?>
<Patch>
<Operation Class="PatchOperationAdd">
<xpath>*/ThingDef[defName = "Neutroamine"]</xpath>
<value>
<recipeMaker>
<researchPrerequisite>NeutroaleafRefining</researchPrerequisite>
<recipeUsers>
<li>DrugLab</li>
</recipeUsers>
</recipeMaker>
<costList>
<Neutroaleaves>5</Neutroaleaves>
</costList>
</value>
</Operation>
</Patch>
Change
<ResearchProjectDefs>
bla bla bla
</ResearchProjectDefs>
to
<Defs>
bla bla bla
</Defs>