Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Text Windows

Scrollable text display for game output.

Basic Usage

[[windows]]
name = "main"
widget_type = "text"
streams = ["main"]
row = 0
col = 0
rows = 30
cols = 80
buffer_size = 10000

Properties

PropertyTypeDefaultDescription
streamsarray[]Stream IDs to display
buffer_sizeinteger1000Lines to keep in memory
compactboolfalseRemove blank lines
show_timestampsboolfalsePrefix lines with time
timestamp_positionstring"end""start" or "end"

Common Streams

StreamContent
mainPrimary game output
speechPlayer dialogue
thoughtsESP/telepathy
combatCombat messages
deathDeath messages
familiarFamiliar messages
groupGroup information
logonsLogin/logout
societySociety messages
bountyBounty information

Examples

Main Window

[[windows]]
name = "main"
widget_type = "text"
streams = ["main"]
buffer_size = 10000

Speech Window

[[windows]]
name = "speech"
widget_type = "text"
streams = ["speech"]
buffer_size = 2000
show_timestamps = true
timestamp_position = "start"

Combat Log (Compact)

[[windows]]
name = "combat"
widget_type = "text"
streams = ["combat"]
buffer_size = 500
compact = true

Scrolling

  • Page Up / Page Down - Scroll when focused
  • Mouse wheel - Scroll under cursor
  • Home / End - Jump to top/bottom
  • Auto-scrolls when new text arrives (unless scrolled back)