-
Notifications
You must be signed in to change notification settings - Fork 99
/
config.js
56 lines (43 loc) · 1.96 KB
/
config.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
// to understand how to use app id and image keys, follow https://github.com/slowwdev/Discord-Selfbot-RPC/wiki/Installation
module.exports = {
// spotify/game/twitch
"mode": "",
// dnd/online/idle
"status": "",
"game": {
"applicationID": "",
"name": "", // title
"details": "", // first row below title
"state": "", // row below first row
"largeImageKey": "", // Large Image
"largeImageText": "", // the text when img surrounded (default is largeimage name in dev portal)
"smallImageKey": "", // Small Image
"smallImageText": "",
// Date.now() Epoch timestamps
"startTimestamp": "", // time elapsed since this timestamp (increase ++)
"endTimestamp": "" // time left since this timestamp (decrease --)
},
"twitch": {
"applicationID": "",
"url": "", // twitch channel link
"details": "", // title
"state": "", // first row below title (playing ...)
"largeImageKey": "", // in dev portal, upload img then name it with the name you want to appear with image is surrounded
"largeImageText": "", // use this to replace text when img surrounded it will also be second row below title, if you dont want the row dont use it and setup text via dev portal (img name)
"smallImageKey": "",
"smallImageText": "",
"startTimestamp": "",
"endTimestamp": ""
},
"spotify": {
"name": "", // for exemple listening to {name} instead of listening to spotify
"details": "", // title
"state": "", // row below title
"largeImageKey": "", // https://github.com/mewzax/Discord-RPC-Selfbot/wiki/Spotify-API
"largeImageText": "", // will also be second row below title
"smallImageKey": "",
"smallImageText": "",
"startTimestamp": "",
"endTimestamp": "",
}
}