Nose Ring

From PZwiki
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Frame.png
This article contains outdated/low-quality images.
Reason: Missing 3D models
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
Nose Ring
Gold Nose Ring
Silver Nose Ring
Gold Nose Stud
Silver Nose Stud
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Equipped
Nose
Technical
Item ID

A nose ring is a cosmetic item. It has no functionality and comes in four variants.

Distribution

Buildings

See more: Businesses

Nose rings are often stored in homes and apartments around the map.

NPCs

See more: NPC

Zombies will sometimes be found wearing nose rings.

Remove from world

As nose rings can often create clutter on a multiplayer server, they can be removed by editing the SandboxVars.lua file and adding the following to the WorldItemRemovalList:

Base.NoseRing_Gold,Base.NoseRing_Silver,Base.NoseStud_Gold,Base.NoseStud_Silver

Variants

Icon Name Encumbrance Body location Item ID
Gold Nose Ring Gold Nose Ring 0.1 Nose Base.NoseRing_Gold
Silver Nose Ring Silver Nose Ring 0.1 Nose Base.NoseRing_Silver
Gold Nose Stud Gold Nose Stud 0.1 Nose Base.NoseStud_Gold
Silver Nose Stud Silver Nose Stud 0.1 Nose Base.NoseStud_Silver

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

NoseRing Gold.png Base.NoseRing_Gold
Source: ProjectZomboid\media\scripts\clothing\clothing_jewellery.txt

Retrieved: Build 41.78.16
item NoseRing_Gold
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Gold Nose Ring,
		ClothingItem = NoseRing_Gold,
		BodyLocation = Nose,
		Icon = NoseRing_Gold,
		Weight = 0.1,
		Cosmetic = TRUE,
		WorldStaticModel = Nosering_Ground,
	}

NoseRing Silver.png Base.NoseRing_Silver
Source: ProjectZomboid\media\scripts\clothing\clothing_jewellery.txt

Retrieved: Build 41.78.16
item NoseRing_Silver
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Silver Nose Ring,
		ClothingItem = NoseRing_Silver,
		BodyLocation = Nose,
		Icon = NoseRing_Silver,
		Weight = 0.1,
		Cosmetic = TRUE,
		WorldStaticModel = NoseringSilver_Ground,
	}

NoseStud Gold.png Base.NoseStud_Gold
Source: ProjectZomboid\media\scripts\clothing\clothing_jewellery.txt

Retrieved: Build 41.78.16
item NoseStud_Gold
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Gold Nose Stud,
		ClothingItem = NoseStud_Gold,
		BodyLocation = Nose,
		Icon = NoseStud_Gold,
		Weight = 0.1,
		Cosmetic = TRUE,
		WorldStaticModel = NoseStud_Ground,
	}

NoseStud Silver.png Base.NoseStud_Silver
Source: ProjectZomboid\media\scripts\clothing\clothing_jewellery.txt

Retrieved: Build 41.78.16
item NoseStud_Silver
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Silver Nose Stud,
		ClothingItem = NoseStud_Silver,
		BodyLocation = Nose,
		Icon = NoseStud_Silver,
		Weight = 0.1,
		Cosmetic = TRUE,
		WorldStaticModel = NoseStudSilver_Ground,
	}

See also