Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Are you sure you took the cupboard key? It's across the floor outside of the cell with the sleeping rat. Because I cannot remember that there is another cupboard key in the game.
you're right the key is in the drawer . I just reloaded an early save game and checked.
But why you don't have the key and the drawer is empty, I cannot answer.
I'd love to be able to finish the game... I've been loving it so far.
Same issue, but I went through my save file using a text editor. Found the only cupboard in the Jail section that was still "locked". There are three phases it can be in, I changed Locked to "false" and edited the "searched" section to "true".. this unlocked the cupboard and I was able to get the item in it. code and item # to find below
<TrackedGameObject>
<customID>10000084</customID>
<XML_id>cupboard</XML_id>
<activation>true</activation>
<isInventorized>false</isInventorized>
<isOrphanized>false</isOrphanized>
<currentZoneName>Jail</currentZoneName>
<objectPath>cupboard_prefab</objectPath>
<translationX>0</translationX>
<translationY>0</translationY>
<translationZ>0</translationZ>
<rotationX>0</rotationX>
<rotationY>0</rotationY>
<rotationZ>0</rotationZ>
<localScaleX>0</localScaleX>
<localScaleY>0</localScaleY>
<localScaleZ>0</localScaleZ>
<customData>
<TrackedField>
<holdingComponentName>ContainerSystem</holdingComponentName>
<fieldName>isLocked</fieldName>
<value xsi:type="xsd:boolean">false</value>
</TrackedField>
<TrackedField>
<holdingComponentName>ContainerSystem</holdingComponentName>
<fieldName>isSearched</fieldName>
<value xsi:type="xsd:boolean">true</value>
</TrackedField>
<TrackedField>
<holdingComponentName>ContainerSystem</holdingComponentName>
<fieldName>isEmpty</fieldName>
<value xsi:type="xsd:boolean">false</value>
</TrackedField>
</customData>
</TrackedGameObject>
<holdingComponentName>ContainerSystem</holdingComponentName>
<fieldName>isLocked</fieldName>
<value xsi:type="xsd:boolean">false</value>
Edit false to this line
</TrackedField>
<TrackedField>
<holdingComponentName>ContainerSystem</holdingComponentName>
<fieldName>isSearched</fieldName>
<value xsi:type="xsd:boolean">true</value>
Edit true to this line