Skip to content

Create Config.xml

ChrisderWahre edited this page May 5, 2018 · 3 revisions

How to create a good Config.xml?!

To make the XML File Work it needs to start with this line

<?xml version="1.0" encoding="UTF-8"?>

to work, to open open the 2nd line with

<Config>

and the last line

</Config>

in between these lines you can use these options:

<XBoxIP>XBox IP Here</XBoxIP> for Settings the XBox IP

<XBoxPort>XBox Port Here</XBoxPort> for Settings the XBox Port (the default is 21)

<XBoxUser>XBox User Here</XBoxUser> for Settings the XBox User (the default is xbox)

<XBoxPassword>XBox Password Here</XBoxPassword> for Settings the XBox Password(the default is xbox)

<XBoxSongPath>XBox Song Path Here</XBoxSongPath> for Settings the XBox Song Path(this can be alot different from user to user, but the default and format is /E/Games/Jet Set Radio Future/Media/Z_ADX/BGM)

<LocalSongPath>Local Song Path Here</LocalSongPath> for Settings the Local Song Path an example: C:\Users\Chris\Desktop\Jet Set Radio Future\Media\Z_ADX\BGM

here is my Config.xml:

<?xml version="1.0" encoding="UTF-8"?>
<Config>
	<XBoxIP>192.168.0.2</XBoxIP>
	<XBoxPort>21</XBoxPort>
	<XBoxUser>xbox</XBoxUser>
	<XBoxPassword>xbox</XBoxPassword>
	<XBoxSongPath>/E/Games/Jet Set Radio Future/Media/Z_ADX/BGM</XBoxSongPath>
	<LocalSongPath>J:\Emulatoren\Jet Set Radio Future\Media\Z_ADX\BGM</LocalSongPath>
</Config>