-
Notifications
You must be signed in to change notification settings - Fork 17
Description
Any way to update the Discord Presence to include custom Rich Presence, like have it say "Listening to Winamp" instead of "Playing Winamp", and show a music-based small icon instead of the default gamepad icon? Example below
So with the Rich Presence code, it would look something like this:
static void UpdatePresence()
{
DiscordRichPresence discordPresence;
memset(&discordPresence, 0, sizeof(discordPresence));
discordPresence.state = "Listening to";
discordPresence.details = "Audio Player";
discordPresence.startTimestamp = 1507665886;
discordPresence.endTimestamp = 1507665886;
discordPresence.largeImageKey = "winamp-logo_svg";
discordPresence.largeImageText = "Winamp";
discordPresence.smallImageKey = "discord_single-bar-note";
discordPresence.smallImageText = "Audio Player";
discordPresence.partyId = "ae488379-351d-4a4f-ad32-2b9b01c91657";
discordPresence.partySize = 1;
discordPresence.partyMax = 5;
discordPresence.joinSecret = "MTI4NzM0OjFpMmhuZToxMjMxMjM= ";
Discord_UpdatePresence(&discordPresence);
}