This is a Discord Bot made with C# that accepts plugins as extensions for more commands and events. All basic commands are built in already in the PluginManager class library. This project is based on:
- The source code for this plugins can be found in the Plugins folder.
Plugin Types:
- Commands
- Events
- Slash Commands
- Visual Studio
- .NET 8 (downloaded with Visual Studio)
First of all, create a new project (class library) in Visual Studio. Then import the PluginManager as reference to your project.
Commands are loaded when all plugins are loaded into memory. The Execute method is called whenever any user (that respects the requireAdmin
propery) calls the command using the bot prefix and the Command
.
Commands are plugins that allow users to interact with them.
Here is an example:
using Discord;
using Discord.Commands;
using PluginManager.Interfaces;
namespace LevelingSystem;
public class LevelCommand : DBCommand
{
public string Command => "level";
public List<string> Aliases => new() { "lvl" };
public string Description => "Display your current level";
public string Usage => "level";
public bool requireAdmin => false;
public async void ExecuteServer(DBCommandExecutingArguments context)
{
//Variables.database is a sql connection that is defined in an auxiliary file in the same namespace as this class
object[] user = await Variables.database.ReadDataArrayAsync($"SELECT * FROM Levels WHERE UserID='{context.Message.Author.Id}'");
if (user is null)
{
await context.Channel.SendMessageAsync("You are now unranked !");
return;
}
int level = (int)user[1];
int exp = (int)user[2];
var builder = new EmbedBuilder();
var r = new Random();
builder.WithColor(r.Next(256), r.Next(256), r.Next(256));
builder.AddField("Current Level", level, true)
.AddField("Current EXP", exp, true)
.AddField("Required Exp", (level * 8 + 24).ToString(), true);
builder.WithTimestamp(DateTimeOffset.Now);
builder.WithAuthor(context.Message.Author.Mention);
await context.Channel.SendMessageAsync(embed: builder.Build());
}
//Optional method (tell the bot what should it do if the command is executed from a DM channel)
//public async void ExecuteDM(DBCommandExecutingArguments context) {
//
//}
}
- Command - The keyword that triggers the execution for the command. This is what players must type in order to execute your command
- Aliases - The aliases that can be used instead of the full name to execute the command
- Description - The description of your command. Can be anything you like
- Usage - The usage of your command. This is what
help [Command]
command will display - requireAdmin - true if this command requres an user with Administrator permission in the server
- ExecuteServer () - the function that is executed only when the command is invoked in a server channel. (optional)
- context - the command context
- ExecuteDM () - the function that is executed only when the command is invoked in a private (DM) channel. (optional)
- context - the command context
From here on, start coding. When your plugin is done, build it as any DLL project then add it to the following path
{bot_executable}/Data/Plugins/<optional subfolder>/[plugin name].dll
Then, reload bot and execute command plugin load
in the console. The plugin should be loaded into memory or an error is thrown if not. If an error is thrown, then
there is something wrong in your command's code.
Events are loaded when all plugins are loaded. At the moment when they are loaded, the Start function is called.
Events are used if you want the bot to do something when something happens in server. The following example shows you how to catch when a user joins the server
and send to that user a DM message with Welcome to server !
.
using PluginManager.Others;
using PluginManager.Interfaces;
public class OnUserJoin : DBEvent
{
public string name => "MyEvent";
public string description => "This is a demo event";
public async void Start(Discord.WebSocket.DiscordSocketClient client)
{
client.UserJoined += async (user) => {
await (await user.CreateDMChannelAsync()).SendMessageAsync("Welcome to server !");
};
}
}
- name - The name of your event. It will appear in console when it loads
- description - The description of your event
- Start() - The main body of your event. This is executed when the bot loads all plugins
- client - the discord bot client
Slash commands are server based commands. They work the same way as normal commands, but they require the /
prefix as they are integrated
with the UI of Discord.
Here is an example:
using Discord;
using Discord.WebSocket;
using PluginManager.Interfaces;
namespace SlashCommands
{
public class Random : DBSlashCommand
{
public string Name => "random";
public string Description => "Generates a random number between 2 values";
public bool canUseDM => true;
public List<SlashCommandOptionBuilder> Options => new List<SlashCommandOptionBuilder>()
{
new SlashCommandOptionBuilder() {Name = "min-value", Description = "Minimum value", IsRequired=true, Type = ApplicationCommandOptionType.Integer, MinValue = 0, MaxValue = int.MaxValue-1},
new SlashCommandOptionBuilder() {Name = "max-value", Description = "Maximum value", IsRequired=true, Type=ApplicationCommandOptionType.Integer,MinValue = 0, MaxValue = int.MaxValue-1}
};
public async void ExecuteServer(SocketSlashCommand command)
{
var rnd = new System.Random();
var options = command.Data.Options.ToArray();
if (options.Count() != 2)
{
await command.RespondAsync("Invalid parameters", ephemeral: true);
return;
}
Int64 numberOne = (Int64)options[0].Value;
Int64 numberTwo = (Int64)options[1].Value;
await command.RespondAsync("Your generated number is " + rnd.Next((int)numberOne, (int)numberTwo), ephemeral: true);
}
}
}
- Name - the command name (execute with /{Name})
- Description - The description of the command
- canUseDM - true id this command can be activated in DM chat, false otherwise
- Options - the arguments of the command
- ExecuteServer() - this function will be called if the command is invoked in a server channel (optional)
- context - the command context
- ExecuteDM() - this function will be called if the command is invoked in a DM channel (optional)
- context - the command context
You can create multiple commands, events and slash commands into one single plugin (class library). The PluginManager will detect the classes and load them individualy. If there are more commands (normal commands, events or slash commands) into a single project (class library) they can use the same resources (a class for example) that is contained within the plugin.
You must have dotnet 8 installed in order to compile. You might run this commands with sudo in order to install dotnet successfully.
pacman -S dotnet-sdk-8.0
apt install dotnet-sdk-8.0
dnf install dotnet-sdk-8.0
Download and install dotnet 8 from the official Microsoft website using this link.
Download and install Visual Studio 2022 and select .NET Desktop Development while installing Visual Studio 2022.
Open Visual Studio and select Clone a repo and paste the following link: https://github.com/andreitdr/SethDiscordBot
.
Open the solution in Visual Studio and build it.
Note: You might need to manually restore the NuGet packages, but VS2022 should take care of them automatically for you. If not then you will need to click on Dependencies -> Packages for each project that has a yellow sign over the Dependancies tab and click Update.
git clone https://github.com/andreitdr/SethDiscordBot
cd SethDiscordBot
dotnet build
After the build succeeds, check the /bin/Debug
folders for each project to see the built items.
Follow the on-screen prompts to make the bot run.
Updated: 01.04.2024