TV Remote: Difference between revisions

From PZwiki
m (template fix)
m (Remove lines))
(29 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Electronics}}
{{header|The Game World|Items|Electricity and Engineering|type=Electric|version=Version 40|incver=43}}{{Infobox normal
{{Page version|41.78.16}}
|display_name = TV Remote
{{Infobox item
|name_colour = Electric
|name=TV Remote
|name_text_colour = Electric
|model=Remote_model.png
|image = Remote.png
|icon=Remote.png
|weight = 0.2
|icon_name=TV Remote
|primary_use = [[Crafting]]
|weight=0.2
|class_name = Base.Remote
|primary_use=[[Crafting]]
}}{{About|the remote used in crafting|the remote used to trigger traps|Remote Controller}}
|item_id=Base.Remote
A '''TV remote''' is an [[electrical]] [[item]] used in [[crafting]].
}}
 
{{About|the remote used in crafting|the remote used to trigger traps|Remote Controller}}
__TOC__
A '''TV remote''' is an [[electrical]] [[Items|item]] used in [[crafting]].


==Usage==
==Usage==
The TV remote can be dismantled, producing a [[receiver]], or craft [[Remote Controller|remote controllers]].
The TV remote can be dismantled to produce a [[receiver]], or crafted into a [[Remote Controller|remote controller]].


Note that the TV remote ''cannot'' interact with a [[Television|TV]].
Note that the TV remote ''cannot'' interact with a [[Television|TV]].


==Crafting==
==Crafting==
{{Crafting table header}}
{{Crafting/sandbox2
{{RecipeLookup|7029}}
|receiver
{{RecipeLookup|7004}}
|remote_controller_v1
{{RecipeLookup|7005}}
|remote_controller_v2
{{RecipeLookup|7006}}
|remote_controller_v3
{{Crafting table footer}}
}}


==Distribution==
==Distribution==
Can be found in household [[Containers#Bedroom Storage|side tables]], electronics store [[Containers#Counters|counters]] and [[Containers#Shelves|shelves]].
The loot distributions can be found in the table(s) below.
 
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|rowspan="2"|bedroom
|[[crate]]
|4
|4
|-
|[[crate]]
|1
|0.4
|-
|departmentstorage
|[[metal_shelves]]
|4
|1
|-
|electronicsstorage
|[[shelves]]
|4
|1
|-
|livingroom
|[[sidetable]]
|4
|2
|}


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


==See also==
==See also==
*[[Electrical|Electrical Guide]]
*[[Electrical]]


{{Navbox/Electricity and Engineering}}
{{Navbox items|equipment}}


[[Category:Electrical]]
[[Category:Electricals and Transmission (Project)]]
[[Category:Electricals and Transmission (Project)]]

Revision as of 07:25, 15 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]
TV Remote
Remote model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Function
Technical
Item ID
Base.Remote
PlushSpiffo.pngThis article is about the remote used in crafting. For the remote used to trigger traps, see Remote Controller.

A TV remote is an electrical item used in crafting.

Usage

The TV remote can be dismantled to produce a receiver, or crafted into a remote controller.

Note that the TV remote cannot interact with a TV.

Crafting

Product Ingredients Tools Requirements Workstation XP
Receiver.png
Receiver
Remote.png TV Remote ×1 Screwdriver.png
Screwdriver
none none 0.5 Electrical
RemoteCrafted.png
Remote Controller V1
Remote.png TV Remote ×1
ElectronicsScrap.png Scrap Electronics ×2
Glue.png Glue ×2 unit(s)
Screwdriver.png
Screwdriver
Electrical 2
(and)
MagazineElectronics01.png
Electronics Magazine Vol.1
none none
RemoteCrafted.png
Remote Controller V2
Remote.png TV Remote ×1
ElectronicsScrap.png Scrap Electronics ×3
Glue.png Glue ×2 unit(s)
Screwdriver.png
Screwdriver
Electrical 4
(and)
MagazineElectronics01.png
Electronics Magazine Vol.1
none none
RemoteCrafted.png
Remote Controller V3
Remote.png TV Remote ×1
ElectronicsScrap.png Scrap Electronics ×4
Glue.png Glue ×2 unit(s)
Screwdriver.png
Screwdriver
Electrical 6
(and)
MagazineElectronics01.png
Electronics Magazine Vol.1
none none

Distribution

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
bedroom crate 4 4
crate 1 0.4
departmentstorage metal_shelves 4 1
electronicsstorage shelves 4 1
livingroom sidetable 4 2

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 Remote
    {
        DisplayCategory = Electronics,
        Weight	=	0.2,
        Type	=	Normal,
        DisplayName	=	TV Remote,
        Icon	=	Remote,
        MetalValue = 8,
        WorldStaticModel = Remote,
    }

See also