Logs Stack

From PZwiki
(Redirected from Logs Stack)
Project ZomboidItemsMaterialsWoodLogs Stack
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Logs Stack
TwoLogsStack Model.png
ThreeLogsStack Model.png
FourLogsStack Model.png
General
Category
Material
Encumbrance
Moodle Icon HeavyLoad.png
6 (2 logs)
9 (3 logs)
12 (4 logs)
Function
Encumbrance reduction
Properties
Capacity
Technical
Item ID
Base.LogStacks2
Base.LogStacks3
Base.LogStacks4

The two-logs stack, three-logs stack and four-logs stack are materials used in carpentry.

Usage

Log stacks are used to significantly reduce the encumbrance of logs from 9 to just 3 per log, making them much easier to move. The encumbrance reduction is compounded when you equip the Log Stacks in the Primary or Secondary slot.

Crafting

Logs are tied together using rope or sheet rope. The rope is returned to the player once the logs are unstacked.

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
Logs2.png
Logs Stack
0 XP none Logs.png
Log x2
(consumed)
One of:
Rope.png Rope x2
Sheet Rope.png Sheet Rope x2

(consumed)
Logs3.png
Logs Stack
0 XP none Logs.png
Log x3
(consumed)
One of:
Rope.png Rope x2
Sheet Rope.png Sheet Rope x2

(consumed)
Logs4.png
Logs Stack
0 XP none Logs.png
Log x4
(consumed)
One of:
Rope.png Rope x2
Sheet Rope.png Sheet Rope x2

(consumed)

Code

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

Two Logs Stack Logs2.png Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item LogStacks2
	{
	    DisplayCategory = Material,
		Weight	=	6,
		Type	=	Normal,
		DisplayName	=	Two Logs Stack,
		Icon	=	Logs2,
		WorldStaticModel = TwoLogsStack,
	}


Three Logs Stack Logs3.png Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item LogStacks3
    {
        DisplayCategory = Material,
        Weight	=	9,
        Type	=	Normal,
        DisplayName	=	Three Logs Stack,
        Icon	=	Logs3,
        WorldStaticModel = ThreeLogsStack,
    }


Four Logs Stack Logs4.png Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item LogStacks4
    {
        DisplayCategory = Material,
        Weight	=	12,
        Type	=	Normal,
        DisplayName	=	Four Logs Stack,
        Icon	=	Logs4,
        WorldStaticModel = FourLogsStack,
    }

See also