Configuration

Config.js

const CONFIG = {
    theme: {
        color: "red" // Theme color (e.g. "red", "blue", "yellow" or #0be345 etc. you can use any color code)
    },

    // Music settings
    playlist: [
        {
            title: "Not Like Us",
            artist: "Kendrick Lamar",
            file: "music/song1.mp3"
        },
        {
            title: "White Rabbit",
            artist: "Jefferson Airplane",
            file: "music/song2.mp3"
        },
        {
            title: "Black Rebel",
            artist: "Marlon Möltgen",
            file: "music/song3.mp3"
        },
        {
            title: "Afterlife",
            artist: "Evanescence",
            file: "music/song4.mp3"
        }		
    ],
    defaultVolume: 50,
    autoPlay: true,
    shuffleOnStart: false,

    // Updates
    updates: {
        version: "v1.0.0",
        patchNoteFormat: "Update #{number}",  // {number} will be replaced by the patch number
        authorFormat: "by {author}", // {author} will be replaced with the author name
        list: [
            {
                date: "27 March 2025",
                title: "New Vehicles Added",
                description: "5 new luxury vehicles, 3 new motorcycles and special modification options have been added.",
                author: "KBE"
            },
            {
                date: "27 March 2025",
                title: "New Professions",
                description: "Miner, diver and farmer professions have been added. There are special tasks and rewards for each profession.",
                author: "KBE"
            },
            {
                date: "27 March 2025",
                title: "Obituary",
                description: "Burak Gencoglu is dead",
                author: "KBE"
            }
        ]
    },

    team: {
        enabled: true, // Active/passive status of team category
        members: [
            {
                role: "BB Store Developer",
                name: "KBE",
                avatar: "images/team/manager.png",
            },
            {
                role: "BB Store Developer",
                name: "Blackzone",
                avatar: "images/team/manager.png",
            },
            {
                role: "BB Store Developer",
                name: "Blessed",
                avatar: "images/team/manager.png",
            }
        ],
        logoPath: "images/logo.png"
    },

    slider: {
        interval: 3000, // Transition time (ms)
        rightSlider: {
            images: [
                "images/bg-down/bg1.png",
                "images/bg-down/bg2.png",
                "images/bg-down/bg3.png",
                "images/bg-down/bg4.png",
                "images/bg-down/bg5.png",
                "images/bg-down/bg6.png",
                "images/bg-down/bg7.png",
                "images/bg-down/bg8.png",
                "images/bg-down/bg9.png",
                "images/bg-down/bg10.png",
                "images/bg-down/bg11.png",
                "images/bg-down/bg12.png",
                "images/bg-down/bg13.png",
                "images/bg-down/bg14.png",
                "images/bg-down/bg15.png",
                "images/bg-down/bg16.png"
            ]
        },
        leftSlider: {
            images: [
                "images/bg-up/bg1.png",
                "images/bg-up/bg2.png",
                "images/bg-up/bg3.png",
                "images/bg-up/bg4.png",
                "images/bg-up/bg5.png",
                "images/bg-up/bg6.png",
                "images/bg-up/bg7.png",
                "images/bg-up/bg8.png",
                "images/bg-up/bg9.png",
                "images/bg-up/bg10.png",
                "images/bg-up/bg11.png",
                "images/bg-up/bg12.png",
                "images/bg-up/bg13.png",
                "images/bg-up/bg14.png",
                "images/bg-up/bg15.png",
                "images/bg-up/bg16.png"
            ]
        }
    },

    // Social Media Links
    socialMedia: {
        buttons: {
            website: {
                enabled: true,
                icon: "fas fa-globe",
                url: "https://bbstore.tebex.io/",
                name: "Website"
            },
            discord: {
                enabled: true,
                icon: "fab fa-discord",
                url: "https://discord.gg/bbfivem",
                name: "Discord"
            },
            instagram: {
                enabled: true,
                icon: "fab fa-instagram",
                url: "https://discord.gg/bbfivem",
                name: "Instagram"
            },
            youtube: {
                enabled: true,
                icon: "fab fa-youtube",
                url: "https://discord.gg/bbfivem",
                name: "YouTube"
            }
        }
    },

    rules: {
        enabled: true,
        url: "https://discord.gg/bbfivem",
        openInNewTab: true
    }
};

window.CONFIG = CONFIG; 

Last updated