A Discord music bot, written in Kotlin using the kord library.
Find a file
limited_dev 8737d3921b chore: update version in build.gradle.kts
Signed-off-by: limited_dev <loginakkisativ@gmail.com>
2023-05-15 22:32:10 +02:00
gradle/wrapper chore: update copyright 2023-05-11 07:43:35 +02:00
src/main fix: Bot now leaves the channel, when the last song in the queue is finished playing 2023-05-15 22:29:33 +02:00
.gitignore feat: project was set up, started on base, add logging into Discord Bot 2023-03-26 00:41:02 +01:00
.gitlab-ci.yml feat: added basic music controls, added music, added gitlab-ci.yml updated README.md 2023-03-28 23:34:10 +02:00
build.gradle.kts chore: update version in build.gradle.kts 2023-05-15 22:32:10 +02:00
Dockerfile feat: added button controls for controlling music, added presence, added color codes to bot output, added some comments into the code 2023-04-26 17:48:53 +02:00
gradle.properties chore: update copyright 2023-05-11 07:43:35 +02:00
gradlew chore: update copyright 2023-05-11 07:43:35 +02:00
gradlew.bat feat: project was set up, started on base, add logging into Discord Bot 2023-03-26 00:41:02 +01:00
LICENSE Add LICENSE 2023-03-25 23:45:02 +00:00
README.md remove: removed potatoExtension 2023-05-11 17:48:29 +02:00
settings.gradle.kts feat: project was set up, started on base, add logging into Discord Bot 2023-03-26 00:41:02 +01:00

Botendo version 6

"6th times the charm" ~ me

A Discord music bot, written in Kotlin using the kord library.

Latest Release pipeline status coverage report

Contributors

moonleay: Head Developer

Special Thanks to

  • HopeBaron for helping me a lot

Known issues

Commands & Features

  • Commands
    • info -- Show basic infos about the bot
    • play -- Play a song
    • stop -- Stop playing a song and leave the vc
    • skip -- Skip to the next song
    • queue -- Show what songs are next up
    • nowplaying -- Show what is currently playing
  • Features
    • Button Controller -- You can control the currently playing music using buttons.

How to self-host (using the Docker container)

  1. Pull the container
  2. Map /data/ to a folder on disk
  3. Run the Bot once
  4. Follow step 4 - 7 of "How to self-host (using the JAR)"

How to self-host (using the JAR)

  1. Download the latest release from the Package Registry ("Packages and registries" > "Package Registry")
    1. It should be called something like this: "Botendo-X.X.X-xxxxxxxx-prod.jar" (replace "X.X.X" with the latest version and xxxxxxxx" with the commit its based on.)
    2. If you want to run an early version, which may be (very) unsable, you can run a development version. Just use an entry ending in "-dev.jar"
  2. Place it anywhere you want.
  3. Run the following command:

    java -jar Botendo-X.X.X-xxxxxxxx-prod.jar

  4. The bot should start and create a config file named "credentials.nils" in a folder called "data"
  5. Open it and put in your credentials.
    1. token: your Discord bot token
    2. lavaip: the IP of your LavaLink instance e.g.: ("ws://192.168.178.1:2333")
    3. lavapw: your password for the LavaLink instance
  6. Rerun the command

    java -jar Botendo-X.X.X-xxxxxxxx-prod.jar

  7. The bot should now be up and running.

How to set up workspace

Install IntellJ and import the project from git. Done.

Docker commands 4 me

  • docker run -it -m 2g -v/home/limited_dev/Documents/Code/Botendo/run/data/:/data/:rw limiteddev/botendo:x.x.x
  • docker build -t limiteddev/botendo:x.x.x .
  • docker push limiteddev/botendo:x.x.x