SetDiscordRichPresenceSmallAsset
Jump to navigation
Jump to search
Important Note: To use this function, you must set up your own application setDiscordApplicationID |
Syntax
bool setDiscordRichPresenceSmallAsset(string assetImage, string text)
OOP Syntax Help! I don't understand this!
- Method: DiscordRPC:setSmallAsset(...)
Required arguments
- assetImage: a string containing the key of the small image asset you uploaded to your application's asset list.
- text: a string containing the hover text of the small image asset.
Returns
Returns true if function succeeds, false otherwise.
Example
The example sets the small image asset to my_logo.
addCommandHandler("setsmalllogo", function () if isDiscordRichPresenceConnected() then setDiscordRichPresenceSmallAsset("my_small_logo", "This is my small logo!") end end )