seobongzu

1.
Neat Storage folder Open [sbz] Neat Storage folder.
(.../SteamLibrary/steamapps/workshop/content/294100/3416243474)


2.
Version folder Open your version folder.
(ex: 1.5)


3.
Patches folder Open the Patches folder.


4.
Template file Copy and paste Template.xml,
then rename the copied file to whatever you want.
I changed it to seobongzu.xml.
(Don't change Template.xml directly)


5.

<?xml version="1.0" encoding="utf-8"?>
<Patch>
	<!-- Crate and Pallet maxItemsInCell -->
	<!--
	<Operation Class="PatchOperationReplace">
		<xpath>Defs/ThingDef[@Name = "sbzCrateBase"]/building/maxItemsInCell</xpath>
		<value>
			<maxItemsInCell>6</maxItemsInCell>
		</value>
	</Operation>
	-->

	<!-- Corpse dump spot maxItemsInCell -->
	<!--
	<Operation Class="PatchOperationReplace">
		<xpath>Defs/ThingDef[defName = "sbz_CorpseSpot"]/building/maxItemsInCell</xpath>
		<value>
			<maxItemsInCell>12</maxItemsInCell>
		</value>
	</Operation>
	-->	
</Patch>

When you open seobongzu.xml with a text editor, you'll see this content.
The top code is for Crate and Pallet, the bottom is for Corpse dump spot.


6.

<?xml version="1.0" encoding="utf-8"?>
<Patch>
	<!-- Crate and Pallet maxItemsInCell -->
	<Operation Class="PatchOperationReplace">
		<xpath>Defs/ThingDef[@Name = "sbzCrateBase"]/building/maxItemsInCell</xpath>
		<value>
			<maxItemsInCell>6</maxItemsInCell>
		</value>
	</Operation>

	<!-- Corpse dump spot maxItemsInCell -->
	<!--
	<Operation Class="PatchOperationReplace">
		<xpath>Defs/ThingDef[defName = "sbz_CorpseSpot"]/building/maxItemsInCell</xpath>
		<value>
			<maxItemsInCell>12</maxItemsInCell>
		</value>
	</Operation>
	-->
</Patch>

If you want to change Crate and Pallet amounts,
remove the comments to make it like this.
If you don't know how, just copy what I do.


7.
Type the number you want in maxItemsInCell and save.
(ex: <maxItemsInCell>50</maxItemsInCell>)


8.
Applied image It's working well.


9.
Messy image You can change other furniture the same way,
but if you don't also change the stackOffset and drawOffset,
it will look messy in the game.


10.
If you want to learn more about patches,
check out Rimworldwiki!

← Back