A Discord bot that notifies users of reactions to their messages
- If you want to use Git in the command line, run
sudo apt install git
- If you're less terminal-inclined, you can install a Git GUI wrapper. There's a nice list here.
- I would personally recommend GitKraken. The free version has everyhting you need, (although their conflict resolver for Pro is nice,) and you can also get Pro free with GitHub Education!
- Install a C++ compiler
- the typical standard is
gcc
, you can install it withsudo apt install gcc
clang
is an alternative that I feel has better error statements, you can install it withsudo apt install clang
- the typical standard is
- Install CMake with
sudo apt install cmake
- Debian-based (Ubuntu)
sudo apt install build-essential libboost-all-dev libssl-dev libcrypto++-dev libcurl4-openssl-dev
- Fedora/RHEL-based
sudo dnf install openssl-devel boost-devel cryptopp-devel cryptopp
sup apt install git clang cmake build-essential libboost-all-dev libssl-dev libcrypto++-dev libcurl4-openssl-dev
Run git clone --recursive https://github.com/undarkaido/reactifier.git
in your desired directory.
- Go to Discord's Developer Portal 'Application' page, it will prompt you to sign in By the way, do you have 2FA enabled? It's a really good idea, especially with bots on your account
- Click 'New Application', and enter a name for your bot
- Click on 'Bot' under 'Settings' on the right, click 'Add Bot', and then 'Yes, do it!'
- Make note of the 'Copy' button under 'Token', we'll get back to this later
- Also, come back and click the 'regenerate' button if anyone ever gets a hold of your bot's token
- If you want to give your bot an avatar, I'd recommend doing it both on the 'General Information' landing page and here on the 'Bot' page, it makes things less confusing if you ever need to come back.
- Copy
https://discordapp.com/api/oauth2/authorize?client_id=[ID]&scope=bot&permissions=[permissions]
to somewhere, such as notepad - Go back to the 'General Information' page of your application
- Click 'Copy' under 'Client ID', and paste it into your URL, taking care to replace the word and brackets
- Go to the 'Bot' page
- Select the permissions you want your bot to have from under 'Bot Permissions'
- You probably want at least 'Send Messages',
2048
- You probably want at least 'Send Messages',
- Click the 'Copy' button under 'Permissions Integer', and paste it in your URL, make sure you get the brackets like before
- Paste the URL into a web btowser, select a server to add it to, and click 'Authorize'
- Create a
build
directory (folder) withmkdir build
- Enter the folder with
cd build
- Go back to your Application's 'bot' page from before, and copy the token. Run
echo Bot [token] > token.dat
, replacing the brackets and the word token - Build the makefiles with
cmake ../
- Build the bot with
make
- Run the bot with
./echo_bot
- You can change the executable name by modifying the
project
command in `CMakeLists.txt
- You can change the executable name by modifying the
- React to a message of yours in a scope your bot can read in, you should receive a DM.
If you have a suggestion or spot an issue, make a pull request on Github!