Content Data
5 separate Lua config files in the cfg/ folder that define the content displayed in each loading screen section.
News — cfg/news.lua
lua
News = {
{
img = "./gallery/1.jpg",
title = "News 1",
description = "Your announcement text here.",
date = "01/01/2021",
},
}
| Field | Type | Description |
|---|---|---|
img | string | Image path or URL |
title | string | News headline |
description | string | News body text |
date | string | Publication date |
Patch Notes — cfg/changelog.lua
lua
Changelog = {
{
name = "Patch 1",
description = "Description of changes.",
date = "01/01/2021",
},
}
| Field | Type | Description |
|---|---|---|
name | string | Patch version or name |
description | string | Change description |
date | string | Release date |
Rules — cfg/rules.lua
lua
Rules = {
{
name = "No Racism",
description = "Being racist will get you banned permanently.",
},
}
| Field | Type | Description |
|---|---|---|
name | string | Rule title |
description | string | Rule explanation |
Staff — cfg/staff.lua
lua
Staff = {
{
name = "Chiepy",
img = "https://example.com/avatar.gif",
role = "Developer",
},
}
| Field | Type | Description |
|---|---|---|
name | string | Staff member name |
img | string | Avatar image URL (supports GIFs) |
role | string | Staff role or title |
Commands — cfg/command.lua
lua
Commands = {
{
label = "Police",
value = "police",
commands = {
{ name = "/police", description = "Call the police." },
{ name = "/911", description = "Emergency call." },
},
},
}
| Field | Type | Description |
|---|---|---|
label | string | Category display name |
value | string | Category identifier |
commands | table | List of commands with name and description |
