Streaming Purple Rich Presence + Custom Status #631
Replies: 1 comment 1 reply
-
const custom = new Discord.CustomStatus().setState('Discord').setEmoji('💬');
const rpc = new Discord.RichPresence()
.setApplicationId('817229550684471297')
.setType('STREAMING')
.setURL('https://youtube.com/watch?v=dQw4w9WgXcQ')
.setState('State')
.setName('Name')
.setDetails('Details')
.setParty({
max: 9,
current: 1,
id: Discord.getUUID(),
})
.setStartTimestamp(Date.now())
.setAssetsLargeImage('929325841350000660')
.setAssetsLargeText('Youtube')
.setAssetsSmallImage('895316294222635008')
.setAssetsSmallText('Bot')
.addButton('name', 'https://link.com/');
client.user.setPresence({
activities: [rpc, custom],
status: 'online',
}); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
p0ut
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi!
So, I am very well aware of creating a rich presence quite happily and it looks great. However, I am finding a problem that I am currently trying to solve with allowing myself to have a custom status as well as a rich presence with the type set to 'Streaming'.
I made the assumption that since custom status has priority over application status, it would just change the text below my username rather than completely removing the rich presence as well as the purple activity.
Anyway of having the purple stream symbol with a rich presence + a custom piece of text below the username?
Something like this:

Beta Was this translation helpful? Give feedback.
All reactions