Scanner Module: Difference between revisions

From PZwiki
m (Update)
m (Update codebox and page version, minor)
Line 1: Line 1:
{{Header|Project Zomboid|Items|Materials|Electrical materials}}
{{Header|Project Zomboid|Items|Materials|Electrical materials}}
{{Page version|41.50}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|name=Scanner Module
|name=Scanner Module
Line 11: Line 11:


==Usage==
==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.
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==
==Distribution==
Line 18: Line 18:
==Trivia==
==Trivia==
*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.
*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.
*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==
==Gallery==
Line 31: Line 31:
   | lang = java
   | lang = java
   | line = true
   | line = true
   | start = 0
   | start = 485
   | source = items_radio.txt
   | source = items_radio.txt
   | retrieved = true
   | retrieved = true
   | version = 41.50
   | version = 41.78.16
   | code =
   | code =
item ScannerModule
    item ScannerModule
{
    {
    Weight       = 0.1,
        DisplayCategory = Electronics,
    Type         = Normal,
        Weight = 0.1,
    DisplayName   = Scanner Module,
        Type = Normal,
    Icon         = ScannerChip,
        DisplayName = Scanner Module,
}
        Icon = ScannerChip,
    }
   }}
   }}
}}
}}

Revision as of 02:00, 24 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,
    }