Forum- und 7DTD- Tutorialsset xpath - Dinge hinzufügen - Add things

Benutzeravatar
sx_schaddi
Site Admin
Beiträge: 52
Registriert: Dienstag 21. Mai 2019, 11:41

set xpath - Dinge hinzufügen - Add things

#1

Ungelesener Beitrag von sx_schaddi » Dienstag 26. Oktober 2021, 13:11

In diesem Fall fügen wir die Kaffeemaschine hinzu die es normalerweise nicht als Rezept gibt.
In this case, we add the coffee maker that usually does not exist as a recipe.



recipes.xml

Code: Alles auswählen

<configs>
<append xpath="/recipes">
<recipe name="cntCoffeeMaker" count="1" craft_time="600" craft_area="workbench" tags="workbenchCrafting">
			<ingredient name="resourceForgedIron" count="25"/>
			<ingredient name="resourceElectricParts" count="50"/>
			<ingredient name="resourceMechanicalParts" count="60"/>
			<ingredient name="resourceScrapPolymers" count="70"/>
			<ingredient name="resourceDuctTape" count="25"/>
</recipe>
</append>
</configs>
<configs>
<append xpath="/recipes">

Wir fügen an die Rezepte an
We add to the recipes


<recipe name="cntCoffeeMaker" count="1" craft_time="600" craft_area="workbench" tags="workbenchCrafting">
<ingredient name="resourceForgedIron" count="25"/>
<ingredient name="resourceElectricParts" count="50"/>
<ingredient name="resourceMechanicalParts" count="60"/>
<ingredient name="resourceScrapPolymers" count="70"/>
<ingredient name="resourceDuctTape" count="25"/>
</recipe>

Die Kaffeemaschine als Rezept für die Werkbank
The coffee maker as a recipe for the workbench


</append>
</configs>

Absatz schließen
Close paragraph