0 of 0

File information

Last updated

Original upload

Created by

LowPriorityCitizen

Uploaded by

LowPriorityCitizen

Virus scan

Safe to use

About this mod

Replace and add subentry text in Clan Primer > Bestiary and Traveler's Tips.

Requirements
Permissions and credits
Changelogs
Foedex Clan Primer Text Replacer

This mod runs a lua script that can replace the original text of any bestiary and traveler's tips subentries with a custom text in a config file of each languages, add new text beyond vanilla and unlock the 6 pages limitation and now the limit is 255.

Bestiary
  • Subentry 0, which is used as the Classification and Genus text on the bottom left part of the screen. This subentry has 2 lines which are divided by normal "enter" or \n.
  • Subentry 1+, which is used as the entry text on the right. This subentry is further divided into 2 by the {wait} text tag. Text before that tag will be taken as the header text and can only shows a single line, text after that tag will be taken as the body text and can shows multiple lines with a limit of 255.

Traveler's Tips
  • Subentry 0+, which is used as the body text and can shows multiple lines with a limit of 255.



There are 2 ways of writing string text in lua, which the user is responsible for putting the proper text so that error won't occur.

  • The first one is quotation mark (single or double, ' or "). New line (or "enter") is indicated by the tag \n
  • The second one is double square brackets [[   ]], using this will ignore normal lua string tag. The user can instead write text in multiple lines.

Read this The Insurgent's Workshop's Text Tags wiki to understand what ingame text tags is supported in hdat format.

This script should be compatible with everything, as there is no issue found yet.

Special thanks to Xeavin for allowing me to use his lua script template.