Discord.Net.Labs
2.4.5
See the version list below for details.
dotnet add package Discord.Net.Labs --version 2.4.5
NuGet\Install-Package Discord.Net.Labs -Version 2.4.5
<PackageReference Include="Discord.Net.Labs" Version="2.4.5" />
paket add Discord.Net.Labs --version 2.4.5
#r "nuget: Discord.Net.Labs, 2.4.5"
// Install Discord.Net.Labs as a Cake Addin #addin nuget:?package=Discord.Net.Labs&version=2.4.5 // Install Discord.Net.Labs as a Cake Tool #tool nuget:?package=Discord.Net.Labs&version=2.4.5
Discord.Net Labs
Join our Discord server for support using labs
This repo is a custom fork of Discord.Net that introduces the newest features of discord for testing and experimenting. Nothing here is guaranteed to work but you are more than welcome to submit bugs in the issues tabs
Known issues
Labs will not work with Playwo's InteractivityAddon. The reason is that his package depends on the base discord.net lib, you can get around this by cloning his repo and building it with discord.net labs instead of discord.net.
How to use
Setting up labs in your project is really simple, here's how to do it:
- Remove Discord.Net from your project
- Add Discord.Net Labs nuget to your project
- Enjoy!
Listening for interactions
// Subscribe to the InteractionCreated event
client.InteractionCreated += Client_InteractionCreated;
...
private async Task Client_InteractionCreated(SocketInteraction arg)
{
switch (arg.Type) // We want to check the type of this interaction
{
//Slash commands
case InteractionType.ApplicationCommand:
await MySlashCommandHandler(arg);
break;
//Button clicks/selection dropdowns
case InteractionType.MessageComponent:
await MyMessageComponentHandler(arg);
break;
//Unused
case InteractionType.Ping:
break;
//Unknown/Unsupported
default:
Console.WriteLine("Unsupported interaction type: " + arg.Type);
break;
}
}
Handling button clicks and selection dropdowns
private async Task MyMessageComponentHandler(SocketInteraction arg)
{
// Parse the arg
var parsedArg = (SocketMessageComponent) arg;
// Get the custom ID
var customId = parsedArg.Data.CustomId;
// Get the user
var user = (SocketGuildUser) arg.User;
// Get the guild
var guild = user.Guild;
// Respond with the update message response type. This edits the original message if you have set AlwaysAcknowledgeInteractions to false.
// You can also use "ephemeral" so that only the original user of the interaction sees the message
await parsedArg.RespondAsync($"Clicked {parsedArg.Data.CustomId}!", type: InteractionResponseType.UpdateMessage, ephemeral: true);
// You can also followup with a second message
await parsedArg.FollowupAsync($"Clicked {parsedArg.Data.CustomId}!", type: InteractionResponseType.ChannelMessageWithSource, ephemeral: true);
//If you are using selection dropdowns, you can get the selected label and values using these:
var selectedLabel = ((SelectMenu) parsedArg.Message.Components.First().Components.First()).Options.FirstOrDefault(x => x.Value == parsedArg.Data.Values.FirstOrDefault())?.Label;
var selectedValue = parsedArg.Data.Values.First();
}
Note: The example above assumes that the selection dropdown is expecting only 1 returned value, if you configured your dropdown for multiple values, you'll need to modify the code slightly.
Sending messages with buttons
Theres a new field in all SendMessageAsync
functions that takes in a MessageComponent
, you can use it like so:
var builder = new ComponentBuilder().WithButton("Hello!", customId: "id_1", ButtonStyle.Primary, row: 0);
await Context.Channel.SendMessageAsync("Test buttons!", component: builder.Build());
Sending messages with selection dropdowns
Theres a new field in all SendMessageAsync
functions that takes in a MessageComponent
, you can use it like so:
var builder = new ComponentBuilder()
.WithSelectMenu(new SelectMenuBuilder()
.WithCustomId("id_2")
.WithLabel("Select menu!")
.WithPlaceholder("This is a placeholder")
.WithOptions(new List<SelectMenuOptionBuilder>()
{
new SelectMenuOptionBuilder()
.WithLabel("Option A")
.WithEmote(Emote.Parse("<:evanpog:810017136814194698>"))
.WithDescription("Evan pog champ")
.WithValue("value1"),
new SelectMenuOptionBuilder()
.WithLabel("Option B")
.WithDescription("Option B is poggers")
.WithValue("value2")
}));
await Context.Channel.SendMessageAsync("Test selection!", component: builder.Build());
Note: You can only have 5 buttons per row and 5 rows per message. If a row contains a selection dropdown it cannot contain any buttons.
Slash commands
Slash command example how to's can be found here. If you want to read some code using slash commands, you can do that here
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.6.1
- Discord.Net.Labs.Commands (>= 2.3.5)
- Discord.Net.Labs.Core (>= 2.4.3)
- Discord.Net.Labs.Rest (>= 2.4.4)
- Discord.Net.Labs.Webhook (>= 2.3.4)
- Discord.Net.Labs.WebSocket (>= 2.4.5)
-
.NETStandard 2.0
- Discord.Net.Labs.Commands (>= 2.3.5)
- Discord.Net.Labs.Core (>= 2.4.3)
- Discord.Net.Labs.Rest (>= 2.4.4)
- Discord.Net.Labs.Webhook (>= 2.3.4)
- Discord.Net.Labs.WebSocket (>= 2.4.5)
-
.NETStandard 2.1
- Discord.Net.Labs.Commands (>= 2.3.5)
- Discord.Net.Labs.Core (>= 2.4.3)
- Discord.Net.Labs.Rest (>= 2.4.4)
- Discord.Net.Labs.Webhook (>= 2.3.4)
- Discord.Net.Labs.WebSocket (>= 2.4.5)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on Discord.Net.Labs:
Package | Downloads |
---|---|
Discord.KillersLibrary.Labs
This package is an Addon for Discord.Net It provides embedding pages and multi buttons for your Discord Bot. Moreover it includes support for any command framework and slash commands. |
|
Xssp.Discord.Util
Provides various utilities to simplify the use of the Discord.NET API. |
|
DNetLabRat
Button lib for Discord.Net-Labs |
|
Discord.Killer
This package is an Addon for Discord.Net. It provides enbeding pages for your Discord Bot. Moreover it includes support for any command framework. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
3.6.1 | 23,466 | 12/24/2021 | |
3.6.0 | 560 | 12/24/2021 | |
3.5.0 | 1,479 | 12/15/2021 | |
3.4.9 | 3,183 | 12/6/2021 | |
3.4.8 | 5,192 | 12/4/2021 | |
3.4.7 | 2,806 | 11/28/2021 | |
3.4.6 | 681 | 11/27/2021 | |
3.4.5 | 535 | 11/27/2021 | |
3.4.4 | 577 | 11/27/2021 | |
3.4.3 | 573 | 11/27/2021 | |
3.4.2 | 2,341 | 11/26/2021 | |
3.4.1 | 1,853 | 11/26/2021 | |
3.4.0 | 1,920 | 11/26/2021 | |
3.3.3 | 791 | 11/23/2021 | |
3.3.2 | 1,079 | 11/21/2021 | |
3.3.1 | 1,225 | 11/21/2021 | |
3.3.0 | 1,470 | 11/19/2021 | |
3.2.0 | 1,727 | 11/9/2021 | |
3.1.7 | 3,423 | 10/20/2021 | |
3.1.6 | 1,375 | 10/15/2021 | |
3.1.5 | 676 | 10/15/2021 | |
3.1.4 | 869 | 10/13/2021 | |
3.1.3 | 1,071 | 10/12/2021 | |
3.1.2 | 676 | 10/12/2021 | |
3.1.1 | 3,222 | 9/23/2021 | |
3.1.0 | 801 | 9/21/2021 | |
3.0.4 | 1,182 | 9/15/2021 | |
3.0.3 | 3,301 | 9/13/2021 | |
3.0.2 | 3,553 | 8/25/2021 | |
3.0.2-pre | 758 | 8/8/2021 | |
3.0.1 | 578 | 8/25/2021 | |
3.0.1-pre | 400 | 8/5/2021 | |
3.0.0 | 692 | 8/24/2021 | |
3.0.0-pre | 263 | 8/5/2021 | |
2.4.9 | 1,633 | 7/17/2021 | |
2.4.8 | 680 | 7/15/2021 | |
2.4.7 | 862 | 7/11/2021 | |
2.4.6 | 755 | 7/11/2021 | |
2.4.5 | 662 | 7/7/2021 | |
2.4.4 | 677 | 7/6/2021 | |
2.4.3 | 648 | 7/5/2021 | |
2.4.2 | 660 | 7/4/2021 | |
2.4.1 | 688 | 7/3/2021 | |
2.4.0 | 672 | 7/3/2021 | |
2.3.8-dev | 362 | 7/2/2021 | |
2.3.7 | 1,199 | 5/30/2021 | |
2.3.6 | 741 | 5/30/2021 | |
2.3.5 | 707 | 5/30/2021 | |
2.3.4 | 669 | 5/29/2021 | |
2.3.3 | 646 | 5/28/2021 | |
2.3.2 | 598 | 5/28/2021 | |
2.3.1 | 674 | 5/27/2021 |