A bot status is pretty cool, and it'd be cooler if you knew how to do it! This tutorial will cover how to set the bot status to say Playing games!
, as well as covering how to set the status to the amount of guilds every two minutes.
- Note
- dpp::get_guild_cache requires the bot to have the guild cache enabled, if your bot has this disabled then you can't use that. Instead, you should look to use dpp::cluster::current_application_get and get the
approximate_guild_count
from dpp::application in the callback.
First, we'll cover setting the bot status to Playing games!
.
#include <dpp/dpp.h>
int main() {
});
return 0;
}
The cluster class represents a group of shards and a command queue for sending and receiving commands...
Definition: cluster.h:80
Represents user presence, e.g. what game they are playing and if they are online.
Definition: presence.h:489
std::function< void(const dpp::log_t &)> DPP_EXPORT cout_logger()
Get a default logger that outputs to std::cout. e.g.
@ ps_online
Online.
Definition: presence.h:109
@ at_game
"Playing ..."
Definition: presence.h:179
@ st_wait
Wait forever on a condition variable. The cluster will spawn threads for each shard and start() will ...
Definition: cluster.h:63
Session ready.
Definition: dispatcher.h:961
If all went well, your bot should now be online and say this on members list!
If you want to make your bot show as Do Not Disturb, then you could change dpp::ps_online to dpp::ps_dnd. You can also play around with dpp::at_game, changing it to something like dpp::at_custom or dpp::at_listening!
Now, let's cover setting the bot status to say Playing with x guilds!
every two minutes.
- Note
- This example uses timers to update the status every 2 minutes. If you aren't familiar with D++'s own timers, please read this page on timers before you continue.
#include <dpp/dpp.h>
int main() {
if (dpp::run_once<struct register_bot_commands>()) {
bot.set_presence(
dpp::presence(dpp::presence_status::ps_online, dpp::activity_type::at_game,
"with " + std::to_string(event.
guild_count) +
" guilds!"));
bot.set_presence(dpp::presence(dpp::presence_status::ps_online, dpp::activity_type::at_game, "with " + std::to_string(dpp::get_guild_cache()->count()) + " guilds!"));
}, 120);
}
});
return 0;
}
size_t timer
Represents a timer handle. Returned from cluster::start_timer and used by cluster::stop_timer....
Definition: timer.h:39
uint32_t guild_count
The number of guilds the bot is in, at the time of this event.
Definition: dispatcher.h:983
If you followed that well, your bot should now say this on members list!
If we then add our bot to another server and wait a bit, we'll see it updates like so: