IsDiscordRichPresenceConnected
Jump to navigation
Jump to search
The function check the client has synchronisation with Discord Rich Presence enabled.
Syntax
bool isDiscordRichPresenceConnected()
OOP Syntax Help! I don't understand this!
- Method: DiscordRPC:isConnected(...)
Returns
Returns true if the Discord Rich Presence is enabled on the client, false if the client has disabled synchronisation.
Example
This example prints out if the client has enabled Discord Rich Presence.
addCommandHandler("checkdiscord", function () if isDiscordRichPresenceConnected() then outputChatBox("You are using Discord Rich Presence, that's cool!") end end )