You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The large (and small) images have to come from the limited (150 IIRC) assets (images) previously uploaded to the Guild that has the Application Id in use - which can only be done by the Guild Owner - and they get cached so changing them if you do happen to own the Guild does not update them immediately (IIRC it can take some hours for changes to replicated across the Discord network)...
I made a script that displays my ram & cpu usage (why not), but can't get the large_image and large_text to show for some reason.
I've ensured it's added to my app under Rich Presence>Art assets
This is my code for the presence:
createInter(async () => {
const CPU = await osu.cpu.usage();
const MEM = await osu.mem.info();
await client.updatePresence({
details:
CPU: ${CPU}%
,state:
RAM: ${Math.round(MEM.usedMemMb)}/${closestpw2(MEM.totalMemMb)}MB
,assets : {
large_image : "saitama",
large_text : "Do you know da wae?"
},
buttons: [{ label: 'FREE NITRO', url: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ' }, {label: 'Social Links', url: 'https://linktr.ee/beatthegamevids'}],
});
}, 5000);
but it just shows up like this: http://ss.jimmyfalcone.com/p50kfai9.png
I've been trying to get it to work, but can't seem to.
The text was updated successfully, but these errors were encountered: