DiscordCoreAPI
A Discord bot library written in C++, with custom asynchronous coroutines.
Loading...
Searching...
No Matches
Creating a Guild Emoji

/// Test.hpp -header for the "test" command.
/// https://github.com/RealTimeChris/DiscordCoreAPI
#pragma once
#include <index.hpp>
namespace discord_core_api {
class test : public base_function {
public:
test() {
commandName = "test";
helpDescription = "testing purposes!";
embed_data msgEmbed { };
msgEmbed.setDescription("------\nSimply enter !test or /test!\n------");
msgEmbed.setTitle("__**test usage:**__");
msgEmbed.setTimeStamp(getTimeAndDate());
msgEmbed.setColor("fe_fe_fe");
helpEmbed = msgEmbed;
}
unique_ptr<base_function> create() {
return makeUnique<test>();
}
virtual void execute(base_function_arguments& args) {
try {
create_guild_emoji_data& dataPackage;
dataPackage.guildId = args.eventData.getGuildId();
dataPackage.name = "testemoji";
dataPackage.type = image_type::jpg;
vector<unsigned __int8> testImageData { };
dataPackage.imageData = testImageData;
auto emoji = reactions::createGuildEmojiAsync(dataPackage).get();
std::cout << "the name: " << emoji.name << std::endl;
} catch (...) {
rethrowException("test::execute()");
}
}
};
}
The main namespace for the forward-facing interfaces.
Base class for the command classes.