blob: 32c69ce0af5c4e34433e8edb97f7525459c722c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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
|