This example demonstrates receiving select menu clicks and sending response messages.
#include <dpp/dpp.h>
int main()
{
dpp::message m(event.msg->channel_id, "this text has a select menu");
m.add_component(
dpp::component().add_component(
dpp::component().set_type(dpp::cot_selectmenu).
set_placeholder("Pick something").
add_select_option(dpp::select_option("label1","value1","description1").set_emoji(u8"😄")).
add_select_option(dpp::select_option("label2","value2","description2").set_emoji(u8"🙂")).
set_id("myselid")
)
);
bot.message_create(m);
}
});
});
std::cout << event.message << "\n";
}
});
bot.start(false);
return 0;
}
The cluster class represents a group of shards and a command queue for sending and receiving commands...
Definition: cluster.h:236
@ ll_trace
Trace.
Definition: discord.h:64
@ ir_channel_message_with_source
respond to an interaction with a message
Definition: slashcommand.h:219
basic_json<> json
default JSON class
Definition: json_fwd.hpp:62
Log messages.
Definition: dispatcher.h:104
loglevel severity
Definition: dispatcher.h:112
Create message.
Definition: dispatcher.h:1013
message * msg
message that was created (sent). If you use any parts of this in another thread, take a copy!...
Definition: dispatcher.h:1023
std::string content
Definition: message.h:971
Click on select.
Definition: dispatcher.h:325
std::vector< std::string > values
select menu values
Definition: dispatcher.h:348
std::string custom_id
select menu custom id
Definition: dispatcher.h:344