-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json5
More file actions
48 lines (46 loc) · 1.7 KB
/
config.json5
File metadata and controls
48 lines (46 loc) · 1.7 KB
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
// This file is JSON5 not JSON ( although JSON is valid in this file ), This is a lot less strict and makes it feel more like Javascript objects.
// This should be easier to use for the end user as I can document it with comments like this!
// This file should only be used for cosmetic changes and variables, which are not related directly to the Discord websocket or Hypixel bot
{
// Discord channel emojis. You can generate the codes needed by doing \:emoji: in discord.
emojis: {
// Hypixel Emoji in the format of <server:emote id>. Eg hypixel: '<:hypixel:1055748276080611358>'.
hypixel: '<:hypixel:1055748276080611358>',
// Discord Emoji in the format of <server:emote id>. Eg: discord: '<:discord:1055748336440844298>'.
discord: '<:discord:1055748336440844298>'
},
// Player welcome back messages, use %player% in lowercase to show the Player name.
messages: ['Welcome back %player%'],
// Hypixel Guild Requirements discord command
guild:{
id: "5d2380a177ce8492ebe7e222",
requirements: {
bedwars_wins: 5000,
}
},
discord: {
// Guild / Server ID on Discord
id: "787918269629726760",
// Channel to log messages
loggingChannel: "1055480391147982969",
// Channel to log admin messages
adminChannel: "1055480391147982980",
permissions: [
// Sample permissions
// Available permissions are command names
// You can use the permission "all" to allow for all commands
{
// Sample Moderator role
// Discord role snowflake
roleId: '900477389560234054',
// Permissions you'd like to use - Example moderator permissions
allowList: ['mute',"unmute","restart"]
},
{
// Sample Administrator role
roleId: '787929412364533770',
allowList: ["all"]
}
]
}
}