csharpi, a C# / Discord.Net Tutorial That Works on a Pi!
This repository is intended for use with my blog series C# Discord Bot on a Raspberry Pi.
Whether or not you use it to follow along with the posts, you can use it to learn how to make a C# Discord bot, and of course the Raspberry Pi part is completely optional.
There are a couple things you'll want to know when using this repo.
This repo is setup with different branches representing the progression of features and blog posts.
- The first branch for getting started is intro, then the next is command basics, and so on.
- When building/debugging this bot it will fail due to a missing config.json file when launched the first time. You'll want to put a config.json file with the following content in /bin/Debug/netcoreapp2.x/
{
"Token": "your_bot_token",
"Prefix": ";"
}
For more details, please see my post on getting started.
Have fun!