Key Ring: Difference between revisions

From PZwiki
m (linked door + car door to pages)
(Added info about padlocks + minor cleanup)
Line 13: Line 13:
A '''key ring''' is a container for storing keys.
A '''key ring''' is a container for storing keys.


== Usage ==
==Usage==
When keys are found, they can be put into the key ring to reduce clutter in your inventory. Items that are not keys cannot be put on the key ring. [[Car Key|Car keys]] can be put on the key ring.
When keys are found, they can be put into the key ring to reduce clutter in your inventory. Items that are not keys cannot be put on the key ring. [[Car Key|Car keys]], [[Padlock]] and [[Combination Padlock]] can be put on the key ring.


Keys can be used to lock or unlock their respective [[Door|doors]], including [[Car Door|vehicle doors]].
Keys can be used to lock or unlock their respective [[Door|doors]], including [[Car Door|vehicle doors]].


== Distribution ==
==Distribution==
A key ring is given to the player automatically when the character is created. There is a 40% chance to spawn with the key to the house the player spawned in.
A key ring is given to the player automatically when the character is created. There is a 40% chance to spawn with the key to the house the player spawned in.


A key is a common item. Although it is possible to find keys in [[containers]] such as [[Containers#Counters|counters]], [[Containers#Bedroom Storage|dressers]], and [[Containers#Crates|crates]], it is much more common to find them on the [[corpse]]s of [[zombie]]s that were inside or in the vicinity of the building. If a [[door]] exists, it is likely to have a key that corresponds to it.  
A key is a common item. Although it is possible to find keys in [[containers]] such as [[Containers#Counters|counters]], [[Containers#Bedroom Storage|dressers]], and [[Containers#Crates|crates]], it is much more common to find them on the [[corpse]]s of [[zombie]]s that were inside or in the vicinity of the building. If a [[door]] exists, it is likely to have a key that corresponds to it.  


== Variants ==
==Variants==
Door Keys:
Door Keys:


Line 37: Line 37:


<!--
<!--
== Crafting ==
==Crafting==
{| class="wikitable sortable" style="text-align:center;"  
{| class="wikitable sortable" style="text-align:center;"  
|-  
|-  
Line 47: Line 47:
|}
|}
-->
-->
== Code ==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''


Line 61: Line 61:
</pre>
</pre>


== History ==
==History==
 
{| class="wikitable" width="550" style="text-align:center;"
{| class="wikitable" width="550" style="text-align:center;"
|-
|-
Line 75: Line 74:
==See Also==
==See Also==
* [[Padlock]]
* [[Padlock]]
<!--
{{Navbox/Consumables}}
-->
{{Navbox/Tools}}
{{Navbox/Tools}}

Revision as of 18:01, 10 July 2021

Notebook.png
This article may need more content.
Editors are encouraged to add new material to the page while expanding upon current topics.
Key Ring
Key Ring
General
Category Container
Encumbrance
Heavy Load
0
Capacity 1
Technical details
Item ID Item IDs

A key ring is a container for storing keys.

Usage

When keys are found, they can be put into the key ring to reduce clutter in your inventory. Items that are not keys cannot be put on the key ring. Car keys, Padlock and Combination Padlock can be put on the key ring.

Keys can be used to lock or unlock their respective doors, including vehicle doors.

Distribution

A key ring is given to the player automatically when the character is created. There is a 40% chance to spawn with the key to the house the player spawned in.

A key is a common item. Although it is possible to find keys in containers such as counters, dressers, and crates, it is much more common to find them on the corpses of zombies that were inside or in the vicinity of the building. If a door exists, it is likely to have a key that corresponds to it.

Variants

Door Keys:

Key1.png Key2.png Key3.png Key4.png Key5.png

Padlock Key:

KeyPadlock1.png

Car Key:

CarKey.png

Code

From newitems.txt (Project Zomboid directory/media/scripts/)

Retrieved: Build 41.50

	item KeyRing
		Weight			= 0,
		Type			= Container,
		DisplayName		= Key Ring,
		Icon			= KeyRing,
		Capacity		= 1,
		OnlyAcceptCategory	= Key,
		MetalValue		= 5,

History

Alpha
Ver31.9 Added to game.
Ver35.26 Now only a 40% chance to spawn with your house key.

See Also

Template:Navbox/Tools