-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathauth.example.js
73 lines (61 loc) · 2.33 KB
/
auth.example.js
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
module.exports = {
// this is your bot's token. get the actual token from your app page.
// as discord dev page says, don't share this to anyone
// or i hax
token: 'mytokenisalive',
// this is your id, get it from "\@mentionYourselfAtDiscord"
// or turn on developer mode at discord settings then right click your name -> copy id
ownerID: '319102712383799296',
// this is the default documentation of the bot, dont replace if you wont change things
docs: 'https://docs.thegzm.space/eros-bot',
// this is the invite link for eros bot that i host 24/7.
// of course replace this if you will self-host it
inviteLink: 'http://addbot.thegzm.space',
// this is the support server for eros bot
supportLink: 'https://discord.gg/QTQCcah',
// default prefix. unified :bloblul:
defaultPrefix: '?',
// the blacklisted guilds (servers). default ID is Discord Bot List's
blacklist: [ '264445053596991498' ],
// emojis uploaded in your server:
// get it from "\:emoji:"
emojis: {
// hmmm... no comment
embarassed: '<:rassed:405542775619190786>',
// the emoji used for "Awaiting {{text}}..." prompts by the bot
loading: '<a:aloading:410783790382841857>',
// emojis for info command
'SSR+': '<:SSRA:555467947947196417>',
SSR: '<:SSR:555467948681068581>',
SR: '<:SR:555467948668747806>',
R: '<:R_:555467948211437598>',
N: '<:N_:555468472134664195>'
},
// do not touch this unless you know what you're doing
// pretty much obvious, so no explanation
url: {
api: 'http://kamihimedb.win/api/',
player: 'http://kamihimedb.win/player/',
root: 'http://kamihimedb.win/',
gallery: 'http://kamihimedb-g.win/',
fandom: 'https://kamihime-project.fandom.com/w/'
},
// Authorised for coutdown management.
countdownAuthorized: [ '319102712383799296' ],
// Database (MySQL / MariaDB) Credentials
db: {
username: 'euni',
password: 'monica',
database: 'eros',
host: 'localhost'
},
/* eslint-disable camelcase, line-comment-position */
// Get your own application at https://apps.twitter.com
twitter: {
access_token_key: 'xxxxxxxxxxxxxxxxx-xxxxxxxxxxxxxx',
access_token_secret: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxx',
consumer_key: 'xxx',
consumer_secret: 'xxxxxxxxxxxxxx',
user: '806331327108653057' // current ID: Kamihime_EN (gettwitterid.com)
}
};