setDiscordRichPresencePartySize | Multi Theft Auto: Wiki Skip to content

setDiscordRichPresencePartySize

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function sets the party size of Discord Rich Presence.

Note

For the party size to be displayed, the state must be set setDiscordRichPresenceState

Important

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

Syntax

setDiscordRichPresencePartySize ( )

Code Examples

client

This example shows how to change the party size of the Discord Rich Presence application.

local app_id = "YOUR_APPLICATION_ID"
if setDiscordApplicationID(app_id) then
setDiscordRichPresenceState("In-game")
setDiscordRichPresencePartySize(1, 32)
end