Change your discord status to streaming without streaming
- Go to https://discord.com/developers/applications and create an app
- Go to "Rich Presence" and add an asset
- Edit the function
CustomRPC
in index.js, replace ApplicationID, ImageName... node .
async function CustomRPC() {
const ApplicationID = 'ApplicationID'
let Image = 'LargeImageName'
Image = await rpcGenerator.getRpcImage(ApplicationID, Image)
return new rpcGenerator.Rpc()
.setName('Name')
.setDetails('Name') // same as Name
.setState('State')
.setParty({ size: [1, 4], id: uuid() }) // Party size: [current, max]
.setAssetsLargeText('Image Text')
.setUrl('https://twitch.tv/something')
.setType('STREAMING')
.setApplicationId(ApplicationID)
.setAssetsLargeImage(Image.id)
}