Skip to main content

Background Themes

3 background theme modes with customizable images and video

This section

Background Themes

3 selectable background themes — Gallery, Slider, and Video. Each theme is configured through cfg/config.lua.

Themes

An interactive image gallery that players can browse with their mouse. Supports up to 11 images with smooth animations.

lua
Config.theme = 'gallery'

Config.galleryList = {
"./gallery/1.jpg",
"./gallery/2.jpg",
"./gallery/3.jpg",
-- up to 11 images
}

Slider

An automatic slideshow that cycles through images at a configurable speed.

lua
Config.theme = 'slider'

Config.sliderList = {
"./slider/1.jpg",
"./slider/2.jpg",
"./slider/3.jpg",
}

Config.sliderSpeed = 5 -- seconds between transitions

Video

A full-screen background video, ideal for server trailers or promotional content.

lua
Config.theme = 'video'

Config.backgroundVideo = "./video.mp4"

Configuration

OptionDefaultDescription
Config.theme'gallery'Background theme (gallery, slider, video)
Config.sliderSpeed5Seconds between slider transitions
Config.galleryList11 imagesImage paths for gallery theme (max 11)
Config.sliderList7 imagesImage paths for slider theme
Config.backgroundVideo"./video.mp4"Video file path for video theme