-
Notifications
You must be signed in to change notification settings - Fork 28
/
config.js.dist
32 lines (31 loc) · 971 Bytes
/
config.js.dist
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
/**
* Discord Bot settings. These are mandatory and will affect what the bot
* posts about, and where it posts to.
*/
module.exports = {
discord: {
// The Discord token of the Bot to post through.
token: process.env.DISCORD_TOKEN,
// The ID of the discord channel to post battleboard infos to.
feedChannelId: process.env.ALBION_FEED_CHANNEL_ID,
// The ID of the discord channel to post albion status infos to.
statusChannelId: process.env.ALBION_STATUS_CHANNEL_ID
},
guild: {
// The name of your guild (or guilds, if the guild is large).
guilds: process.env.ALBION_GUILDS
? process.env.ALBION_GUILDS.split(',') : [],
// The alliance your guild belongs to
alliance: process.env.ALBION_ALLIANCE
},
battle: {
// Min players to report as battle
minPlayers: 10,
// Min guild players to report as battle
minRelevantPlayers: 3
},
kill: {
// Min killfame to report kill
minFame: 25000
}
};