Config File
const Config = {
serverLogo: "",
background: {
enabled: true,
type: "image", // "image" or "video"
changeInterval: 5000, // milliseconds (5000 = 5 seconds)
fadeTransition: true, // fade effect between changes
images: [
"assets/img/gallery-img1.png",
"assets/img/gallery-img2.png",
"assets/img/gallery-img3.png",
"assets/img/gallery-img4.png"
],
videos: [
"assets/video/background.mp4"
]
},
logoAnimation: {
enabled: true,
type: "shake" // "shake", "pulse"
},
logoSize: {
width: "30vh", // logo width
height: "30vh" // logo height
},
images: {
enabled: true,
gallery: [
{
url: "assets/img/gallery-img1.png" // image url
},
{
url: "assets/img/gallery-img2.png"
},
{
url: "assets/img/gallery-img3.png"
},
{
url: "assets/img/gallery-img4.png"
}
]
},
randomMessages: {
enabled: true,
changeInterval: 5000, // milliseconds (5000 = 5 seconds)
messages: [
"Welcome to Savoy Roleplay! Enjoy your stay in our community.",
"Remember to read the server rules before playing.",
"Join our Discord server for the latest updates and events.",
"Need help? Our staff team is always ready to assist you.",
"Don't forget to check out our social media channels.",
"Roleplay seriously and respect other players for the best experience."
]
},
musicPlayer: {
enabled: true,
autoplay: true,
songs: [
{
name: "Only Problem", // name
artist: "R3 DA Chilliman, 03 Greedo", // artist
length: "3:39", // length
file: "assets/music/only-problem.mp3", // music file location (.mp3 file)
image: "https://i1.sndcdn.com/artworks-sSNoUZWQ0IVTkEq8-SikkRA-t500x500.jpg" // image
},
{
name: "Never Tell Freestyle",
artist: "Remble",
length: "2:00",
file: "assets/music/never-tell-freestyle.mp3",
image: "https://i1.sndcdn.com/artworks-nuZjIMjR2okqYfiy-Es27CQ-t500x500.jpg"
}
]
},
staffList: [
{
name: "Savoy", // staff name
position: "Owner", // staff rank
image: "assets/img/admin-team-image.png", // local image path or link
color: "#E7434F" // color hex code
},
{
name: "Diamond",
position: "Dep. Owner",
image: "assets/img/admin-team-image.png",
color: "#F6A441"
},
{
name: "Elite",
position: "Admin",
image: "assets/img/admin-team-image.png",
color: "#4ECDC4"
}
],
socialMedia: [
{
name: "Telegram",
icon: "assets/img/Telegram.png",
url: "https://t.me/yourtelegram"
},
{
name: "Discord",
icon: "assets/img/Discord.png",
url: "https://discord.gg/yourdiscord"
},
{
name: "Youtube",
icon: "assets/img/Youtube.png",
url: "https://youtube.com/@yourchannel"
},
{
name: "Tiktok",
icon: "assets/img/Tiktok.png",
url: "https://tiktok.com/@youraccount"
}
],
serverRules: {
enabled: true,
rules: [
{
title: "Title of Rule",
description: "Description of Rule"
},
{
title: "Title of Rule",
description: "Description of Rule"
},
{
title: "Title of Rule",
description: "Description of Rule"
},
{
title: "Title of Rule",
description: "Description of Rule"
},
{
title: "Title of Rule",
description: "Description of Rule"
}
]
},
changelog: {
enabled: true,
updates: [
{
version: "v2.1.0", // changelog version
date: "03.08.2025", // changelog date
type: "update", // update, fix, new
title: "New Vehicle Control", // changelog title
description: "New vehicle control system added. Automatic play and cover image support." // changelog description
},
{
version: "v2.0.5",
date: "01.08.2025",
type: "fix",
title: "Performance Improvements",
description: "Loading speed optimized and some bugs fixed."
},
{
version: "v2.0.0",
date: "28.07.2025",
type: "new",
title: "Modern UI Design",
description: "Completely redesigned modern UI and advanced animations."
},
{
version: "v1.9.2",
date: "25.07.2025",
type: "update",
title: "Staff System Updated",
description: "Dynamic color system and modern card design added."
}
]
}
};
Last updated