Configuration

This showcases and explains the config.lua file within the Discord RPC!

Data = {
    appId = '', -- Put Your Application ID Here
    asset = '', -- Put A LINK To The Image You Want To Show
    text = 'Players: %s/150 | Queue: %s', -- %s is the player//queue count
    smallText = 'LS Shooting', -- Server Name//Game Name
    queueExport = function () --  I Used Svddens Queue For Example
        return exports['svdden_queue']:getQueueCount() -- Put Your Queue Export Here Or Delete "exports['svdden_queue']:getQueueCount()" for no queue export
    end, 
    actions = {
        { 'Discord', 'https://discord.gg/changeme' },
        { 'Shop Now', 'https://changeme.com/' }
    }
}

Last updated