Money: Difference between revisions

From PZwiki
m (Whoops!)
m (Automated Formatting)
(26 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{languages|Money}}
{{Header|Project Zomboid|Items|Miscellaneous items|Junk}}
{{header|The Game World|Items|version=Version 41|incver=50}}{{Infobox normal
{{Page version|41.78.16}}
| display_name = Money
{{Infobox item
| name_colour =  
|name=Money
| name_text_colour =
|model=Money_Model.png
| image = Money.png
|icon=Money.png
| image_width = 120px
|model_width=128px
| weight = 0.01
|weight=0.01
| function = ''None''
|function=''None''
| class_name = Base.Money}}'''Money''' is currently a useless {{T|item}}, and often considered as ''junk''.
|item_id=Base.Money
}}
'''Money''' is a mostly useless item, serving mainly as clutter to make the player's looting experience more realistic. It has no other current uses other than fire starting/fuel and is often considered ''junk''.


==Usage==
==Usage==
Money is an item that has no use, being added purely for the purpose of clutter, creating more realism for the {{T|player}} when looting.  
===Fire starting===
Money can be used as kindling for fire starting.
 
===Fuel===
It can be used as a fuel for [[Heat source|fires]], and lasts for 5 minutes if done so.


==Distribution==
==Distribution==
Money can be found in [[Containers#Shop Counter|cash registers]] in stores and in [[Containers#Stashes|stashes]].
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="6"|all
|[[plankstash]]
|4
|1
|-
|[[plankstash]]
|4
|1
|-
|[[plankstash]]
|4
|1
|-
|[[plankstash]]
|4
|1
|-
|[[plankstash]]
|4
|1
|-
|[[plankstash]]
|4
|1
|-
|rowspan="4"|laundry
|[[clothingdryer]]
|4
|0.5
|-
|[[clothingdryer]]
|4
|0.2
|-
|[[clothingdryer]]
|4
|0.2
|-
|[[clothingdryer]]
|4
|0.2
|}


===Build 41===
==Code==
Money can also be found in [[Duffel Bag]]s that are marked as Money Bags (which may replace Duffel bag stashes).
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 5
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Money
    {
        DisplayCategory = Junk,
        Weight = 0.01,
        Type = Normal,
        DisplayName = Money,
        Icon = Money,
        WorldStaticModel = Money,
    }
}}
}}


== Code ==
==See also==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{Navbox items|junk}}
{{Retrieved|version=41|incver=50}}
<pre> item Money
Weight = 0.01,
Type = Normal,
DisplayName = Money,
Icon = Money,
</pre>

Revision as of 10:21, 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]
Money
Money Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
0.01
Function
None
Technical
Item ID
Base.Money

Money is a mostly useless item, serving mainly as clutter to make the player's looting experience more realistic. It has no other current uses other than fire starting/fuel and is often considered junk.

Usage

Fire starting

Money can be used as kindling for fire starting.

Fuel

It can be used as a fuel for fires, and lasts for 5 minutes if done so.

Distribution

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

Containers
Building/Room Container Rolls Chance
all plankstash 4 1
plankstash 4 1
plankstash 4 1
plankstash 4 1
plankstash 4 1
plankstash 4 1
laundry clothingdryer 4 0.5
clothingdryer 4 0.2
clothingdryer 4 0.2
clothingdryer 4 0.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 Money
    {
        DisplayCategory = Junk,
        Weight	=	0.01,
        Type	=	Normal,
        DisplayName	=	Money,
        Icon	=	Money,
        WorldStaticModel = Money,
    }

See also