Messages on forum remove backslashes from dlclist.xml examples
-
Example:
<?xml version="1.0" encoding="UTF-8"?>
<SMandatoryPacksData>
<Paths>
<Item>platform:\dlcPacks\mpBeach</Item>
<Item>platform:\dlcPacks\mpBusiness</Item>
<Item>platform:\dlcPacks\mpChristmas</Item>
<Item>platform:\dlcPacks\mpValentines</Item>
<Item>platform:\dlcPacks\mpBusiness2</Item>
<Item>platform:\dlcPacks\mpHipster</Item>
<Item>platform:\dlcPacks\mpIndependence</Item>
<Item>platform:\dlcPacks\mpPilot</Item>
<Item>platform:\dlcPacks\spUpgrade</Item>
<Item>platform:\dlcPacks\mpLTS</Item>
<Item>dlcpacks:\mpheist</Item>
<Item>dlcpacks:\mppatchesng</Item>
<Item>dlcpacks:\patchday1ng</Item>
<Item>dlcpacks:\patchday2ng</Item>
<Item>dlcpacks:\mpchristmas2</Item>
<Item>dlcpacks:\patchday2bng</Item>
<Item>dlcpacks:\patchday3ng</Item>
<Item>dlcpacks:\patchday4ng</Item>
<Item>dlcpacks:\mpluxe</Item>
<Item>dlcpacks:\patchday5ng</Item>
<Item>dlcpacks:\mpluxe2</Item>
<Item>dlcpacks:\patchday6ng</Item>
<Item>dlcpacks:\mpreplay</Item>
<Item>dlcpacks:\patchday7ng</Item>
<Item>dlcpacks:\mplowrider</Item>
<Item>dlcpacks:\mphalloween</Item>
<Item>dlcpacks:\patchday8ng</Item>
<Item>dlcpacks:\mpapartment</Item>
<item>dlcpacks:\mpxmas_604490</item>
<Item>dlcpacks:\mplowrider2</Item>
<Item>dlcpacks:\mpjanuary2016</Item>
<Item>dlcpacks:\mpvalentines2</Item>
<Item>dlcpacks:\patchday9ng</Item>
<Item>dlcpacks:\mpexecutive</Item>
<Item>dlcpacks:\patchday10ng</Item>
<Item>dlcpacks:\mpstunt</Item>
<Item>dlcpacks:\patchday11ng</Item>
<Item>dlcpacks:\mpimportexport</Item>
<Item>dlcpacks:\mpbiker</Item>
<Item>dlcpacks:\patchday12ng</Item>
<Item>dlcpacks:\patchday13ng</Item>
<Item>dlcpacks:\mpspecialraces</Item>
<Item>dlcpacks:\mpgunrunning</Item>
<Item>dlcpacks:\mpairraces</Item>
<Item>dlcpacks:\mpsmuggler</Item>
<Item>dlcpacks:\patchday14ng</Item>
<Item>dlcpacks:\patchday15ng</Item>
<Item>dlcpacks:\patchday16ng</Item>
<Item>dlcpacks:\tkmods</Item>
</Paths>
</SMandatoryPacksData>This dlclist.xml example is 100% correct when copying it from working 'dlclist.xml' but appears on the left & when posted missing ALL of the tabs before each line & all of the final backslashes after the dlc name & before the '<'.
Example:
<Item>dlcpacks:\patchday16ngbackslash should be here</Item>
<Item>dlcpacks:\patchday16ng</Item>
Only works if tabs are before line but these are removed if copying & pasting whole dlclist.xml
<Item>dlcpacks:\patchday16ng\</Item>
Here is the exact same dlclist.xml so it can be compared to what is posted at the top.
http://www.filedropper.com/dlclist
I thought I should point it out as this will cause an untold amount of problems with people trying to fix people's dlclist.xml's using the forum.
-
The solution is to put the code into a code block.
Example:
```xml
code here
```<?xml version="1.0" encoding="UTF-8"?> <SMandatoryPacksData> <Paths> <Item>platform:\dlcPacks\mpBeach\</Item> <Item>platform:\dlcPacks\mpBusiness\</Item> <Item>platform:\dlcPacks\mpChristmas\</Item> <Item>platform:\dlcPacks\mpValentines\</Item> <Item>platform:\dlcPacks\mpBusiness2\</Item> <Item>platform:\dlcPacks\mpHipster\</Item> <Item>platform:\dlcPacks\mpIndependence\</Item> <Item>platform:\dlcPacks\mpPilot\</Item> <Item>platform:\dlcPacks\spUpgrade\</Item> <Item>platform:\dlcPacks\mpLTS\</Item> <Item>dlcpacks:\mpheist\</Item> <Item>dlcpacks:\mppatchesng\</Item> <Item>dlcpacks:\patchday1ng\</Item> <Item>dlcpacks:\patchday2ng\</Item> <Item>dlcpacks:\mpchristmas2\</Item> <Item>dlcpacks:\patchday2bng\</Item> <Item>dlcpacks:\patchday3ng\</Item> <Item>dlcpacks:\patchday4ng\</Item> <Item>dlcpacks:\mpluxe\</Item> <Item>dlcpacks:\patchday5ng\</Item> <Item>dlcpacks:\mpluxe2\</Item> <Item>dlcpacks:\patchday6ng\</Item> <Item>dlcpacks:\mpreplay\</Item> <Item>dlcpacks:\patchday7ng\</Item> <Item>dlcpacks:\mplowrider\</Item> <Item>dlcpacks:\mphalloween\</Item> <Item>dlcpacks:\patchday8ng\</Item> <Item>dlcpacks:\mpapartment\</Item> <item>dlcpacks:\mpxmas_604490\</item> <Item>dlcpacks:\mplowrider2\</Item> <Item>dlcpacks:\mpjanuary2016\</Item> <Item>dlcpacks:\mpvalentines2\</Item> <Item>dlcpacks:\patchday9ng\</Item> <Item>dlcpacks:\mpexecutive\</Item> <Item>dlcpacks:\patchday10ng\</Item> <Item>dlcpacks:\mpstunt\</Item> <Item>dlcpacks:\patchday11ng\</Item> <Item>dlcpacks:\mpimportexport\</Item> <Item>dlcpacks:\mpbiker\</Item> <Item>dlcpacks:\patchday12ng\</Item> <Item>dlcpacks:\patchday13ng\</Item> <Item>dlcpacks:\mpspecialraces\</Item> <Item>dlcpacks:\mpgunrunning\</Item> <Item>dlcpacks:\mpairraces\</Item> <Item>dlcpacks:\mpsmuggler\</Item> <Item>dlcpacks:\patchday14ng\</Item> <Item>dlcpacks:\patchday15ng\</Item> <Item>dlcpacks:\patchday16ng\</Item> <Item>dlcpacks:\tkmods\</Item> </Paths> </SMandatoryPacksData>
-
Thanks, that's a nice easy way to ask people to present there code. I'll make a note of it to remember it. Thanks again.