Server Config file

--              _  _     _  _     _  _     _  _     _  _     _  _     _  _     _  _   
--            _| || |_ _| || |_ _| || |_ _| || |_ _| || |_ _| || |_ _| || |_ _| || |_ 
--            _  ..  _|_  ..  _|_  ..  _|_  ..  _|_  ..  _|_  ..  _|_  ..  _|_  ..  _|
--           |_      _|_      _|_      _|_      _|_      _|_      _|_      _|_      _|
--             |_||_|   |_||_|   |_||_|   |_||_|   |_||_|   |_||_|   |_||_|   |_||_|  
--
--
--             __     __                              _   _          _         
--             \ \   / /_ _ _ __   __ _  __ _ _ __ __| | | |    __ _| |__  ___ 
--              \ \ / / _` | '_ \ / _` |/ _` | '__/ _` | | |   / _` | '_ \/ __|
--               \ V / (_| | | | | (_| | (_| | | | (_| | | |__| (_| | |_) \__ \
--                \_/ \__,_|_| |_|\__, |\__,_|_|  \__,_| |_____\__,_|_.__/|___/
--                                |___/                                        
-- 
--                          VANGUARD LABS | Halloween System [ESX/QBCORE/QBOX]
--
--               Thank you for purchasing our script; we greatly appreciate your preference.
--        If you have any questions or any modifications in mind, please contact us via Discord.
--
--                           Support and More: https://discord.gg/G5r3Qq2j4v
--
--              _  _     _  _     _  _     _  _     _  _     _  _     _  _     _  _   
--            _| || |_ _| || |_ _| || |_ _| || |_ _| || |_ _| || |_ _| || |_ _| || |_ 
--            _  ..  _|_  ..  _|_  ..  _|_  ..  _|_  ..  _|_  ..  _|_  ..  _|_  ..  _|
--           |_      _|_      _|_      _|_      _|_      _|_      _|_      _|_      _|
--             |_||_|   |_||_|   |_||_|   |_||_|   |_||_|   |_||_|   |_||_|   |_||_|  

ServerConfig = {}

-- ============================================================================
--                         LEADERBOARD SETTINGS
-- ============================================================================
ServerConfig.Leaderboard = {
    Enabled = true,
    TopPlayers = 10,
    UpdateInterval = 300000
}

-- ============================================================================
--                         REWARD SETTINGS
-- ============================================================================
ServerConfig.Treats = {
    { item = 'candy', chance = 90, min = 1, max = 2 },
    -- { item = 'cokebaggy', chance = 15, min = 1, max = 3 },
    -- { item = 'coke_brick', chance = 15, min = 1, max = 5 },
    -- { item = 'sandwich', chance = 75, min = 1, max = 4 },
    -- { item = 'beer', chance = 75, min = 1, max = 6 },
}

-- ============================================================================
--                         DISCORD WEBHOOK SETTINGS
-- ============================================================================
ServerConfig.Discord = {
    Enabled = false,
    
    Webhooks = {
        TrickOrTreat = '',
        PumpkinCollection = '',
        Leaderboard = ''
    },
    
    BotName = 'Halloween Bot',
    BotAvatar = 'https://i.imgur.com/your-avatar.png',
    
    Colors = {
        TrickOrTreat = 16744272,
        PumpkinCollection = 16753920,
        Leaderboard = 3066993,
        Error = 15158332
    },
    
    Footer = {
        Text = 'Halloween Event System',
        IconURL = 'https://i.imgur.com/your-footer-icon.png'
    },
    
    LogTypes = {
        TrickOrTreat = true,
        PumpkinCollection = true,
        LeaderboardUpdate = false,
        NewTopPlayer = true
    }
}

Last updated