forked from gazmull/eros-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth.example.js
More file actions
52 lines (43 loc) · 1.79 KB
/
Copy pathauth.example.js
File metadata and controls
52 lines (43 loc) · 1.79 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
49
50
51
52
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://github.com/gazmull/eros-bot',
// this 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',
// 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: {
// the emoji used for "Awaiting {{text}}..." prompts by the bot
loading: '<a:atyping:408054205757259776>',
// hmmm... no comment
embarassed: '<:rassed:405542775619190786>'
},
// do not touch this unless you know what you're doing
// pretty much obvious, so no explanation
url: {
wikia: 'https://kamihime-project.wikia.com/w/',
api: 'http://kamihimedb.thegzm.space/api/',
player: 'http://kamihimedb.thegzm.space/player/'
},
// API token for kamihime-database. Not really that token... let's say a secret.
apiToken: 'whatisthepurposeofthis',
// Get your own application at https://apps.twitter.com
twitter: {
user: '806331327108653057', // current ID: Kamihime_Nutaku (gettwitterid.com)
consumer_key: 'xxx',
consumer_secret: 'xxxxxxxxxxxxxx',
access_token: 'xxxxxxxxxxxxxxxxx-xxxxxxxxxxxxxx',
access_token_secret: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxx'
}
};