Update Document and Ready
This commit is contained in:
parent
35ae8f3e4b
commit
557236221c
69
DOCUMENT.md
69
DOCUMENT.md
@ -1,5 +1,18 @@
|
|||||||
# Discord.js Selfbot v13
|
# Discord.js Selfbot v13
|
||||||
- Install: <strong>npm i discord.js-selfbot-v13@lasest</strong>
|
- Install: <strong>npm i discord.js-selfbot-v13@lasest</strong>
|
||||||
|
|
||||||
|
## Client Settings
|
||||||
|
<details>
|
||||||
|
<summary><strong>Click to show</strong></summary>
|
||||||
|
|
||||||
|
```js
|
||||||
|
new Client({
|
||||||
|
checkUpdate: true, // Check Package Update (Ready) [Enable Deafult]
|
||||||
|
readyStatus: false, // Set status sync from Account (Ready) [Disable Default]
|
||||||
|
})
|
||||||
|
```
|
||||||
|
</details>
|
||||||
|
|
||||||
## User Settings
|
## User Settings
|
||||||
<details>
|
<details>
|
||||||
<summary><strong>Click to show</strong></summary>
|
<summary><strong>Click to show</strong></summary>
|
||||||
@ -162,10 +175,57 @@ const custom = new RichPresence.CustomStatus()
|
|||||||
client.user.setActivity(custom);
|
client.user.setActivity(custom);
|
||||||
```
|
```
|
||||||
|
|
||||||
Rich Presence
|
Rich Presence [Custom]
|
||||||
```js
|
```js
|
||||||
Come back soon !
|
const RPC = require('discord-rpc-contructor');
|
||||||
|
const r = new RPC.Rpc()
|
||||||
|
.setApplicationId('817229550684471297')
|
||||||
|
.setType(0)
|
||||||
|
.setState('State')
|
||||||
|
.setName('Name')
|
||||||
|
.setDetails('Details')
|
||||||
|
.setParty({
|
||||||
|
size: [1, 2],
|
||||||
|
id: RPC.uuid(),
|
||||||
|
})
|
||||||
|
.setStartTimestamp(Date.now())
|
||||||
|
.setAssetsLargeImage('929325841350000660')
|
||||||
|
.setAssetsLargeText('Youtube')
|
||||||
|
.setAssetsSmallImage('895316294222635008')
|
||||||
|
.setAssetsSmallText('Bot')
|
||||||
|
client.user.setActivity(r.toDiscord().game);
|
||||||
|
// Button not working
|
||||||
```
|
```
|
||||||
|
<img src='https://cdn.discordapp.com/attachments/820557032016969751/955767445220646922/unknown.png'>
|
||||||
|
|
||||||
|
Rich Presence with Twitch / Spotify
|
||||||
|
|
||||||
|
```js
|
||||||
|
Update soon ~
|
||||||
|
```
|
||||||
|
|
||||||
|
<strong>How to get AssetID ?</strong>
|
||||||
|
|
||||||
|
Code
|
||||||
|
|
||||||
|
```js
|
||||||
|
// Bot ID
|
||||||
|
RPC.getRpcImages('817229550684471297').then(console.log);
|
||||||
|
```
|
||||||
|
Return
|
||||||
|
```js
|
||||||
|
// ID is AssetID
|
||||||
|
[
|
||||||
|
{ id: '838629816881381376', type: 1, name: 'honkai' },
|
||||||
|
{ id: '853533658250084352', type: 1, name: 'vscode' },
|
||||||
|
{ id: '895316294222635008', type: 1, name: 'botsagiri' },
|
||||||
|
{ id: '929324633063292929', type: 1, name: 'soundcloud' },
|
||||||
|
{ id: '929324634858479666', type: 1, name: 'spotify' },
|
||||||
|
{ id: '929325841350000660', type: 1, name: 'youtube' }
|
||||||
|
]
|
||||||
|
```
|
||||||
|
You can cache to use these files, do not run this function too much because it will be rate limit
|
||||||
|
And you can change the status 5 times every 20 seconds!
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
## More features
|
## More features
|
||||||
@ -174,3 +234,8 @@ Come back soon !
|
|||||||
<summary><strong>Click to show</strong></summary>
|
<summary><strong>Click to show</strong></summary>
|
||||||
- I need requests from you! Ask questions, I will help you!
|
- I need requests from you! Ask questions, I will help you!
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
## Warning
|
||||||
|
- This is a beta version, so there are some bugs.
|
||||||
|
- If you use the `Client.destroy()` function, for an account that uses 2FA, it will cause a logout and the Token will no longer be usable.
|
||||||
|
- With bot account you can login using `Client.login('Bot Token', true)`, but there will be some missing constructor like MessageEmbed, MessageActionRow, MessageButton, ...
|
@ -47,6 +47,7 @@ client.login('token');
|
|||||||
- Discord Apps Setting [Theme, Language, ...]
|
- Discord Apps Setting [Theme, Language, ...]
|
||||||
- Get Profile GuildMember [Nitro Time, Boost Time, Connected Account, Bio, ...]
|
- Get Profile GuildMember [Nitro Time, Boost Time, Connected Account, Bio, ...]
|
||||||
- Setting Position Guild and Folder
|
- Setting Position Guild and Folder
|
||||||
|
- Custom Status and RPC (without button, because it's not working)
|
||||||
- You can request more features for my module by placing an issue!
|
- You can request more features for my module by placing an issue!
|
||||||
|
|
||||||
## Links [Discord.js]
|
## Links [Discord.js]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "discord.js-selfbot-v13",
|
"name": "discord.js-selfbot-v13",
|
||||||
"version": "0.2.1",
|
"version": "0.2.2",
|
||||||
"description": "A unofficial discord.js fork for creating selfbots [Based on discord.js v13]",
|
"description": "A unofficial discord.js fork for creating selfbots [Based on discord.js v13]",
|
||||||
"main": "./src/index.js",
|
"main": "./src/index.js",
|
||||||
"types": "./typings/index.d.ts",
|
"types": "./typings/index.d.ts",
|
||||||
@ -47,7 +47,7 @@
|
|||||||
"axios": "^0.26.1",
|
"axios": "^0.26.1",
|
||||||
"chalk": "^4.1.2",
|
"chalk": "^4.1.2",
|
||||||
"discord-api-types": "^0.27.3",
|
"discord-api-types": "^0.27.3",
|
||||||
"discord-rpc-contructor": "^1.0.2",
|
"discord-rpc-contructor": "^1.0.4",
|
||||||
"discord.js": "^13.6.0",
|
"discord.js": "^13.6.0",
|
||||||
"form-data": "^4.0.0",
|
"form-data": "^4.0.0",
|
||||||
"json-bigint": "^1.0.0",
|
"json-bigint": "^1.0.0",
|
||||||
|
1
src/RPC/index.d.ts
vendored
1
src/RPC/index.d.ts
vendored
@ -141,6 +141,7 @@ interface rpcManager {
|
|||||||
CustomStatus: {
|
CustomStatus: {
|
||||||
new (CustomStatusGame?: CustomStatusGame): CustomStatus;
|
new (CustomStatusGame?: CustomStatusGame): CustomStatus;
|
||||||
};
|
};
|
||||||
|
uuid(): string;
|
||||||
}
|
}
|
||||||
interface emojiLike {
|
interface emojiLike {
|
||||||
id: string;
|
id: string;
|
||||||
|
799
src/RPC/index.js
799
src/RPC/index.js
@ -59,9 +59,16 @@ module.exports = (function (e) {
|
|||||||
const r = s(1),
|
const r = s(1),
|
||||||
i = s(9),
|
i = s(9),
|
||||||
n = s(10);
|
n = s(10);
|
||||||
var o = ["PLAYING", "STREAMING", "LISTENING", "WATCHING"],
|
var o = [
|
||||||
a = [0, 1, 2, 3],
|
'PLAYING',
|
||||||
l = [].concat(a).concat(o);
|
'STREAMING',
|
||||||
|
'LISTENING',
|
||||||
|
'WATCHING',
|
||||||
|
'CUSTOM',
|
||||||
|
'COMPETING',
|
||||||
|
],
|
||||||
|
a = [0, 1, 2, 3, 4, 5],
|
||||||
|
l = [].concat(a).concat(o);
|
||||||
async function u(e) {
|
async function u(e) {
|
||||||
if (!e || "string" != typeof e)
|
if (!e || "string" != typeof e)
|
||||||
throw new c(
|
throw new c(
|
||||||
@ -94,388 +101,404 @@ module.exports = (function (e) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
class h {
|
class h {
|
||||||
constructor(e, t = !1) {
|
constructor(e, t = !1) {
|
||||||
(this.game = null), (this.game = e || null), t && this.lock();
|
(this.game = null), (this.game = e || null), t && this.lock();
|
||||||
}
|
}
|
||||||
lock() {
|
lock() {
|
||||||
Object.freeze(this.game);
|
Object.freeze(this.game);
|
||||||
}
|
}
|
||||||
toDiscord() {
|
toDiscord() {
|
||||||
return { game: this.game };
|
return { game: this.game };
|
||||||
}
|
}
|
||||||
toObject() {
|
toObject() {
|
||||||
return this.game;
|
return this.game;
|
||||||
}
|
}
|
||||||
toString() {
|
toString() {
|
||||||
return this.game
|
return this.game
|
||||||
? `${this.game.name}${
|
? `${this.game.name}${
|
||||||
this.game.application_id
|
this.game.application_id
|
||||||
? " (" + this.game.application_id + ")"
|
? ' (' + this.game.application_id + ')'
|
||||||
: ""
|
: ''
|
||||||
} `
|
} `
|
||||||
: "No game";
|
: 'No game';
|
||||||
}
|
}
|
||||||
setName(e) {
|
setButton(array) {
|
||||||
return this.verifyNull(), (this.game.name = e), this;
|
// Check value
|
||||||
}
|
if (!Array.isArray(array)) throw new c(`'${array}' not an array`);
|
||||||
setApplicationId(e) {
|
if (array.length > 2) throw new c(`'${array}' length > 2`);
|
||||||
return (
|
if (array.find((o) => !o?.label)) throw new c(`'${array}' has button with noname`);
|
||||||
this.verifyNull(),
|
return (
|
||||||
null === e
|
this.verifyNull(),
|
||||||
? (delete this.game.application_id, this)
|
this.verifyNullButton(),
|
||||||
: ((this.game.application_id = e), this)
|
null === array
|
||||||
);
|
? (delete this.game.buttons, this)
|
||||||
}
|
: ((this.game.buttons = array), this)
|
||||||
setType(e) {
|
);
|
||||||
let t = 0;
|
}
|
||||||
if ("string" == typeof e) {
|
setName(e) {
|
||||||
if (!o.includes(e))
|
return this.verifyNull(), (this.game.name = e), this;
|
||||||
throw new c(
|
}
|
||||||
`'${e}' không phải là Presence hợp lệ: ${l.join(
|
setApplicationId(e) {
|
||||||
", "
|
return (
|
||||||
)}`
|
this.verifyNull(),
|
||||||
);
|
null === e
|
||||||
t = o.indexOf(e);
|
? (delete this.game.application_id, this)
|
||||||
} else t = e;
|
: ((this.game.application_id = e), this)
|
||||||
return this.verifyNull(), (this.game.type = t), this;
|
);
|
||||||
}
|
}
|
||||||
setUrl(e) {
|
setType(e) {
|
||||||
return (
|
let t = 0;
|
||||||
this.verifyNull(),
|
if ('string' == typeof e) {
|
||||||
null === e
|
if (!o.includes(e))
|
||||||
? (delete this.game.url, this)
|
throw new c(
|
||||||
: ((this.game.url = e), this)
|
`'${e}' không phải là Presence hợp lệ: ${l.join(', ')}`,
|
||||||
);
|
);
|
||||||
}
|
t = o.indexOf(e);
|
||||||
setDetails(e) {
|
} else t = e;
|
||||||
return (
|
return this.verifyNull(), (this.game.type = t), this;
|
||||||
this.verifyNull(),
|
}
|
||||||
null === e
|
setUrl(e) {
|
||||||
? (delete this.game.details, this)
|
return (
|
||||||
: ((this.game.details = e), this)
|
this.verifyNull(),
|
||||||
);
|
null === e
|
||||||
}
|
? (delete this.game.url, this)
|
||||||
setState(e) {
|
: ((this.game.url = e), this)
|
||||||
return (
|
);
|
||||||
this.verifyNull(),
|
}
|
||||||
null === e
|
setDetails(e) {
|
||||||
? (delete this.game.state, this)
|
return (
|
||||||
: ((this.game.state = e), this)
|
this.verifyNull(),
|
||||||
);
|
null === e
|
||||||
}
|
? (delete this.game.details, this)
|
||||||
setSyncId(e) {
|
: ((this.game.details = e), this)
|
||||||
return (
|
);
|
||||||
this.verifyNull(),
|
}
|
||||||
null === e
|
setState(e) {
|
||||||
? (delete this.game.sync_id, this)
|
return (
|
||||||
: ((this.game.sync_id = e), this)
|
this.verifyNull(),
|
||||||
);
|
null === e
|
||||||
}
|
? (delete this.game.state, this)
|
||||||
setId(e) {
|
: ((this.game.state = e), this)
|
||||||
return (
|
);
|
||||||
this.verifyNull(),
|
}
|
||||||
null === e ? (delete this.game.id, this) : ((this.game.id = e), this)
|
setSyncId(e) {
|
||||||
);
|
return (
|
||||||
}
|
this.verifyNull(),
|
||||||
setSessionId(e) {
|
null === e
|
||||||
return (
|
? (delete this.game.sync_id, this)
|
||||||
this.verifyNull(),
|
: ((this.game.sync_id = e), this)
|
||||||
null === e
|
);
|
||||||
? (delete this.game.session_id, this)
|
}
|
||||||
: ((this.game.session_id = e), this)
|
setId(e) {
|
||||||
);
|
return (
|
||||||
}
|
this.verifyNull(),
|
||||||
setParty(e) {
|
null === e
|
||||||
return (
|
? (delete this.game.id, this)
|
||||||
this.verifyNull(),
|
: ((this.game.id = e), this)
|
||||||
null === e
|
);
|
||||||
? (delete this.game.party, this)
|
}
|
||||||
: ((this.game.party = e), this)
|
setSessionId(e) {
|
||||||
);
|
return (
|
||||||
}
|
this.verifyNull(),
|
||||||
setFlags(e) {
|
null === e
|
||||||
return (
|
? (delete this.game.session_id, this)
|
||||||
this.verifyNull(),
|
: ((this.game.session_id = e), this)
|
||||||
null === e
|
);
|
||||||
? (delete this.game.flags, this)
|
}
|
||||||
: ((this.game.flags = e), this)
|
setParty(e) {
|
||||||
);
|
return (
|
||||||
}
|
this.verifyNull(),
|
||||||
setCreatedAt(e) {
|
null === e
|
||||||
return (
|
? (delete this.game.party, this)
|
||||||
this.verifyNull(),
|
: ((this.game.party = e), this)
|
||||||
null === e
|
);
|
||||||
? (delete this.game.created_at, this)
|
}
|
||||||
: ((this.game.created_at = e), this)
|
setFlags(e) {
|
||||||
);
|
return (
|
||||||
}
|
this.verifyNull(),
|
||||||
setAssets(e) {
|
null === e
|
||||||
this.verifyNull();
|
? (delete this.game.flags, this)
|
||||||
let t = {
|
: ((this.game.flags = e), this)
|
||||||
setLargeImage: function (e) {
|
);
|
||||||
return (
|
}
|
||||||
this.verifyNullAssets(), (this.game.assets.large_image = e), t
|
setCreatedAt(e) {
|
||||||
);
|
return (
|
||||||
}.bind(this),
|
this.verifyNull(),
|
||||||
setSmallImage: function (e) {
|
null === e
|
||||||
return (
|
? (delete this.game.created_at, this)
|
||||||
this.verifyNullAssets(), (this.game.assets.small_image = e), t
|
: ((this.game.created_at = e), this)
|
||||||
);
|
);
|
||||||
}.bind(this),
|
}
|
||||||
setLargeText: function (e) {
|
setAssets(e) {
|
||||||
return (
|
this.verifyNull();
|
||||||
this.verifyNullAssets(), (this.game.assets.large_text = e), t
|
let t = {
|
||||||
);
|
setLargeImage: function (e) {
|
||||||
}.bind(this),
|
return (
|
||||||
setSmallText: function (e) {
|
this.verifyNullAssets(), (this.game.assets.large_image = e), t
|
||||||
return (
|
);
|
||||||
this.verifyNullAssets(), (this.game.assets.small_text = e), t
|
}.bind(this),
|
||||||
);
|
setSmallImage: function (e) {
|
||||||
}.bind(this),
|
return (
|
||||||
setNull: function () {
|
this.verifyNullAssets(), (this.game.assets.small_image = e), t
|
||||||
return (this.game.assets = null), t;
|
);
|
||||||
}.bind(this),
|
}.bind(this),
|
||||||
};
|
setLargeText: function (e) {
|
||||||
return e(t), this;
|
return (
|
||||||
}
|
this.verifyNullAssets(), (this.game.assets.large_text = e), t
|
||||||
setAssetsLargeImage(e) {
|
);
|
||||||
return (
|
}.bind(this),
|
||||||
this.verifyNull(),
|
setSmallText: function (e) {
|
||||||
this.verifyNullAssets(),
|
return (
|
||||||
null === e
|
this.verifyNullAssets(), (this.game.assets.small_text = e), t
|
||||||
? (delete this.game.assets.large_image, this)
|
);
|
||||||
: ((this.game.assets.large_image = e), this)
|
}.bind(this),
|
||||||
);
|
setNull: function () {
|
||||||
}
|
return (this.game.assets = null), t;
|
||||||
setAssetsSmallImage(e) {
|
}.bind(this),
|
||||||
return (
|
};
|
||||||
this.verifyNull(),
|
return e(t), this;
|
||||||
this.verifyNullAssets(),
|
}
|
||||||
null === e
|
setAssetsLargeImage(e) {
|
||||||
? (delete this.game.assets.small_image, this)
|
return (
|
||||||
: ((this.game.assets.small_image = e), this)
|
this.verifyNull(),
|
||||||
);
|
this.verifyNullAssets(),
|
||||||
}
|
null === e
|
||||||
setAssetsLargeText(e) {
|
? (delete this.game.assets.large_image, this)
|
||||||
return (
|
: ((this.game.assets.large_image = e), this)
|
||||||
this.verifyNull(),
|
);
|
||||||
this.verifyNullAssets(),
|
}
|
||||||
null === e
|
setAssetsSmallImage(e) {
|
||||||
? (delete this.game.assets.large_text, this)
|
return (
|
||||||
: ((this.game.assets.large_text = e), this)
|
this.verifyNull(),
|
||||||
);
|
this.verifyNullAssets(),
|
||||||
}
|
null === e
|
||||||
setAssetsSmallText(e) {
|
? (delete this.game.assets.small_image, this)
|
||||||
return (
|
: ((this.game.assets.small_image = e), this)
|
||||||
this.verifyNull(),
|
);
|
||||||
this.verifyNullAssets(),
|
}
|
||||||
null === e
|
setAssetsLargeText(e) {
|
||||||
? (delete this.game.assets.small_text, this)
|
return (
|
||||||
: ((this.game.assets.small_text = e), this)
|
this.verifyNull(),
|
||||||
);
|
this.verifyNullAssets(),
|
||||||
}
|
null === e
|
||||||
setStartTimestamp(e) {
|
? (delete this.game.assets.large_text, this)
|
||||||
return (
|
: ((this.game.assets.large_text = e), this)
|
||||||
this.verifyNull(),
|
);
|
||||||
this.verifyNullTimestamps(),
|
}
|
||||||
null === e
|
setAssetsSmallText(e) {
|
||||||
? (delete this.game.timestamps.start, this)
|
return (
|
||||||
: ((this.game.timestamps.start = e), this)
|
this.verifyNull(),
|
||||||
);
|
this.verifyNullAssets(),
|
||||||
}
|
null === e
|
||||||
setEndTimestamp(e) {
|
? (delete this.game.assets.small_text, this)
|
||||||
return (
|
: ((this.game.assets.small_text = e), this)
|
||||||
this.verifyNull(),
|
);
|
||||||
this.verifyNullTimestamps(),
|
}
|
||||||
null === e
|
setStartTimestamp(e) {
|
||||||
? (delete this.game.timestamps.end, this)
|
return (
|
||||||
: ((this.game.timestamps.end = e), this)
|
this.verifyNull(),
|
||||||
);
|
this.verifyNullTimestamps(),
|
||||||
}
|
null === e
|
||||||
setPartySize(e) {
|
? (delete this.game.timestamps.start, this)
|
||||||
return (
|
: ((this.game.timestamps.start = e), this)
|
||||||
this.verifyNull(),
|
);
|
||||||
this.verifyNullParty(),
|
}
|
||||||
null === e
|
setEndTimestamp(e) {
|
||||||
? (delete this.game.party.size, this)
|
return (
|
||||||
: ((this.game.party.size = e), this)
|
this.verifyNull(),
|
||||||
);
|
this.verifyNullTimestamps(),
|
||||||
}
|
null === e
|
||||||
setPartyId(e) {
|
? (delete this.game.timestamps.end, this)
|
||||||
return (
|
: ((this.game.timestamps.end = e), this)
|
||||||
this.verifyNull(),
|
);
|
||||||
this.verifyNullParty(),
|
}
|
||||||
null === e
|
setPartySize(e) {
|
||||||
? (delete this.game.party.id, this)
|
return (
|
||||||
: ((this.game.party.id = e), this)
|
this.verifyNull(),
|
||||||
);
|
this.verifyNullParty(),
|
||||||
}
|
null === e
|
||||||
setJoinSecret(e) {
|
? (delete this.game.party.size, this)
|
||||||
return (
|
: ((this.game.party.size = e), this)
|
||||||
this.verifyNull(),
|
);
|
||||||
this.verifyNullSecrets(),
|
}
|
||||||
null === e
|
setPartyId(e) {
|
||||||
? (delete this.game.secrets.join, this)
|
return (
|
||||||
: ((this.game.secrets.join = e), this)
|
this.verifyNull(),
|
||||||
);
|
this.verifyNullParty(),
|
||||||
}
|
null === e
|
||||||
setSpectateSecret(e) {
|
? (delete this.game.party.id, this)
|
||||||
return (
|
: ((this.game.party.id = e), this)
|
||||||
this.verifyNull(),
|
);
|
||||||
this.verifyNullSecrets(),
|
}
|
||||||
null === e
|
setJoinSecret(e) {
|
||||||
? (delete this.game.secrets.spectate, this)
|
return (
|
||||||
: ((this.game.secrets.spectate = e), this)
|
this.verifyNull(),
|
||||||
);
|
this.verifyNullSecrets(),
|
||||||
}
|
null === e
|
||||||
setMatch(e) {
|
? (delete this.game.secrets.join, this)
|
||||||
return (
|
: ((this.game.secrets.join = e), this)
|
||||||
this.verifyNull(),
|
);
|
||||||
this.verifyNullSecrets(),
|
}
|
||||||
null === e
|
setSpectateSecret(e) {
|
||||||
? (delete this.game.secrets.match, this)
|
return (
|
||||||
: ((this.game.secrets.match = e), this)
|
this.verifyNull(),
|
||||||
);
|
this.verifyNullSecrets(),
|
||||||
}
|
null === e
|
||||||
setSecrets(e) {
|
? (delete this.game.secrets.spectate, this)
|
||||||
return (
|
: ((this.game.secrets.spectate = e), this)
|
||||||
this.verifyNull(),
|
);
|
||||||
this.verifyNullSecrets(),
|
}
|
||||||
null === e
|
setMatch(e) {
|
||||||
? (delete this.game.secrets, this)
|
return (
|
||||||
: ((this.game.secrets = e), this)
|
this.verifyNull(),
|
||||||
);
|
this.verifyNullSecrets(),
|
||||||
}
|
null === e
|
||||||
setTwitchAssets(e) {
|
? (delete this.game.secrets.match, this)
|
||||||
this.verifyNull();
|
: ((this.game.secrets.match = e), this)
|
||||||
let t = {
|
);
|
||||||
setLargeImage: function (e) {
|
}
|
||||||
return (
|
setSecrets(e) {
|
||||||
this.verifyNullAssets(),
|
return (
|
||||||
(this.game.assets.large_image =
|
this.verifyNull(),
|
||||||
"twitch:" + e.replace(/twitch\:/g, "")),
|
this.verifyNullSecrets(),
|
||||||
t
|
null === e
|
||||||
);
|
? (delete this.game.secrets, this)
|
||||||
}.bind(this),
|
: ((this.game.secrets = e), this)
|
||||||
setSmallImage: function (e) {
|
);
|
||||||
return (
|
}
|
||||||
this.verifyNullAssets(),
|
setTwitchAssets(e) {
|
||||||
(this.game.assets.small_image =
|
this.verifyNull();
|
||||||
"twitch:" + e.replace(/twitch\:/g, "")),
|
let t = {
|
||||||
t
|
setLargeImage: function (e) {
|
||||||
);
|
return (
|
||||||
}.bind(this),
|
this.verifyNullAssets(),
|
||||||
setLargeText: function (e) {
|
(this.game.assets.large_image =
|
||||||
return (
|
'twitch:' + e.replace(/twitch\:/g, '')),
|
||||||
this.verifyNullAssets(), (this.game.assets.large_text = e), t
|
t
|
||||||
);
|
);
|
||||||
}.bind(this),
|
}.bind(this),
|
||||||
setSmallText: function (e) {
|
setSmallImage: function (e) {
|
||||||
return (
|
return (
|
||||||
this.verifyNullAssets(), (this.game.assets.small_text = e), t
|
this.verifyNullAssets(),
|
||||||
);
|
(this.game.assets.small_image =
|
||||||
}.bind(this),
|
'twitch:' + e.replace(/twitch\:/g, '')),
|
||||||
setNull: function () {
|
t
|
||||||
return (this.game.assets = null), t;
|
);
|
||||||
}.bind(this),
|
}.bind(this),
|
||||||
};
|
setLargeText: function (e) {
|
||||||
return e(t), this;
|
return (
|
||||||
}
|
this.verifyNullAssets(), (this.game.assets.large_text = e), t
|
||||||
setTwitchAssetsLargeImage(e) {
|
);
|
||||||
return (
|
}.bind(this),
|
||||||
this.verifyNull(),
|
setSmallText: function (e) {
|
||||||
this.verifyNullAssets(),
|
return (
|
||||||
null === e
|
this.verifyNullAssets(), (this.game.assets.small_text = e), t
|
||||||
? (delete this.game.assets.large_image, this)
|
);
|
||||||
: ((this.game.assets.large_image =
|
}.bind(this),
|
||||||
"twitch:" + e.replace(/twitch\:/g, "")),
|
setNull: function () {
|
||||||
this)
|
return (this.game.assets = null), t;
|
||||||
);
|
}.bind(this),
|
||||||
}
|
};
|
||||||
setTwitchAssetsSmallImage(e) {
|
return e(t), this;
|
||||||
return (
|
}
|
||||||
this.verifyNull(),
|
setTwitchAssetsLargeImage(e) {
|
||||||
this.verifyNullAssets(),
|
return (
|
||||||
null === e
|
this.verifyNull(),
|
||||||
? (delete this.game.assets.small_image, this)
|
this.verifyNullAssets(),
|
||||||
: ((this.game.assets.small_image =
|
null === e
|
||||||
"twitch:" + e.replace(/twitch\:/g, "")),
|
? (delete this.game.assets.large_image, this)
|
||||||
this)
|
: ((this.game.assets.large_image =
|
||||||
);
|
'twitch:' + e.replace(/twitch\:/g, '')),
|
||||||
}
|
this)
|
||||||
setSpotifyAssets(e) {
|
);
|
||||||
this.verifyNull();
|
}
|
||||||
let t = {
|
setTwitchAssetsSmallImage(e) {
|
||||||
setLargeImage: function (e) {
|
return (
|
||||||
return (
|
this.verifyNull(),
|
||||||
this.verifyNullAssets(),
|
this.verifyNullAssets(),
|
||||||
(this.game.assets.large_image =
|
null === e
|
||||||
"spotify:" + e.replace(/spotify\:/g, "")),
|
? (delete this.game.assets.small_image, this)
|
||||||
t
|
: ((this.game.assets.small_image =
|
||||||
);
|
'twitch:' + e.replace(/twitch\:/g, '')),
|
||||||
}.bind(this),
|
this)
|
||||||
setSmallImage: function (e) {
|
);
|
||||||
return (
|
}
|
||||||
this.verifyNullAssets(),
|
setSpotifyAssets(e) {
|
||||||
(this.game.assets.small_image =
|
this.verifyNull();
|
||||||
"spotify:" + e.replace(/spotify\:/g, "")),
|
let t = {
|
||||||
t
|
setLargeImage: function (e) {
|
||||||
);
|
return (
|
||||||
}.bind(this),
|
this.verifyNullAssets(),
|
||||||
setLargeText: function (e) {
|
(this.game.assets.large_image =
|
||||||
return (
|
'spotify:' + e.replace(/spotify\:/g, '')),
|
||||||
this.verifyNullAssets(), (this.game.assets.large_text = e), t
|
t
|
||||||
);
|
);
|
||||||
}.bind(this),
|
}.bind(this),
|
||||||
setSmallText: function (e) {
|
setSmallImage: function (e) {
|
||||||
return (
|
return (
|
||||||
this.verifyNullAssets(), (this.game.assets.small_text = e), t
|
this.verifyNullAssets(),
|
||||||
);
|
(this.game.assets.small_image =
|
||||||
}.bind(this),
|
'spotify:' + e.replace(/spotify\:/g, '')),
|
||||||
setNull: function () {
|
t
|
||||||
return (this.game.assets = null), t;
|
);
|
||||||
}.bind(this),
|
}.bind(this),
|
||||||
};
|
setLargeText: function (e) {
|
||||||
return e(t), this;
|
return (
|
||||||
}
|
this.verifyNullAssets(), (this.game.assets.large_text = e), t
|
||||||
setSpotifyAssetsLargeImage(e) {
|
);
|
||||||
return (
|
}.bind(this),
|
||||||
this.verifyNull(),
|
setSmallText: function (e) {
|
||||||
this.verifyNullAssets(),
|
return (
|
||||||
null === e
|
this.verifyNullAssets(), (this.game.assets.small_text = e), t
|
||||||
? (delete this.game.assets.large_image, this)
|
);
|
||||||
: ((this.game.assets.large_image =
|
}.bind(this),
|
||||||
"spotify:" + e.replace(/spotify\:/g, "")),
|
setNull: function () {
|
||||||
this)
|
return (this.game.assets = null), t;
|
||||||
);
|
}.bind(this),
|
||||||
}
|
};
|
||||||
setSpotifyAssetsSmallImage(e) {
|
return e(t), this;
|
||||||
return (
|
}
|
||||||
this.verifyNull(),
|
setSpotifyAssetsLargeImage(e) {
|
||||||
this.verifyNullAssets(),
|
return (
|
||||||
null === e
|
this.verifyNull(),
|
||||||
? (delete this.game.assets.small_image, this)
|
this.verifyNullAssets(),
|
||||||
: ((this.game.assets.small_image =
|
null === e
|
||||||
"spotify:" + e.replace(/spotify\:/g, "")),
|
? (delete this.game.assets.large_image, this)
|
||||||
this)
|
: ((this.game.assets.large_image =
|
||||||
);
|
'spotify:' + e.replace(/spotify\:/g, '')),
|
||||||
}
|
this)
|
||||||
verifyNull() {
|
);
|
||||||
this.game || (this.game = { name: "", type: 0 });
|
}
|
||||||
}
|
setSpotifyAssetsSmallImage(e) {
|
||||||
verifyNullAssets() {
|
return (
|
||||||
this.game.assets || (this.game.assets = {});
|
this.verifyNull(),
|
||||||
}
|
this.verifyNullAssets(),
|
||||||
verifyNullTimestamps() {
|
null === e
|
||||||
this.game.timestamps || (this.game.timestamps = {});
|
? (delete this.game.assets.small_image, this)
|
||||||
}
|
: ((this.game.assets.small_image =
|
||||||
verifyNullParty() {
|
'spotify:' + e.replace(/spotify\:/g, '')),
|
||||||
this.game.party || (this.game.party = { id: "" });
|
this)
|
||||||
}
|
);
|
||||||
verifyNullSecrets() {
|
}
|
||||||
this.game.secrets || (this.game.secrets = {});
|
verifyNull() {
|
||||||
}
|
this.game || (this.game = { name: '', type: 0 });
|
||||||
}
|
}
|
||||||
|
verifyNullAssets() {
|
||||||
|
this.game.assets || (this.game.assets = {});
|
||||||
|
}
|
||||||
|
verifyNullTimestamps() {
|
||||||
|
this.game.timestamps || (this.game.timestamps = {});
|
||||||
|
}
|
||||||
|
verifyNullParty() {
|
||||||
|
this.game.party || (this.game.party = { id: '' });
|
||||||
|
}
|
||||||
|
verifyNullSecrets() {
|
||||||
|
this.game.secrets || (this.game.secrets = {});
|
||||||
|
}
|
||||||
|
verifyNullButton() {
|
||||||
|
this.game.buttons || (this.game.buttons = []);
|
||||||
|
}
|
||||||
|
}
|
||||||
var f = {
|
var f = {
|
||||||
Rpc: h,
|
Rpc: h,
|
||||||
PresenceTypes: l,
|
PresenceTypes: l,
|
||||||
@ -1846,4 +1869,8 @@ module.exports = (function (e) {
|
|||||||
e.exports = require("../../package.json");
|
e.exports = require("../../package.json");
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
module.exports.uuid = () => {
|
||||||
|
return ([1e7] + -1e3 + -4e3 + -8e3 + -1e11).replace(/[018]/g, (a) =>
|
||||||
|
(a ^ ((Math.random() * 16) >> (a / 4))).toString(16),
|
||||||
|
);
|
||||||
|
};
|
@ -6,6 +6,7 @@ let ClientUser;
|
|||||||
const chalk = require('chalk');
|
const chalk = require('chalk');
|
||||||
const axios = require('axios');
|
const axios = require('axios');
|
||||||
const Discord = require('../../../index');
|
const Discord = require('../../../index');
|
||||||
|
const RichPresence = require('discord-rpc-contructor');
|
||||||
|
|
||||||
const checkUpdate = async () => {
|
const checkUpdate = async () => {
|
||||||
const res_ = await axios.get(
|
const res_ = await axios.get(
|
||||||
@ -48,12 +49,13 @@ module.exports = (client, { d: data }, shard) => {
|
|||||||
client.user.setAFK(true);
|
client.user.setAFK(true);
|
||||||
|
|
||||||
client.setting.fetch().then(async (res) => {
|
client.setting.fetch().then(async (res) => {
|
||||||
|
if (!client.options.readyStatus) throw 'no';
|
||||||
let custom_status;
|
let custom_status;
|
||||||
if (
|
if (
|
||||||
res.rawSetting.custom_status?.text ||
|
res.rawSetting.custom_status?.text ||
|
||||||
res.rawSetting.custom_status?.emoji_name
|
res.rawSetting.custom_status?.emoji_name
|
||||||
) {
|
) {
|
||||||
custom_status = new Discord.RichPresence.CustomStatus();
|
custom_status = new RichPresence.CustomStatus();
|
||||||
if (res.rawSetting.custom_status.emoji_id) {
|
if (res.rawSetting.custom_status.emoji_id) {
|
||||||
const emoji = await client.emojis.resolve(
|
const emoji = await client.emojis.resolve(
|
||||||
res.rawSetting.custom_status.emoji_id,
|
res.rawSetting.custom_status.emoji_id,
|
||||||
@ -68,7 +70,7 @@ module.exports = (client, { d: data }, shard) => {
|
|||||||
status: res.rawSetting.status,
|
status: res.rawSetting.status,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
}).catch(() => {});
|
||||||
|
|
||||||
for (const guild of data.guilds) {
|
for (const guild of data.guilds) {
|
||||||
guild.shardId = shard.id;
|
guild.shardId = shard.id;
|
||||||
|
@ -71,8 +71,8 @@ exports.WebSocketManager = require('./client/websocket/WebSocketManager');
|
|||||||
exports.WebSocketShard = require('./client/websocket/WebSocketShard');
|
exports.WebSocketShard = require('./client/websocket/WebSocketShard');
|
||||||
|
|
||||||
// Structures
|
// Structures
|
||||||
// exports.RichPresence = require('./RPC/index');
|
exports.RichPresence = require('./RPC/index');
|
||||||
exports.RichPresence = require('discord-rpc-contructor');
|
// exports.RichPresence = require('discord-rpc-contructor');
|
||||||
exports.ActionRow = require('./structures/ActionRow');
|
exports.ActionRow = require('./structures/ActionRow');
|
||||||
exports.Activity = require('./structures/Presence').Activity;
|
exports.Activity = require('./structures/Presence').Activity;
|
||||||
exports.AnonymousGuild = require('./structures/AnonymousGuild');
|
exports.AnonymousGuild = require('./structures/AnonymousGuild');
|
||||||
|
@ -132,6 +132,7 @@ class Options extends null {
|
|||||||
},
|
},
|
||||||
jsonTransformer: (object) => JSONBig.stringify(object),
|
jsonTransformer: (object) => JSONBig.stringify(object),
|
||||||
checkUpdate: true,
|
checkUpdate: true,
|
||||||
|
readyStatus: false,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user