summaryrefslogtreecommitdiff
path: root/src/main/resources/config.yml
diff options
context:
space:
mode:
authorTyler Murphy <tylermurphy534@gmail.com>2022-08-21 23:48:35 -0400
committerTyler Murphy <tylermurphy534@gmail.com>2022-08-21 23:48:35 -0400
commitf64c64c127ac5e8d7d04c9c512d2a2155cf7c915 (patch)
tree7cb3b96ccbc38e6dbacbd52bb96d7d422f8ac957 /src/main/resources/config.yml
downloadken-f64c64c127ac5e8d7d04c9c512d2a2155cf7c915.tar.gz
ken-f64c64c127ac5e8d7d04c9c512d2a2155cf7c915.tar.bz2
ken-f64c64c127ac5e8d7d04c9c512d2a2155cf7c915.zip
v1
Diffstat (limited to 'src/main/resources/config.yml')
-rw-r--r--src/main/resources/config.yml55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml
new file mode 100644
index 0000000..32c69ce
--- /dev/null
+++ b/src/main/resources/config.yml
@@ -0,0 +1,55 @@
+#============================================================#
+# +--------------------------------------------------------+ #
+# | Ken Discord Bot Reborn | #
+# | Configuration file | #
+# | by KenshinEto | #
+# +--------------------------------------------------------+ #
+#============================================================#
+
+# Your discord bot token you get from a discord application, which you
+# can create on discord.com/developers. Create a discord app and add a bot
+# to it. Then copy the bot token. Do not post this to the internet as anyone
+# with your token can control your bot in any server it is in.
+# Example: "N1q2O3E4NzgyNRGHjk#zFTgy.G7Qb2Z.Hr36Qj5p3P56GueIFxVQOAAEre22DXB4u56FX11c"
+botToken: ""
+
+# This is the information used to connect to a MySQL compatible database. A database is REQUIRED
+# for KenBotReborn to function.
+database:
+ host: "127.0.0.1"
+ port: "3306"
+ username: "root"
+ password: "admin"
+ databaseName: "database"
+
+# If you want the ability for KenBotReborn to play music from YouTube in a voice channel, then
+# you need access to the YoutubeAPI. Get a YouTube API key from the Google Developer Console and
+# paste it here. If there is no key or it is defined to "" then the YouTube functionality will
+# be disabled.
+# Example: "BIzaAyGCa-CG83JFaJfs2K-umYU8awWah5ggYQ-g"
+youtubeAPIKey: ""
+
+# Enable NSFW commands on the bot.
+nsfw: true
+
+# This is the name that the bot will call itself in different commands thought the bot.
+# This is just a way for the bot to identify itself to users.
+# Default: "Ken"
+botName: "Ken"
+
+# This is a discord invite code that you put if you have a support discord server for your
+# bot.
+# Example: "ChFRPDF"
+supportServer: ""
+
+# Send welcome messages when a player joins the server
+welcomeMessages: true
+
+# Send level up messages when a player levels up
+levelMessages: true
+
+# The RGB color value of the discord bot. Used for bot theming.
+colors:
+ r: 250
+ g: 0
+ b: 250 \ No newline at end of file