Empty Notebook: Difference between revisions

From PZwiki
(→‎Code: code box update)
Line 24: Line 24:


==Code==
==Code==
'''''From items_literature.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41|incver=50}}
| {{CodeSnip
<pre>
  | lang = java
item Notebook
  | line = true
        Weight = 0.5,
  | start = 0
        Type = Literature,
  | source = items_literature.txt
        DisplayName = Empty Notebook,
  | retrieved = true
        Icon = Notebook,
  | version = 41
        CanBeWrite = true,
  | incver = 50
        PageToWrite = 10,
  | code =
</pre>
item Notebook
{
    Weight = 0.5,
    Type = Literature,
    DisplayName = Empty Notebook,
    Icon = Notebook,
    CanBeWrite = true,
    PageToWrite = 10,
}
  }}
}}


==See also==
==See also==

Revision as of 08:00, 8 January 2024

The Game WorldItemsLiteratureEmpty Notebook
Empty Notebook
Empty Notebook
General
Category Literature
Encumbrance
Heavy Load
0.5
Writable True
Total pages 10 pages
Technical details
Base ID Base.Notebook
PlushSpiffo.pngThis article is about the smaller notebook with fewer pages. For the larger notebook with more pages, see Journal.

An empty notebook is a writable literature item.

Usage

An empty notebook can be used to write notes, using pen or pencil. Common uses are write down important reminders, or leave messages in Multiplayer servers. An empty notebook can be renamed and has up to 10 writable pages.

It does not reduce stress, boredom, or unhappiness.

Fuel

It can also be used as a fuel for a fire, and lasts for 10 minutes.

Distribution

Empty notebooks can be found in desks and bookshelves of many houses.

Code

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

Source: ProjectZomboid\media\scripts\items_literature.txt

Retrieved: Build 41.50
item Notebook
{
    Weight = 0.5,
    Type = Literature,
    DisplayName = Empty Notebook,
    Icon = Notebook,
    CanBeWrite = true,
    PageToWrite = 10,
}

See also