sleepy-discord icon indicating copy to clipboard operation
sleepy-discord copied to clipboard

C++ library for the Discord chat client. Please use Rust for new bots

Results 93 sleepy-discord issues
Sort by recently updated
recently updated
newest added

Would it be possible to write a Conan recipe for sleepy-discord? That might make setup easier?

I've tried most previous issues regarding this error, but no luck so far whatsoever. # Platform * Windows 11

Small fix fully compatible with current bots but allowing to switch activity types in the simplest way Reason: In some languages different activity types takes less space so it's possible...

the code ```cpp #include "sleepy_discord/sleepy_discord.h" class MyClientClass : public SleepyDiscord::DiscordClient { public: using SleepyDiscord::DiscordClient::DiscordClient; void onMessage(SleepyDiscord::Message message) override { if (message.startsWith("whcg hello")) sendMessage(message.channelID, "Hello " + message.author.username); } }; int...

Hello, thanks for the hard work that has been put into this project. If for some reason the connection is lost, and not recovered within 10 reconnection attempts, the connection...

First and foremost - this library looks like just what I've been searching for. Thank you very much for all the effort made thus far. However, I'm unable to get...

error compiling when trying to use AppCommands with c++17 on develop branch code ``` TestClient client("TOKEN",1); std::vector intents; intents.push_back(SleepyDiscord::Intent::SERVER_MESSAGES); intents.push_back(SleepyDiscord::Intent::SERVER_INTEGRATIONS); client.setIntents(intents); SleepyDiscord::Snowflake app("APP ID"); SleepyDiscord::Snowflake server("server ID"); auto response =...

Hi, i am new to CMake, but I can compiled that. I create self app, and include "C:\path_to_sleepy_discord\include" and "C:\path_to_sleepy_discord\include\IncludeNonexistent". Also linking a static lib - "C:\path_to_sleepy_discord\Release" - sleepy-discord.lib But...

### Error ObjectResponse (and many more probably) gives a linking error **if the c++ standard is not higher than 17** It will be more convenient if it gives a **proper...