Bell: Difference between revisions

From PZwiki
(added model + update code block)
m (Automated Formatting)
 
(20 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Miscellaneous items|Junk}}
{{header|The Game World|Items|version=Version 41|incver=78.16}}{{Infobox normal
{{Page version|41.78.16}}
| display_name = Bell
{{Infobox item
| name_colour =
|name=Bell
| name_text_colour =
|model=Bell_Model.png
| image = Bell_Model.png
|model_width=200px
| image_width = 200px
|icon=Bell.png
| alternate_image = Bell.png
|icon_name=Bell
| alternate_name = Bell
|category=Junk
| category = Junk
|weight=0.1
| weight = 0.1
|function=''None''
| function = ''None''
|item_id=Base.Bell
| class_name = Base.Bell
}}
}}A '''bell''' is currently a useless {{T|item}}, and often considered as ''junk''.
A '''bell''' is currently a useless item, and often considered as ''junk''.


==Usage==
==Usage==
A bell has no use, being added purely for the purpose of clutter, creating more realism for the {{T|player}} when looting.  
A bell has no use, being added purely for the purpose of clutter, creating more realism for the player when looting.


==Distribution==
==Distribution==
Bells can be found in motels.  
Bells can be found in motels.


== Code ==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41|incver=78.16}}
| {{CodeSnip
<pre>    item Bell
  | lang = java
  | line = true
  | start = 285
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Bell
     {
     {
         DisplayCategory = Junk,
         DisplayCategory = Junk,
Line 32: Line 39:
         MetalValue = 50,
         MetalValue = 50,
         WorldStaticModel = Bell,
         WorldStaticModel = Bell,
     }</pre>
     }
}}
}}


==See also==
==See also==
* [[Corkscrew]]
*[[Corkscrew]]
 
{{Navbox items|junk}}

Latest revision as of 06:31, 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]
Bell
Bell Model.png
General
Category
Junk
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Function
None
Technical
Item ID
Base.Bell

A bell is currently a useless item, and often considered as junk.

Usage

A bell has no use, being added purely for the purpose of clutter, creating more realism for the player when looting.

Distribution

Bells can be found in motels.

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 Bell
    {
        DisplayCategory = Junk,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	=	Bell,
        Icon	=	Bell,
        MetalValue = 50,
        WorldStaticModel = Bell,
    }

See also