Skip to main content

Content Sections

News, patch notes, rules, team, and commands panels for server information

This section

Content Sections

5 configurable content panels that display server information to players during loading.

Sections

News

Share server announcements with images, titles, descriptions, and dates. Configured in cfg/news.lua.

lua
News = {
{
img = "./gallery/1.jpg",
title = "News 1",
description = "Your announcement text here.",
date = "01/01/2021",
},
}

Patch Notes

Display server update history with version names, descriptions, and dates. Configured in cfg/changelog.lua.

lua
Changelog = {
{
name = "Patch 1",
description = "Description of changes.",
date = "01/01/2021",
},
}

Rules

Show server rules so players can review them while loading. Configured in cfg/rules.lua.

lua
Rules = {
{
name = "No Racism",
description = "Being racist will get you banned permanently.",
},
}

Team

Introduce your server's staff with names, roles, and profile images or GIFs. Configured in cfg/staff.lua.

lua
Staff = {
{
name = "Chiepy",
img = "https://example.com/avatar.gif",
role = "Developer",
},
}

Commands

Categorized command reference grouped by job or type. Configured in cfg/command.lua.

lua
Commands = {
{
label = "Police",
value = "police",
commands = {
{ name = "/police", description = "Call the police." },
{ name = "/911", description = "Emergency call." },
},
},
}