All Clothing in Stores

Attachments

8 years late to this, but I've figured out why Planet Saints does not work and it's because Planet Saints' list of items has a store item end entry inserted right before the first item. It can quite easily be fixed by simply removing that entry. So, instead of it looking like this...
Code:
            </_Editor>
        </Store>
    <Store>
        <Name>Planet_Saints</Name>
        <flags>
            <Flag>allow_wardrobe</Flag>
            </flags>
        <Items>
                       </Store_Item>
            <Store_Item>
                <Item>ll boxer</Item>
                <Variants></Variants>
                </Store_Item>
            <Store_Item>
                <Item>ll earrings 03</Item>
                <Variants></Variants>
                </Store_Item>
            <Store_Item>
...it should look like this:
Code:
            </_Editor>
        </Store>
    <Store>
        <Name>Planet_Saints</Name>
        <flags>
            <Flag>allow_wardrobe</Flag>
            </flags>
        <Items>
            <Store_Item>
                <Item>ll boxer</Item>
                <Variants></Variants>
                </Store_Item>
            <Store_Item>
                <Item>ll earrings 03</Item>
                <Variants></Variants>
                </Store_Item>
            <Store_Item>
 

Attachments

Back
Top