Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: debuglog should be a txt;ubuntufreakdragon

...

save (hier drin liegen deine Spielstände. Solltest du sie noch nicht gesichert haben, tu das JETZT!)
config.xml
content.xml
debuglog.xml txt
inputmap.xml
progressbar.xml
uidata.xml

...

rmdir "..\save"
del "..\config.xml"
del "..\content.xml"
del "..\debuglog.xmltxt"
del "..\inputmap.xml"
<del "..\inputmap_<n>.xml">                                                       # diese Zeile wird benötigt, falls du mehrere Steuerungsprofile besitzt. Entferne die <> und füge statt <n> die passenden Nummern ein.
del "..\progressbar.xml"
del "..\uidata.xml"
mklink /d "..\save" "%~dp0\save"
mklink "..\config.xml" "%~dp0\config.xml"
mklink "..\content.xml" "%~dp0\content.xml"
mklink "..\debuglog.xmltxt" "%~dp0\debuglog.xmltxt"
mklink "..\inputmap.xml" "%~dp0\inputmap.xml"
<mklink "..\inputmap_<n>.xml" "%~dp0\inputmap_<n>.xml">       # diese Zeile wird benötigt, falls du mehrere Steuerungsprofile besitzt. Entferne die <> und füge statt <n> die passenden Nummern ein.
mklink "..\progressbar.xml" "%~dp0\progressbar.xml"
mklink "..\uidata.xml" "%~dp0\uidata.xml"
start /d "<Path>" XRebirth.exe                                                     # Hier musst du den Installationspfad von XR anstelle von <Path> angeben, z.B.: "C:\Programs\Steam\Steam Apps\Common\X Rebirth". Stelle sicher, dass der Pfad in Anführungszeichen steht!

...