Scanner Module: Difference between revisions

From PZwiki
(fixed page, proof of scanner attainability (https://cdn.discordapp.com/attachments/683088474479263759/989328408397897738/unknown.png))
m (Automated CodeBox update)
(26 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{languages|Motion Sensor}}
{{Header|Project Zomboid|Items|Materials|Electrical materials}}
{{header|The Game World|Items|Electricity and Engineering|type=Electric|version=Version 41|incver=50}}
{{Page version|41.78.16}}
{{notice|verify}}
{{Infobox item
{{Infobox normal
|name=Scanner Module
|display_name=Scanner Module
|icon=ScannerChip.png
|name_colour=Electrical
|icon_name=Scanner Module
|name_text_colour=Electrical
|image=ScannerChip.png
|image_width=120px
|weight=0.1
|weight=0.1
|class_name=ScannerModule
|item_id=Base.ScannerModule
}}
}}
A '''scanner module''' is an rare and useless electrical item.


== Usage ==
A '''scanner module''' is a currently useless electrical item.
Scanner modules are rare and serve no purpose in the game.


== Distribution ==
==Usage==
Scanner modules are currently rare. Spawning only in some loot containers.
Scanner modules serve no purpose in the game. They cannot be dismantled or crafted into anything. Currently, they mostly serve to provide realism to the player while looting.


== Code ==
==Distribution==
'''''From items_radio.txt (Project Zomboid directory/media/scripts/)'''''
Scanner modules can be found in radio factories, closets, garages, self storage units, in electricians crates and metal shelves.
{{Retrieved|version=41|incver=50}}
<pre> item ScannerModule
Weight = 0.1,
Type = Normal,
DisplayName = Scanner Module,
Icon = ScannerChip,
</pre>


== Trivia ==
==Trivia==
*In <code>Project Zomboid directory/media/scripts/lua/server/recipecode.lua</code>, there exists a function to obtain the item named <code>DismantleRadioSpecial</code>, though it is never called.
*In <code>Project Zomboid directory/media/lua/server/recipecode.lua</code>, there exists a function to obtain the item named <code>DismantleRadioSpecial</code>, though it is never called.
*While a model exists in the game's files, it has no texture. When the item is dropped in game, it shows the 2D icon on the ground.


{{Navbox/Electricity and Engineering}}
==Gallery==
<gallery>
ScannerModule_Model.png|The untextured scanner module model found in the game's files.
ScannerModule_Ingame.png|The scanner module as seen when dropped in game.
</gallery>
 
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 485
  | source = items_radio.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item ScannerModule
    {
        DisplayCategory = Electronics,
        Weight = 0.1,
        Type = Normal,
        DisplayName = Scanner Module,
        Icon = ScannerChip,
    }
}}
}}
 
{{Navbox equipment}}
 
[[Category:Materials]]

Revision as of 11:28, 26 March 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Scanner Module
Scanner Module
General
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Technical
Item ID
Base.ScannerModule

A scanner module is a currently useless electrical item.

Usage

Scanner modules serve no purpose in the game. They cannot be dismantled or crafted into anything. Currently, they mostly serve to provide realism to the player while looting.

Distribution

Scanner modules can be found in radio factories, closets, garages, self storage units, in electricians crates and metal shelves.

Trivia

  • In Project Zomboid directory/media/lua/server/recipecode.lua, there exists a function to obtain the item named DismantleRadioSpecial, though it is never called.
  • While a model exists in the game's files, it has no texture. When the item is dropped in game, it shows the 2D icon on the ground.

Gallery

Code

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

Source: ProjectZomboid\media\scripts\items_radio.txt

Retrieved: Build 41.78.16
item ScannerModule
    {
        DisplayCategory = Electronics,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	= Scanner Module,
        Icon	=	ScannerChip,
    }