Setting Up NadekoBot on Windows from source¶
Prerequisites¶
- Windows 10 or later (64-bit)
- .net 8 sdk
- If you want nadeko to play music: [Visual C++ 2010 (x86)] and [Visual C++ 2017 (x64)] (both are required, you may install them later)
- git - needed to clone the repository (you can also download the zip manually and extract it, but this guide assumes you're using git)
- Optional Any code editor, for example Visual Studio Code
- You'll need to at least modify creds.yml, notepad is inadequate
Creating a Discord Bot & Getting Credentials
Creating your own Discord bot¶
This guide will show you how to create your own discord bot, invite it to your server, and obtain the credentials needed to run it.
- Go to the Discord developer application page.
- Log in with your Discord account.
- Click New Application.
- Fill out the
Name
field however you like, accept the terms, and confirm. - Go to the Bot tab on the left sidebar.
- Click on the
Add a Bot
button and confirm that you do want to add a bot to this app. - Optional: Add bot's avatar and description.
- Copy your Token to
creds.yml
as shown above. - Scroll down to the
Privileged Gateway Intents
section- You MUST enable the following:
- PRESENCE INTENT
- SERVER MEMBERS INTENT
- MESSAGE CONTENT INTENT
- You MUST enable the following:
Inviting your bot to your server¶
- On the General Information tab, copy your
Application ID
from your applications page. - Replace the
YOUR_CLIENT_ID_HERE
in this link:https://discordapp.com/oauth2/authorize?client_id=YOUR_CLIENT_ID_HERE&scope=bot&permissions=66186303
with yourClient ID
- The link should now look something like this:
https://discordapp.com/oauth2/authorize?client_id=123123123123&scope=bot&permissions=66186303
- Access that newly created link, pick your Discord server, click
Authorize
and confirm with the captcha at the end - The bot should now be in your server
Installation Instructions¶
Open PowerShell (press windows button on your keyboard and type powershell, it should show up; alternatively, right click the start menu and select Windows PowerShell), and
- Navigate to the location where you want to install the bot
- for example, type
cd ~/Desktop/
and press enter
- for example, type
git clone https://github.com/nadeko-bot/nadekobot -b v6 --depth 1
cd nadekobot/src/NadekoBot
dotnet build -c Release
cp data/creds_example.yml data/creds.yml
- "You're done installing, you may now proceed to set up your bot's credentials by following the [#creds-guide]
- Once done, come back here and run the last command
- Run the bot
dotnet NadekoBot.dll
- 🎉 Enjoy
Update Instructions¶
Open PowerShell as described above and run the following commands:
- Stop the bot
- ⚠️ Make sure you don't have your database, credentials or any other nadekobot folder open in some application, this might prevent some of the steps from executing successfully
- Navigate to your bot's folder, example:
cd ~/Desktop/nadekobot
- Pull the new version, and make sure you're on the v6 branch
git pull
- ⚠️ IF this fails, you may want to
git stash
or remove your code changes if you don't know how to resolve merge conflicts
- Backup old output in case your data is overwritten
cp -r -fo output/ output-old
- Build the bot again
dotnet run -c Release src/NadekoBot/
- Copy old data, and new strings
cp -r -fo .\output-old\data\ .\output\
- Run the bot
cd output
dotnet NadekoBot.dll
- 🎉 Enjoy
Music Prerequisites¶
In order to use music commands, you need ffmpeg and yt-dlp installed.