Wooden Window: Difference between revisions

From PZwiki
(Updated article to B41, removed outdated and improve tags.)
m (Minor)
Line 3: Line 3:
A '''wooden window''' is a structure that the [[player]] can build to fortify a structure, or in the creation of new buildings.
A '''wooden window''' is a structure that the [[player]] can build to fortify a structure, or in the creation of new buildings.


[[File:Wooden Window Frame Construction.png|thumb|right|In-game screenshot wooden windows at different levels in order from left to right.]]
[[File:Wooden Window Frame Construction.png|thumb|right|In-game screenshot of wooden windows at different levels in order from left to right.]]


==Usage==
==Usage==
Wooden windows are a defensive structure that can be built to seal entranceways, reinforce entry/exit points, and can be used in the creation of completely new structures. The window allows for the installation of windows picked up from other structures, as well as barricades to be erected over the window.  
Wooden windows are a defensive structure that can be built to seal entranceways, reinforce entry/exit points, and can be used in the creation of completely new structures. The window allows for the installation of windows picked up from other structures, as well as barricades to be erected over the window.  


Window frames with a broken or no window, can be climbed through by [[zombie]]s, so long as they are not barricaded.  
Window frames with a broken or no window, can be climbed through by [[zombie]]s, so long as they are not barricaded.


Wooden windows can be destroyed with a [[sledgehammer]]. They can also be plastered and painted using [[paint]] and a [[paintbrush]].
Wooden windows can be destroyed with a [[sledgehammer]]. They can also be plastered and painted using [[paint]] and a [[paintbrush]].

Revision as of 01:51, 19 January 2024

A wooden window is a structure that the player can build to fortify a structure, or in the creation of new buildings.

In-game screenshot of wooden windows at different levels in order from left to right.

Usage

Wooden windows are a defensive structure that can be built to seal entranceways, reinforce entry/exit points, and can be used in the creation of completely new structures. The window allows for the installation of windows picked up from other structures, as well as barricades to be erected over the window.

Window frames with a broken or no window, can be climbed through by zombies, so long as they are not barricaded.

Wooden windows can be destroyed with a sledgehammer. They can also be plastered and painted using paint and a paintbrush.

Crafting

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3 Ingredient 4
Wooden Window Lvl 1
Wooden Window Lvl 1
2.5 Carpentry Carpentry 2 Hammer.png
Hammer (tag)
(keep)
Plank.png
Plank x2
(consumed)
Nails.png
Nails x4
(consumed)
Wooden Window Lvl 2
Wooden Window Lvl 2
5 Carpentry Carpentry 4 Hammer.png
Hammer (tag)
(keep)
Plank.png
Plank x2
(consumed)
Nails.png
Nails x4
(consumed)
Wooden Window Lvl 3
Wooden Window Lvl 3
7.5 Carpentry Carpentry 7 Hammer.png
Hammer (tag)
(keep)
Plank.png
Plank x2
(consumed)
Nails.png
Nails x4
(consumed)
Wooden Window Lvl 2
Upgrade Wooden Window From Lvl 1 to Lvl 2
2.5 Carpentry Carpentry 4 Hammer.png
Hammer (tag)
(keep)
Wooden Window Lvl 1
Wooden Window Lvl 1
Plank.png
Plank x1
(consumed)
Nails.png
Nails x4
(consumed)
Wooden Window Lvl 3
Upgrade Wooden Window From Lvl 1 to Lvl 3
5 Carpentry Carpentry 7 Hammer.png
Hammer (tag)
(keep)
Wooden Window Lvl 1
Wooden Window Lvl 1
Plank.png
Plank x2
(consumed)
Nails.png
Nails x8
(consumed)
Wooden Window Lvl 3
Upgrade Wooden Window From Lvl 2 to Lvl 3
2.5 Carpentry Carpentry 7 Hammer.png
Hammer (tag)
(keep)
Wooden Window Lvl 2
Wooden Window Lvl 2
Plank.png
Plank x1
(consumed)
Nails.png
Nails x4
(consumed)

Construction

Right-clicking on the wooden frame shows the upgrade menu.

To build a wooden window, the player must have a hammer, planks, and nails in their inventory. The ingredients must be either in the player's inventory, or within reach on the floor. First, the player must build a wooden frame via the carpentry context menu, accessed by right-clicking. Once the frame is built, the player can then upgrade the wall as required by using the context menu again, this time on the already built frame. The level of window available is based on the player's carpentry level. Level 1 and 2 windows can be upgraded to a better level after construction.

Skill requirements

  • Level 1 window: Carpentry 2
  • Level 2 window: Carpentry 4
  • Level 3 window: Carpentry 7

Trivia

  • A sheet rope can also be placed in a wooden window to allow for an escape route in a structure.

Code

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

Source: ProjectZomboid\media\scripts\multistagebuild.txt

Retrieved: Build 41.78.16
multistagebuild CreateWoodenWindow_1
    {
        PreviousStage:WoodenWallFrame;MetalWallFrame,
        Name:WoodenWindowLvl1,
        TimeNeeded:250,
        BonusHealth:400,
        SkillRequired:Woodwork=2,
        ItemsRequired:Base.Plank=2;Base.Nails=4,
        ItemsToKeep:Base.Hammer,
        Sprite:walls_exterior_wooden_01_52,
        NorthSprite:walls_exterior_wooden_01_53,
        CraftingSound:Hammering,
        ID:Create Wooden Window Lvl 1,
        XP:Woodwork=10,
        CanBarricade:true,
    }

    multistagebuild UpgradeWoodenWindow_1To2
    {
        PreviousStage:WoodenWindowLvl1,
        Name:WoodenWindowLvl2,
        TimeNeeded:200,
        BonusHealth:100,
        BonusSkill:FALSE,
        SkillRequired:Woodwork=4,
        ItemsRequired:Base.Plank=1;Base.Nails=4,
        ItemsToKeep:Base.Hammer,
        Sprite:walls_exterior_wooden_01_48,
        NorthSprite:walls_exterior_wooden_01_49,
        CraftingSound:Hammering,
        ID:Upgrade to Wooden Window Lvl 2,
        XP:Woodwork=10,
        CanBarricade:true,
    }

    multistagebuild CreateWoodenWindow_2
    {
        PreviousStage:WoodenWallFrame;MetalWallFrame,
        Name:WoodenWindowLvl2,
        TimeNeeded:250,
        BonusHealth:500,
        SkillRequired:Woodwork=4,
        ItemsRequired:Base.Plank=2;Base.Nails=4,
        ItemsToKeep:Base.Hammer,
        Sprite:walls_exterior_wooden_01_48,
        NorthSprite:walls_exterior_wooden_01_49,
        CraftingSound:Hammering,
        ID:Create Wooden Window Lvl 2,
        XP:Woodwork=20,
        CanBarricade:true,
    }

    multistagebuild UpgradeWoodenWindow_1To3
    {
        PreviousStage:WoodenWindowLvl1,
        Name:WoodenWindowLvl3,
        TimeNeeded:220,
        BonusHealth:200,
        BonusSkill:FALSE,
        SkillRequired:Woodwork=7,
        ItemsRequired:Base.Plank=2;Base.Nails=8,
        ItemsToKeep:Base.Hammer,
        Sprite:walls_exterior_wooden_01_32,
        NorthSprite:walls_exterior_wooden_01_33,
        CanBePlastered:true,
        WallType:windowsframe,
        CraftingSound:Hammering,
        ID:Upgrade to Wooden Window Lvl 3,
        XP:Woodwork=20,
        CanBarricade:true,
    }

    multistagebuild UpgradeWoodenWindow_2To3
    {
        PreviousStage:WoodenWindowLvl2,
        Name:WoodenWindowLvl3,
        TimeNeeded:200,
        BonusHealth:100,
        BonusSkill:FALSE,
        SkillRequired:Woodwork=7,
        ItemsRequired:Base.Plank=1;Base.Nails=4,
        ItemsToKeep:Base.Hammer,
        Sprite:walls_exterior_wooden_01_32,
        NorthSprite:walls_exterior_wooden_01_33,
        CanBePlastered:true,
        WallType:windowsframe,
        CraftingSound:Hammering,
        ID:Upgrade to Wooden Window Lvl 32,
        XP:Woodwork=10,
        CanBarricade:true,
    }

    multistagebuild CreateWoodenWindow_3
    {
        PreviousStage:WoodenWallFrame;MetalWallFrame,
        Name:WoodenWindowLvl3,
        TimeNeeded:250,
        BonusHealth:600,
        SkillRequired:Woodwork=7,
        ItemsRequired:Base.Plank=2;Base.Nails=4,
        ItemsToKeep:Base.Hammer,
        Sprite:walls_exterior_wooden_01_32,
        NorthSprite:walls_exterior_wooden_01_33,
        CanBePlastered:true,
        WallType:windowsframe,
        CraftingSound:Hammering,
        ID:Create Wooden Window Lvl 3,
        XP:Woodwork=30,
        CanBarricade:true,
    }

See also