Window

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]
PlushSpiffo.pngThis article is about building windows. For vehicle windows, see Car Window. For the business, see Window (business).
Window
Tile Window 1.png
Tile Window 2.png
Tile Window 3.png
Tile Window 4.png
Tile Window 5.png
General
Category
Furniture
EncumbranceMoodle Icon HeavyLoad.png
10
Move
Skill (level)
Tool(s)
Crowbar
Technical
Item ID(s)
movables_fixtures_windows_01_1

A window is a tile used to provide access and vision through a wall.

Usage

A window allows the player to see, shoot, and enter specific buildings. Sheet ropes allow the player to descend out a window to ground level if the window is above the first floor. A large sound cue is also made when a window is broken, which can act as an alert to the player. It can take as little as 20 in-game minutes for a zombie to smash an unbarricaded window.

Windows can be barricaded using planks, or metal. Barricading a window increases the time it will take for a zombie to break into a building. Metal sheet barricades will block vision entirely, while planks will reduce vision as more are added. Metal bar barricades do not inhibit vision.

Curtains can be made out of sheets, or can be found pre-existing on the window, and are used to block vision windows. When covered, the window's line of sight is blocked from inside and outside. The curtains can only be opened and closed from the inside.

Windows can be smashed by a player, dropping broken glass onto the floor. there is also broken glass left in the window, the player must remove the broken glass from the window via the context menu, otherwise they may man be cut while climbing through it. A weapon must be equipped for this option to be available. Breaking a window using your bare hands guarantees bleeding.

Any open or smashed window can be climbed through, though it is not recommended to climb through windows on the second floor or above without an attatched sheet rope, or the player risks severe injury. Both players and zombies can climb through an open or smashed window.

Crafting

Windows can not be crafted, and can only be picked up from already existing houses using the pick up option. This requires a crowbar, and level 2 carpentry. The risk of breaking the window decreases as the players carpentry skill increases.

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide
Retrieved: Build 41.78.16
if window:isSmashed() and not window:isGlassRemoved() and not barricade then
            if test == true then return true; end
            local option = context:addOption(getText("ContextMenu_RemoveBrokenGlass"), worldobjects, ISWorldObjectContextMenu.onRemoveBrokenGlass, window, player);
            if not playerObj:getPrimaryHandItem() then
                option.notAvailable = true
                local tooltip = ISWorldObjectContextMenu.addToolTip()
                tooltip.description = getText("Tooltip_RemoveBrokenGlassNoItem")
                option.toolTip = tooltip
            end
        end
	end

See also