Xml Datei

    • Moin,
      ich habe mir vor einigen Monaten folgendes erarbeitet, vielleicht können wir es ja vervollständigen:

      HTML Source Code: Test-Mod.xml

      1. <!-- ALLE PFADE MIT DEM HOME-VERZEICHNIS DES MODS ANGEBEN
      2. Dateistruktur für Beipsielpfade in dieser Datei:
      3. /Test-Mod
      4. -/textures
      5. --manufacturer-logo.tex
      6. --shopImage.tex
      7. -Test-Mod.wld
      8. -Test-Mod.xml
      9. -->
      10. <?xml version="1.0"?>
      11. <modification type="implement">
      12. <!-- Hersteller-Name im Shop, wird zur alphabetischen sortierung genutzt | Pfad zum Herstellerlogo (.tex) -->
      13. <manufacturer name="MrJules" logo="Test-Mod/manufacturer-logo" />
      14. <!-- Geräte-Name im Shop, ohne Hersteller angeben -->
      15. <name>TEST-Mod</name>
      16. <!-- Kategorie im Shop (z.B. plow=Pflüge, trac=Traktoren, weig=Gewichte)-->
      17. <category id="weig" />
      18. <!-- Serie, gleiche Serie wird im Shop als ein Fahrzeug mit verschiedenen Versionen angezeigt -->
      19. <series id="TEST-Mod" />
      20. <!-- Pfad zur Model Datei (.wld)-->
      21. <world file="Test-Mod/Test-Mod" />
      22. <!-- Preis (Euro, wird bei englischem Client umgerechnet zu $) und Shopbild (512x512px von unten links 340x30px, .tex) -->
      23. <shop price="40000" icon="Test-Mod/shopImage" />
      24. <!-- Shop Anzeigewerte -->
      25. <attribute key="BOAR" value="100" /><!-- Pflug: Schar-Anzahl -->
      26. <attribute key="WRKW" value="1.8" /><!-- Arbeitsbreite -->
      27. <attribute key="WRKD" value="20" /><!-- Arbeitstiefe -->
      28. <attribute key="ENGI" value="136" /><!-- Motorleistung -->
      29. <attribute key="RRPM" value="2400" /><!-- Motordrehzahl -->
      30. <attribute key="SPED" value="40" /><!-- Maximalgeschwindigkeit -->
      31. <attribute key="TANK" value="135" /><!-- Tankgröße (Liter, wird bei englischem Client umgerechnen zu Galons -->
      32. <attribute key="TRNR" value="6.5" /><!-- Wendekreis (Meter, wird bei englischem Client umgerechnen zu Feet-->
      33. <attribute key="FRLC" value="0" /><!-- Frontlader Console Ja/Nein -->
      34. <attribute key="ATFR" value="THRE,TPIN,BALL" /><!-- Kupplungsarten vorne z.B. THRE=Dreipunkt, TPIN=Zugmaul, BALL=Kugelkopf -->
      35. <attribute key="ATRE" value="THRE,TPIN,BALL" /><!-- Kupplungsarten hinten z.B. THRE=Dreipunkt, TPIN=Zugmaul, BALL=Kugelkopf -->
      36. <!-- Shop Capability(Fähigkeit, Nutzbarkeit) Kategorie (wirkt sich auch auf die Anzeige des Hauptattributes im Shop aus) z.B. FLWK=Field Work -->
      37. <capability value="FLWK" />
      38. <description stringId="DESC" /><!-- -->
      39. <supportsThreePointTurn value="true" /><!-- -->
      40. <workWidth type="manual" value="1.8" /><!-- -->
      41. <workDepth value="-0.12" frictionOffset="0.0" /><!-- -->
      42. <!-- Warnung "Du fährst zu schnell." anzeigen ab X -->
      43. <maxHelperSpeed value="5" />
      44. <vehicleDrive type="VehicleNoDrive" /><!-- -->
      45. </modification>
      Display All