Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Need further help join the linked discord ;)
With books, Is there a html character limit? How do I separate long html text into pages, into the book itself? Or is this automatically done?
as long as you follow the the files and set them up the same way you can add any book you want
Can I add several different books?
Example:
A tool guide;
A guide to food sources;
A guide to auto mechanics;
A medical guide;
A building guide; ...
my two entries look like this:
class Sample_Openbook: DOTZ_OpenBook_Base
class Dschungelbuch_Openbook: DOTZ_OpenBook_Base
{
title="Das Dschungelbuch";
author="DOTZ";
file="Books_And_Lore\Data\HTMLs\Openbook_htmls\Dschungelbuch.html";
displayName="Die Originalfassung des Dschungelbuchs";
descriptionShort="Ein wahrer Klassiker.. leider schon etwas mitgenommen.";
scope=2;
hiddenSelectionsTextures[]=
{
"Books_And_Lore\Data\Textures\OpenBook\OpenBook_Dschungelbuch.paa"
};
};
class Bibel_Openbook: DOTZ_OpenBook_Base
{
title="Die Bibel";
author="DOTZ";
file="Books_And_Lore\Data\HTMLs\Openbook_htmls\Bibel.html";
displayName="Die Bibel";
descriptionShort="Das wohl erfolgreichste Buch der Welt.";
scope=2;
hiddenSelectionsTextures[]=
{
"Books_And_Lore\Data\Textures\OpenBook\OpenBook_Bibel.paa"
};
};
If your copying the scroll class to make a new scroll you need to make sure to rename the copied classname.
From
class Sample_Scroll: DOTZ_Scroll_Base
To
class Renamed_Scroll: DOTZ_Scroll_Base
Renamed meaning whatever name you want your new scroll to be.