Skip to content

First Tablist

This page shows the current DaisyCore tablist model: per-player sessions that render header and footer content.

  • you already have a DaisyPlatform
  • you want a simple player-facing header and footer

You will create a small profile tablist with a welcome header and server footer.

val profileTablist =
tablist {
header { DaisyText.plain("Welcome back") }
footer { DaisyText.plain("docs.daisy.cat") }
}
daisy.tablists?.show(player, profileTablist)

The current public tablist API is intentionally simple:

  • header
  • footer
  • options
  • session refresh and cleanup

It does not currently promise richer tab entry formatting or advanced packet-driven customization.

Current behavior

This page intentionally teaches only header and footer because that is the honest scope of the current public tablist API.