diff options
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/config.yml | 55 |
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 |