TS3Audiobot Setup
2. Update all existing packages
sudo apt-get update -y && sudo apt-get upgrade -y2. Install required software
apt install nano -y
3. Install the required Debian repos
apt-get install gpg -ywget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.asc.gpgmv microsoft.asc.gpg /etc/apt/trusted.gpg.d/wget -q https://packages.microsoft.com/config/debian/10/prod.listmv prod.list /etc/apt/sources.list.d/microsoft-prod.listchown root:root /etc/apt/trusted.gpg.d/microsoft.asc.gpgchown root:root /etc/apt/sources.list.d/microsoft-prod.list
4. Install the required dotnet
apt-get install apt-transport-https
apt-get update
apt-get install dotnet-sdk-3.15. Install libopus and ffpmeg
apt-get install libopus-dev ffmpeg -y6. Download the bot and unpack it
wget -O Bot.zip https://splamy.de/api/nightly/ts3ab/master/download
apt install unzip -y && unzip Bot.zip -d Bot && cd Bot/7. Start the bot now
dotnet TS3AudioBot.dll8. You can start the bot in the background with the help of Screen
apt install screen -y
screen -S musik -dm dotnet TS3AudioBot.dll