Hallo zusammen,
da mit der Zeit sich so einiges in der types.xml ansammelt, ist meine Überlegung ob man diese eventuell splitten und durch includes übersichtlicher gestalten kann?
Normalerweise:
... enthält die types.xml unendlich viele Einträge zu allen Items
Meine Idee:
... ist das die types.xml nur "includes" enthält, der vielen unterschiedlichen types.xml für die verschiedenen Mods etc. pp.
Beispiel:
types.xml:
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<types>
<xi:include href="types_inc/vanilla/types-animal.xml" parse="xml"/>
<xi:include href="types_inc/vanilla/types-books.xml" parse="xml"/>
<xi:include href="types_inc/vanilla/types-clothes.xml" parse="xml"/>
<xi:include href="types_inc/vanilla/types-containers.xml" parse="xml"/>
<xi:include href="types_inc/vanilla/types-explosives.xml" parse="xml"/>
<xi:include href="types_inc/vanilla/types-food.xml" parse="xml"/>
<xi:include href="types_inc/vanilla/types-land_wrack.xml" parse="xml"/>
<xi:include href="types_inc/vanilla/types-tools.xml" parse="xml"/>
<xi:include href="types_inc/vanilla/types-ungrouped.xml" parse="xml"/>
<xi:include href="types_inc/vanilla/types-vehicleparts.xml" parse="xml"/>
<xi:include href="types_inc/vanilla/types-vehicles.xml" parse="xml"/>
<xi:include href="types_inc/vanilla/types-weapons.xml" parse="xml"/>
<xi:include href="types_inc/vanilla/types-wreck.xml" parse="xml"/>
<xi:include href="types_inc/vanilla/types-zmb.xml" parse="xml"/>
</types>
Alles anzeigen
Das xi:include ist jetzt einfach aus dem Stehgreif gegriffen - Frage wäre eben, wie man es "korrekt" einbindet und ob der DayZ Server das dann auch verarbeiten kann.