Have your bot say something nice or add this to a command and do it yourself :) Requires setting the channel ID.
// authenticates you with the API standard library
// type `await lib.` to display API autocomplete
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
// uses https://www.affirmations.dev/ to say nice things :P
if (
(res = await lib.http.request['@1.1.7']({
method: 'GET',
url: `https://www.affirmations.dev/`,
}))
) {
happy = JSON.parse(res.body.toString());
await lib.discord.channels['@0.3.2'].messages.create({
channel_id: `000000000000000000`,
content: happy.affirmation,
});
}