setDiscordRichPresenceButton | Multi Theft Auto: Wiki Skip to content

setDiscordRichPresenceButton

Client-side
Server-side
Shared

Added in 1.6.0 r22270

The function sets a custom button through which we can access the website on Discord.

Important

To use this function, you must set up your own application setDiscordApplicationID.

OOP Syntax Help! I don't understand this!

Syntax

bool setDiscordRichPresenceButton ( int index, string text, string url )
Required Arguments
  • index: A int representing the index of the button (possible values: 1 or 2)
  • text: A string containing the title of the button. Max 32 characters.
  • url: A string containing the button URL (only works with https:// or mtasa://)

Returns

  • bool: result

Returns true if function succeeds, false otherwise.

Code Examples

client

This example creates two custom buttons in our Discord Rich Presence application.

local app_id = "YOUR_APPLICATION_ID"
if setDiscordApplicationID(app_id) then
setDiscordRichPresenceButton(1, "Connect to server", "mtasa://youraddressip")
setDiscordRichPresenceButton(2, "MTA Homepage", "https://mtasa.com")
end