Bangle

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]
Notebook.png
This article may need more content.
Editors are encouraged to add new material to the page while expanding upon current topics.
Bangle
BangleGold Model.png
BangleSilver Model.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Equipped
Wrist
Technical
Item ID

A bangle is a cosmetic item. It has no functionality.

Distribution

Buildings

See more: Businesses

Bangles can be found in jewelry and department stores inside display cases.

NPCs

See more: NPC

Zombies will sometimes be found wearing bangles.

Remove from world

As bangles 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.Bracelet_BangleRightGold,Base.Bracelet_BangleLeftGold,Base.Bracelet_BangleRightSilver,Base.Bracelet_BangleLeftSilver

Variants

Icon Name Encumbrance Body location Item ID
Gold Bangle Gold Bangle 0.1 Wrist Right Base.Bracelet_BangleRightGold
Gold Bangle Gold Bangle 0.1 Wrist Left Base.Bracelet_BangleLeftGold
Silver Bangle Silver Bangle 0.1 Wrist Right Base.Bracelet_BangleRightSilver
Silver Bangle Silver Bangle 0.1 Wrist Left Base.Bracelet_BangleLeftSilver

Code

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

Source: ProjectZomboid\media\scripts\clothing\clothing_jewellery.txt

Retrieved: Build 41.78.16
item Bracelet_BangleRightGold
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Gold Bangle,
		ClothingItem = Bracelet_BangleRightGold,
		BodyLocation = RightWrist,
		Icon = Bracelet_Bangle,
		Weight = 0.1,
        ClothingItemExtra = Bracelet_BangleLeftGold,
        ClothingItemExtraOption = LeftWrist,
        clothingExtraSubmenu = RightWrist,
		Cosmetic = TRUE,
		WorldStaticModel = Bracelet_Bangle_Ground,
	}

See also