-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
27 lines (24 loc) · 843 Bytes
/
index.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
const RPC = require("discord-rpc");
const rpc = new RPC.Client({
transport: "ipc"
})
rpc.on("ready", () => {
rpc.setActivity({//Literal activity status
state: "E1 難易度:甲",
details: "艦これ2021年夏イベ",
startTimestamp: Date.now(),
endTimestamp: 1633117826000,
largeImageKey: "kuma",
largeImageText: "球磨改二",
smallImageKey: "poi",
smallImageText: "poi",
partyId: "ae488379-351d-4a4f-ad32-2b9b01c91657",
partySize: 1,
partyMax: 3,
joinSecret: "MTI4NzM0OjFpMmhuZToxMjMxMjM= ",// Placeholder provided by discord-rpc sample code
})
console.log("RPC active");
})
rpc.login({
clientId: "889613541357781002" // Application ID under https://discord.com/developers/applications/889613541357781002/information
})