Mod packs ... hiding unwanted items from the "store"

User avatar
W1der
Posts: 3795
Joined: Wed Jan 13, 2016 7:53 pm
Location: SWEDEN

Mod packs ... hiding unwanted items from the "store"

Post by W1der »

Some mods contain several items that shows/fills up the "store" menus.

Is there an easy way to "hide" the ones you don´t like to use?
[Win11] Intel Core i9-13900F Tray 5.6GHz / MSI RTX4090 24GB GDDR6 / 2x16GB 5600MHz DDR5
User avatar
EZP
1. Verwarnung
Posts: 492
Joined: Thu May 21, 2015 1:30 am

Re: Mod packs ... hiding unwanted items from the "store"

Post by EZP »

Open the 'moddesc.xml' and snip out the unwanted 'storeItem' sections.
Platform=PC

(I am also a heavy mod addict) :D

Putting your gaming platform of choice in your signature will help us all mingle a little easier and ask/answer questions with less confusion.
Go to...Control Panel/Profile/Edit signature
User avatar
W1der
Posts: 3795
Joined: Wed Jan 13, 2016 7:53 pm
Location: SWEDEN

Re: Mod packs ... hiding unwanted items from the "store"

Post by W1der »

EZP wrote:Open the 'moddesc.xml' and snip out the unwanted 'storeItem' sections.
Would that be this section of code?

Code: Select all

<storeItem>
            <name>
                <de>Warnschild "Holzfällung"</de>
                <en>warning sign "Holzfällung"</en>
            </name>
            <rotation>0</rotation>
            <image active="store/warnschild1_store.dds" brand="store/brand.dds"/>
            <price>120</price>
            <dailyUpkeep>1</dailyUpkeep>
            <xmlFilename>warnschild1.xml</xmlFilename>
			<species>placeable</species>
			<brand>Forstobjekte</brand>
            <category>placeables</category>
        </storeItem>
Last edited by W1der on Wed Jul 20, 2016 4:06 pm, edited 1 time in total.
[Win11] Intel Core i9-13900F Tray 5.6GHz / MSI RTX4090 24GB GDDR6 / 2x16GB 5600MHz DDR5
User avatar
EZP
1. Verwarnung
Posts: 492
Joined: Thu May 21, 2015 1:30 am

Re: Mod packs ... hiding unwanted items from the "store"

Post by EZP »

Yep...


Disclaimer...for the record, always keep a backup of course :)
Platform=PC

(I am also a heavy mod addict) :D

Putting your gaming platform of choice in your signature will help us all mingle a little easier and ask/answer questions with less confusion.
Go to...Control Panel/Profile/Edit signature
User avatar
W1der
Posts: 3795
Joined: Wed Jan 13, 2016 7:53 pm
Location: SWEDEN

Re: Mod packs ... hiding unwanted items from the "store"

Post by W1der »

EZP wrote:Yep...


Disclaimer...for the record, always keep a backup of course :)
Thanks ... gonna try it out as soon as possible ...
The "wife" has me on taking down the walls in the garage today ... :blushnew:
[Win11] Intel Core i9-13900F Tray 5.6GHz / MSI RTX4090 24GB GDDR6 / 2x16GB 5600MHz DDR5
User avatar
Jaguar95
Posts: 736
Joined: Sat Dec 29, 2012 2:11 pm

Re: Mod packs ... hiding unwanted items from the "store"

Post by Jaguar95 »

You don't need to delete the entries.

Just set an <!-- before <storeItem> and an --> after </storeItem>

Then it looks like this:

Code: Select all

<!--<storeItem>
<name>
<de>Warnschild "Holzfällung"</de>
<en>warning sign "Holzfällung"</en>
</name>
<rotation>0</rotation>
<image active="store/warnschild1_store.dds" brand="store/brand.dds"/>
<price>120</price>
<dailyUpkeep>1</dailyUpkeep>
<xmlFilename>warnschild1.xml</xmlFilename>
<species>placeable</species>
<brand>Forstobjekte</brand>
<category>placeables</category>
</storeItem> -->
Now all entries between this tags are interpreted as a comment. <!-- begins the comment and --> close the comment.


So you have everytime the possibility to get the entries back to the store. ;)
Last edited by Jaguar95 on Thu Jul 21, 2016 8:37 am, edited 1 time in total.
User avatar
W1der
Posts: 3795
Joined: Wed Jan 13, 2016 7:53 pm
Location: SWEDEN

Re: Mod packs ... hiding unwanted items from the "store"

Post by W1der »

Jaguar 95 wrote:You don't need to delete the entries.

Just set an <!-- before <storeItem> and an --> after </storeItem>

Then it looks like this:

Code: Select all

<!--<storeItem>
<name>
<de>Warnschild "Holzfällung"</de>
<en>warning sign "Holzfällung"</en>
</name>
<rotation>0</rotation>
<image active="store/warnschild1_store.dds" brand="store/brand.dds"/>
<price>120</price>
<dailyUpkeep>1</dailyUpkeep>
<xmlFilename>warnschild1.xml</xmlFilename>
<species>placeable</species>
<brand>Forstobjekte</brand>
<category>placeables</category>
</storeItem> -->
Now all entries betwenn this tags are interpreted as a comment. <!-- begins the comment and --> close the comment.


So you have every time the possibility to get the entries back to the store. ;)
Solid tip ... I appr it a lot ... so helpful!
I wish I knew this a long time ago ... :gamer:
[Win11] Intel Core i9-13900F Tray 5.6GHz / MSI RTX4090 24GB GDDR6 / 2x16GB 5600MHz DDR5
BostonJohnny1226
Posts: 738
Joined: Sat Nov 08, 2014 2:50 am

Re: Mod packs ... hiding unwanted items from the "store"

Post by BostonJohnny1226 »

Thanks for the tip.
Post Reply