SetDiscordApplicationID: Difference between revisions
Jump to navigation
Jump to search
(Created page with "__NOTOC__ {{Client function}} {{Important Note|To reset, please use resetDiscordRichPresenceData}} The function can assign your own application to use in Rich Presence. You can create own '''[https://discord.com/developers/applications here]''' ==Syntax== <syntaxhighlight lang="lua"> bool setDiscordApplicationID(string applicationKey) </syntaxhighlight> {{OOP||DiscordRPC:setApplication}} ===Required arguments=== *'''applicationKey''': a string represent key...") |
No edit summary |
||
(5 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Client function}} | {{Client function}} | ||
{{Important Note|To reset, please use [[resetDiscordRichPresenceData]]}} | {{Important Note|To reset the application ID, please use [[resetDiscordRichPresenceData]]}} | ||
{{Important Note|In order for the function to work correctly, the user must have their activity privacy/status enabled in Discord.}} | |||
{{New feature/item|3.0161|1.6.0|22270| | |||
The function can assign your own application to use in Rich Presence. | The function can assign your own application to use in Rich Presence. | ||
You can create | You can create an application '''[https://discord.com/developers/applications here]''' | ||
}} | |||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
bool setDiscordApplicationID(string | bool setDiscordApplicationID(string applicationID) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{OOP||[[DiscordRPC]]:setApplication}} | {{OOP||[[DiscordRPC]]:setApplication}} | ||
===Required arguments=== | ===Required arguments=== | ||
*''' | *'''applicationID''': a string representing your Discord application's ID. | ||
===Returns=== | ===Returns=== | ||
Returns ''true'' if | Returns ''true'' if function succeeds, ''false'' if the client has disabled rich presence. | ||
==Example== | ==Example== | ||
This example | This example outputs whether the application was successfully setup and sets a custom asset image. | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
local | local app_id = "YOUR_APPLICATION_ID" | ||
if setDiscordApplicationID( | if setDiscordApplicationID(app_id) then | ||
setDiscordRichPresenceAsset("asset_name_from_application") | setDiscordRichPresenceAsset("asset_name_from_application") | ||
outputChatBox("Yay, we using | outputChatBox("Yay, we're now using our own application!") | ||
end | end | ||
</syntaxhighlight> | </syntaxhighlight> |
Latest revision as of 18:39, 24 October 2023
Important Note: To reset the application ID, please use resetDiscordRichPresenceData |
Important Note: In order for the function to work correctly, the user must have their activity privacy/status enabled in Discord. |
Syntax
bool setDiscordApplicationID(string applicationID)
OOP Syntax Help! I don't understand this!
- Method: DiscordRPC:setApplication(...)
Required arguments
- applicationID: a string representing your Discord application's ID.
Returns
Returns true if function succeeds, false if the client has disabled rich presence.
Example
This example outputs whether the application was successfully setup and sets a custom asset image.
local app_id = "YOUR_APPLICATION_ID" if setDiscordApplicationID(app_id) then setDiscordRichPresenceAsset("asset_name_from_application") outputChatBox("Yay, we're now using our own application!") end