IsDiscordRichPresenceConnected

From Multi Theft Auto: Wiki
Revision as of 18:53, 10 October 2023 by Znajder (talk | contribs) (Created page with "__NOTOC__ {{Client function}} The function check the client has synchronisation with Discord Rich Presence enabled. ==Syntax== <syntaxhighlight lang="lua"> bool isDiscordRichPresenceConnected() </syntaxhighlight> {{OOP||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 Prese...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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
)

See Also

ADDED/UPDATED IN VERSION 1.6.0 r22270:
ADDED/UPDATED IN VERSION 1.6.0 r22276:
ADDED/UPDATED IN VERSION 1.6.0 r22342: