Screws

From PZwiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
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 Ingredients Tools Requirements Workstation XP
Screws.png
Screws ×100
ScrewsBox.png Box of Screws ×1 none none none none
ScrewsBox.png
Box of Screws
Screws.png Screws ×100 none none none none

Metalworking

Product Ingredients Tools Requirements Workstation XP
EngineDoor.png
Hood
EngineDoor.png Hood ×1
Screws.png Screws ×8
SheetMetal.png Metal Sheet ×1
none Mechanics 2 none 1 Mechanics
EngineDoor.png
Trunk Lid
EngineDoor.png Hood ×1
Screws.png Screws ×8
SheetMetal.png Metal Sheet ×1
none Mechanics 2 none 1 Mechanics

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\newitems.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