#saying playin in .... (not my servers name) fix?

1 messages · Page 1 of 1 (latest)

delicate panther
#

so when i join the server in discord it shows playing in ..... and not my server name, i tried to search for it through VS Code with no success any one had the same issue or know how to fix it?

ashen turret
#

qb-smallresources/config.lua enable rich presence

#

line 51-72

-- To Set This Up visit https://forum.cfx.re/t/how-to-updated-discord-rich-presence-custom-image/157686
Config.Discord = {
    isEnabled = false,                                     -- If set to true, then discord rich presence will be enabled
    applicationId = '00000000000000000',                   -- The discord application id
    iconLarge = 'logo_name',                               -- The name of the large icon
    iconLargeHoverText = 'This is a Large icon with text', -- The hover text of the large icon
    iconSmall = 'small_logo_name',                         -- The name of the small icon
    iconSmallHoverText = 'This is a Small icon with text', -- The hover text of the small icon
    updateRate = 60000,                                    -- How often the player count should be updated
    showPlayerCount = true,                                -- If set to true the player count will be displayed in the rich presence
    maxPlayers = 48,                                       -- Maximum amount of players
    buttons = {
        {
            text = 'First Button!',
            url = 'fivem://connect/localhost:30120'
        },
        {
            text = 'Second Button!',
            url = 'fivem://connect/localhost:30120'
        }
    }
}
delicate panther
ashen turret
delicate panther