Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Fanny Pack

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]
Fanny Pack
FannyPack Model.png
General
Category
Container
Encumbrance
Moodle Icon HeavyLoad.png
0.2 (empty)
0.56 (full)
Equipped
Fanny Pack Front
OR
Fanny Pack Back
Properties
Capacity
1
Technical
Item ID
Base.Bag_FannyPackFront
Base.Bag_FannyPackBack

A fanny pack is a container item.

Usage

The fanny pack can be worn on the front or back of the character. It has the lowest capacity of all the bags. However, it is useful for carrying small items like bandages, medicine, or cigarettes. Two can be worn at once alongside the backpack of your choice, as they occupy unique slots on your character. Additionally, organized will increase fanny pack capacity to 2, making them twice as useful.

Location

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

Bag_FannyPackFront distributionShow / Hide

Effective chance calculations are based off of default 'apocalypse' loot settings, with no luck modifier, and average 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. Duplicate entries do exist, but have been removed for clarity.

Containers
Building/Room Container Effective chance
all locker 6.74%
all wardrobe 6.74%
bathroom locker 6.74%
bedroom locker 6.74%
bedroom wardrobe 6.74%
changeroom locker 6.74%
closet crate 6.74%
closet metal_shelves 6.74%
daycare wardrobe 6.74%
factorystorage locker 6.74%
garagestorage crate 6.74%
garagestorage locker 6.74%
laundry locker 6.74%
livingroom wardrobe 6.74%
security locker 6.74%
storageunit crate 6.74%
Outfit
Outfit Probability GUID
Tourist (female) 50% 66e92995-31c6-4b85-84e3-453dd634b37b
Tourist (male) 50% 9265ff17-2623-42a1-84ff-889c6a0ca51a

History

Base.Bag_FannyPackFront

Version Description
Build 41.65 DisplayCategory added with value Bag.
Build 41.54 WorldStaticModel added with value FannyPack_Ground.
Build 41.51 Capacity changed from 3 to 1.
RunSpeedModifier changed from 0.97 to 0.98.
Weight changed from 1 to 0.2.
WeightReduction changed from 7 to 50.
Build 41.46 CloseSound added with value CloseBag.
OpenSound added with value OpenBag.
PutInSound added with value PutItemInBag.
Build 41.40 clothingExtraSubmenu added with value FannyPack_WearFront.
Build 41.38 Released on this version.

Base.Bag_FannyPackBack

Version Description
Build 41.65 DisplayCategory added with value Bag.
Build 41.54 WorldStaticModel added with value FannyPack_Ground.
Build 41.51 Capacity changed from 3 to 1.
RunSpeedModifier changed from 0.97 to 0.98.
Weight changed from 1 to 0.2.
WeightReduction changed from 7 to 50.
Build 41.46 CloseSound added with value CloseBag.
OpenSound added with value OpenBag.
PutInSound added with value PutItemInBag.
Build 41.40 clothingExtraSubmenu added with value FannyPack_WearBack.
Build 41.38 Released on this version.

Code

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

Front
Source: ProjectZomboid\media\scripts\clothing\clothing_bags.txt

Retrieved: Build 41.78.16
item Bag_FannyPackFront
    {
        DisplayCategory = Bag,
        WeightReduction	=	50,
        ClothingItemExtra = Bag_FannyPackBack,
        ClothingItemExtraOption = FannyPack_WearBack,
        clothingExtraSubmenu = FannyPack_WearFront,
        Weight	=	0.2,
        Type	=	Container,
        Capacity	=	1,
        DisplayName	=	Fanny Pack (Front),
        Icon	=	FannyPack,
        OpenSound   =   OpenBag,
        CloseSound   =   CloseBag,
        PutInSound   =   PutItemInBag,
        BodyLocation = FannyPackFront,
        ClothingItem = Bag_FannyPackFront,
        CanBeEquipped = FannyPackFront,
        RunSpeedModifier = 0.98,
        WorldStaticModel = FannyPack_Ground,
    }

Back
Source: ProjectZomboid\media\scripts\clothing\clothing_bags.txt

Retrieved: Build 41.78.16
item Bag_FannyPackBack
    {
        DisplayCategory = Bag,
        WeightReduction	=	50,
        ClothingItemExtra = Bag_FannyPackFront,
        ClothingItemExtraOption = FannyPack_WearFront,
        clothingExtraSubmenu = FannyPack_WearBack,
        Weight	=	0.2,
        Type	=	Container,
        Capacity	=	1,
        DisplayName	=	Fanny Pack (Back),
        Icon	=	FannyPack,
        OpenSound   =   OpenBag,
        CloseSound   =   CloseBag,
        PutInSound   =   PutItemInBag,
        BodyLocation = FannyPackBack,
        ClothingItem = Bag_FannyPackBack,
        CanBeEquipped = FannyPackBack,
        RunSpeedModifier = 0.98,
        WorldStaticModel = FannyPack_Ground,
    }

See also