Timer: Difference between revisions

From PZwiki
(PZ Updater automated execution(task: deploy ReLookup, eid: 4ae7514a3224143c76f1ea3822475391))
m (Automated Formatting)
 
(23 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{languages|Timer}}
{{Header|Project Zomboid|Items|Materials|Electrical materials}}
{{header|The Game World|Items|Electricity and Engineering|type=Electric|version=Version 40|incver=5}}{{Infobox normal
{{Page version|41.78.16}}
|display_name = Timer
{{Infobox item
|name_colour = Electric
|name=Timer
|name_text_colour = Electric
|model=Timer_Model.png
|image = Timer.png
|icon=Timer.png
|weight = 0.3
|icon_name=Timer
|primary_use = [[Crafting]]
|category=Electronics
|class_name = Base.Timer
|weight=0.3
}}A '''timer''' is an [[electrical]] [[items|item]] used in [[crafting]].
|function=[[Crafting]]
|material=Metal
|material_value=7
|item_id=Base.Timer
}}
A '''timer''' is an [[electrical]] [[Items|item]] used in [[crafting]].


==Usage==
==Usage==
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}}<!-- Automatically generated by ReLookup. Subject RecipeLookup: 7008 -->
{{Crafting/sandbox2
{{Crafting/core|ing=4
|crafted_timer
| product_image = [[File:TimerCrafted.png|link=Crafted Timer|Crafted Timer]] | product_name = [[Crafted Timer]] | product_quantity = x1
| xp = <!-- Not present in the old template. Please fill in manually. -->
| sl = [[Electrical]] 1
| req = [[File:MagazineElectronics03.png|32px|Recipe Magazines#Electrical|Electronics Magazine Vol.2]]
| f1 = [[File:TimerParts.png]] | i1 = [[Alarm Clock]]<br>or<br>[[Timer]] | q1 = x1 | tag1 = (consumed)
| f2 = [[File:Screwdriver.png|link=Screwdriver|Screwdriver]] | i2 = [[Screwdriver]] | q2 =  | tag2 = (keep)
| f3 = [[File:ElectronicsScrap.png|link=Electronics Scrap|Electronics Scrap]] | i3 = [[Electronics Scrap]] | q3 = x1 | tag3 = (consumed)
| f4 = [[File:Glue.png|link=Glue|Glue]] | i4 = [[Glue]] | q4 = (1 unit)
}}
}}
|}


==Code==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=40|incver=5}}
| {{CodeSnip
<pre> item Timer
  | lang = java
Weight = 0.3,
  | line = true
Type = Normal,
  | start = 242
DisplayName = Timer,
  | source = newitems.txt
Icon = Timer,
  | retrieved = true
MetalValue = 7,</pre>
  | version = 41.78.16
  | code =
item Timer
    {
        DisplayCategory = Electronics,
        Weight = 0.3,
        Type = Normal,
        DisplayName = Timer,
        Icon = Timer,
        MetalValue = 7,
        WorldStaticModel = Timer,
    }
}}
}}


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


{{Navbox/Electricity and Engineering}}


[[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