need help my dlc/add ons not working
-
dose this look okay ?
<?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:\mpchristmas2017\</Item> <Item>dlcpacks:\mpassault\</Item> <Item>dlcpacks:\patchday14ng\</Item> <Item>dlcpacks:\patchday15ng\</Item> <Item>dlcpacks:\patchday16ng\</Item> <Item>dlcpacks:\patchday17ng\</Item> <Item>dlcpacks:\patchday18ng\</Item> </Paths> </SMandatoryPacksData>
-
@alexcarmad
Only thing I can see is the opening and ending tag mismatch ('<Item>' (start with capital 'I') & '</item>' (start with lowercase 'i')) in this line:<Item>dlcpacks:\mpxmas_604490\</item>
It should be like this (both capital):
<Item>dlcpacks:\mpxmas_604490\</Item>
Or this (both lowercase):
<item>dlcpacks:\mpxmas_604490\</item>
to avoid a parsing error.
I'm not sure what effect this would have in-game though?! Let's see...
Tested: I can confirm that this opening and ending tag mismatch does indeed stop your add-ons (some anyway, tested quickly) from working.
Fix: Just change the lowercase 'i' at the end of the line to a capital 'I' & your add-ons should start working again