Screws

From PZwiki
Revision as of 10:26, 20 March 2024 by CalvyBot (talk | contribs) (Updated distribution table)
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Screws
Screws Model.png
ScrewsBox Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
Single: 0.003
Box: 0.3
Function
Repairing vehicle parts
Technical
Item ID
Base.Screws
Base.ScrewsBox

Screws are components used in Mechanics

Overview

Boxes of screws contain 100 screws. You can turn a box of screws into 100 screws and vice versa using the crafting menus. Unlike boxes of nails or ammunition, boxes of screws do not provide any encumbrance reductions for you over unboxed screws. They weigh the same amount.

Usage

Screws are used in repairing vehicle parts. This is currently the only use for them.

Crafting

General

Product XP gained Skill(s) Recipe Ingredient 1
Screws.png
Screws x100
0 XP none Box of Screws
Box of Screws
(consumed)
Box of Screws
Box of Screws
0 XP none Screws.png
Screws x100
(consumed)

Metalworking

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
EngineDoor.png
Hood
1 Mechanics Mechanics 2 EngineDoor.png
Hood
(consumed)
Screws.png
Screws x8
(keep)
SheetMetal.png
Metal Sheet
(consumed)
EngineDoor.png
Trunk Lid
1 Mechanics Mechanics 2 EngineDoor.png
Hood
(consumed)
Screws.png
Screws x8
(keep)
SheetMetal.png
Metal Sheet
(consumed)

Distribution

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

Containers
Building/Room Container Rolls Chance
bedroom crate 1 0.8
cabinetfactory crate 4 8
carsupply counter 4 8
closet crate 4 8
garagestorage counter 4 8
gasstorage counter 4 8
metalshipping metal_shelves 4 8
pawnshop counter 4 8
toolstore counter 4 4
toolstorestorage metal_shelves 4 8

Disassembling some metal objects can also yield screws.

Code

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

Screws.png Base.Screws
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item Screws
    {
        DisplayCategory = Material,
        Count	=	5,
        Weight	=	0.003,
        AlwaysWelcomeGift	=	TRUE,
        Type	=	Normal,
        DisplayName	=	Screws,
        Icon	=	Screws,
        MetalValue = 1,
        WorldStaticModel = Screws,
    }

ScrewsBox.png Base.ScrewsBox
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item ScrewsBox
    {
        DisplayCategory = Material,
        Weight	=	0.3,
        Type	=	Normal,
        DisplayName	=	Box of Screws,
        Icon	=	ScrewsBox,
        MetalValue = 100,
        WorldStaticModel = ScrewsBox,
    }

See also