Friendship Bracelet

From PZwiki
Project ZomboidItemsClothingAccessoriesJewelryFriendship Bracelet
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Friendship Bracelet
Bracelet Friendship Model.png
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Equipped
Wrist
Technical
Item ID
Base.Bracelet_RightFriendshipTINT
Base.Bracelet_LeftFriendshipTINT

A friendship bracelet is a clothing item and accessory that comes in several colors.

Usage

Friendship bracelets provide no functionality and are solely for cosmetic purposes.

Location

The loot distributions can be found in the table(s) below.

Bracelet_LeftFriendshipTINT distributionShow / Hide

Effective chance calculations are based off of default loot settings and median zombie density. The higher the density of zombies in an area, the higher the effective chance of an item spawning. Chance is also influenced by the lucky and unlucky traits.

Containers
Building/Room Container Effective chance
bedroom wardrobe 3.98%
classroom desk 3.98%
daycare wardrobe 3.98%
hall locker 3.98%

NPCs

Friendship bracelets will sometimes be found on student or varsity zombies.

Remove from world

As friendship bracelets 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_LeftFriendshipTINT,Base.Bracelet_RightFriendshipTINT

Variants

Icon Name Encumbrance Body location Item ID
Friendship Bracelet Friendship Bracelet 0.1 Wrist Right Base.Bracelet_RightFriendshipTINT
Friendship Bracelet Friendship Bracelet 0.1 Wrist Left Base.Bracelet_LeftFriendshipTINT

History

Base.Bracelet_RightFriendshipTINT

Version Description
41.78.16 Released on or before this version.

Help PZwiki by adding to this history.

Base.Bracelet_LeftFriendshipTINT

Version Description
41.78.16 Released on or before this version.

Help PZwiki by adding to this history.

Code

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

Bracelet Friendship.png Base.Bracelet_RightFriendshipTINT
Source: ProjectZomboid\media\scripts\clothing\clothing_jewellery.txt

Retrieved: Build 41.78.16
item Bracelet_RightFriendshipTINT
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Friendship Bracelet,
		ClothingItem = Bracelet_RightFriendshipTINT,
		BodyLocation = RightWrist,
		Icon = Bracelet_Friendship,
		Weight = 0.1,
        ClothingItemExtra = Bracelet_LeftFriendshipTINT,
        ClothingItemExtraOption = LeftWrist,
        clothingExtraSubmenu = RightWrist,
		Cosmetic = TRUE,
		WorldStaticModel = Bracelet_Friendship_Ground,
	}

Bracelet Friendship.png Base.Bracelet_LeftFriendshipTINT
Source: ProjectZomboid\media\scripts\clothing\clothing_jewellery.txt

Retrieved: Build 41.78.16
item Bracelet_LeftFriendshipTINT
	{
	    DisplayCategory = Accessory,
		Type = Clothing,
		DisplayName = Friendship Bracelet,
		ClothingItem = Bracelet_LeftFriendshipTINT,
		BodyLocation = LeftWrist,
		Icon = Bracelet_Friendship,
		Weight = 0.1,
        ClothingItemExtra = Bracelet_RightFriendshipTINT,
        ClothingItemExtraOption = RightWrist,
        clothingExtraSubmenu = LeftWrist,
		Cosmetic = TRUE,
		WorldStaticModel = Bracelet_Friendship_Ground,
	}

See also