Timer: Difference between revisions

From PZwiki
m (Minor)
m (Automated Formatting)
 
(15 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Materials|Electrical materials}}
{{Header|Project Zomboid|Items|Electricity and Engineering|type=Electric|version=Version 41|incver=78.16}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|display_name=Timer
|name=Timer
|name_colour=Electric
|model=Timer_Model.png
|name_text_colour=Electric
|model=Timer_Model.png  
|icon=Timer.png
|icon=Timer.png
|icon_name=Timer
|icon_name=Timer
|category=Electronics
|weight=0.3
|weight=0.3
|primary_use=[[Crafting]]
|function=[[Crafting]]
|class_name=Base.Timer
|material=Metal
|material_value=7
|item_id=Base.Timer
}}
}}
A '''timer''' is an [[electrical]] [[Items|item]] used in [[crafting]].
A '''timer''' is an [[electrical]] [[Items|item]] used in [[crafting]].
Line 17: Line 18:
The only current use for the timer is crafting a [[Crafted Timer|crafted timer]].
The only current use for the timer is crafting a [[Crafted Timer|crafted timer]].


Note that the timer ''cannot'' be used in a similar way to the [[Alarm Clock|alarm clock]], in setting a time to emit a noise.
Note that the timer ''cannot'' be used similarly to the [[Alarm Clock|alarm clock]], in setting a time to emit a noise.


==Crafting==
==Crafting==
{{Crafting header|ing=4}}
{{Crafting/sandbox2
{{Crafting electrical|102|ing=4}}
|crafted_timer
|}
}}


==Code==
==Code==
Line 29: Line 30:
   | lang = java
   | lang = java
   | line = true
   | line = true
   | start = 0
   | start = 242
   | source = newitems.txt
   | source = newitems.txt
   | retrieved = true
   | retrieved = true
   | version = 40
   | version = 41.78.16
  | incver = 5
   | code =
   | code =
item Timer
item Timer
{
    {
    Weight       = 0.3,
        DisplayCategory = Electronics,
    Type         = Normal,
        Weight = 0.3,
    DisplayName   = Timer,
        Type = Normal,
    Icon         = Timer,
        DisplayName = Timer,
    MetalValue   = 7,
        Icon = Timer,
}
        MetalValue = 7,
  }}
        WorldStaticModel = Timer,
    }
}}
}}
}}


==See also==
==See also==
*[[Digital Watch]]
*[[Alarm Clock]]
 
{{Navbox items|electrical_materials}}


{{Navbox equipment}}


[[Category:Electronics]]
[[Category:Materials]]
[[Category:Electricals and Transmission (Project)]]
[[Category:Electricals and Transmission (Project)]]

Latest revision as of 12:52, 14 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Timer
Timer Model.png
General
Category
Electronics
Encumbrance
Moodle Icon HeavyLoad.png
0.3
Function
Properties
Material
Metal
Metal quantity
7
Technical
Item ID
Base.Timer

A timer is an electrical item used in crafting.

Usage

The only current use for the timer is crafting a crafted timer.

Note that the timer cannot be used similarly to the alarm clock, in setting a time to emit a noise.

Crafting

Product Ingredients Tools Requirements Workstation XP
TimerCrafted.png
Crafted Timer
One of:
AlarmClock.png Alarm Clock ×1
Timer.png Timer ×1
Each of:
ElectronicsScrap.png Scrap Electronics ×1
Glue.png Glue ×1 unit(s)
Screwdriver.png
Screwdriver
Electrical 1
(and)
MagazineElectronics02.png
Electronics Magazine Vol.2
none none

Code

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

Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item Timer
    {
        DisplayCategory = Electronics,
        Weight	=	0.3,
        Type	=	Normal,
        DisplayName	=	Timer,
        Icon	=	Timer,
        MetalValue = 7,
        WorldStaticModel = Timer,
    }

See also