1.3.1
- Update Document - Fix WebEmbed - Fix MessagePayload - Clear warn "Accessing non-existent property inside a circular dependency" (Pull #26)
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
# Quick Links
|
||||
- [Client Option](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/ClientOption.md#client-settings)
|
||||
- [Client Functions](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/ClientOption.md#client-functions)
|
||||
|
||||
## Client Settings
|
||||
```js
|
||||
new Client({
|
||||
@@ -5,4 +9,14 @@ new Client({
|
||||
readyStatus: false, // Set Custom Status sync from Account (Bot Ready) [Disable Default]
|
||||
autoCookie: true, // Auto added Cookie and Fingerprint [Enable Default](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/DOCUMENT.md#http-options)
|
||||
})
|
||||
```
|
||||
|
||||
## Client Functions
|
||||
- Update Cookie and Fingerprint
|
||||
```js
|
||||
client.updateCookie(): Promise<void>
|
||||
```
|
||||
- Reddem Nitro
|
||||
```js
|
||||
client.reddemNitro('code'): Promise<void>
|
||||
```
|
@@ -1,3 +1,9 @@
|
||||
# Quick Links:
|
||||
- [Set Guild Folder and Position](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/Guild.md#discord-guild-set-position)
|
||||
- [DM group](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/Guild.md#group-dm)
|
||||
- [Join Guild](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/Guild.md#join-guild-using-invite)
|
||||
- [Community](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/Guild.md#set-community))
|
||||
|
||||
## Discord Guild set position
|
||||
<details>
|
||||
<summary><strong>Click to show</strong></summary>
|
||||
@@ -64,3 +70,16 @@ await client.fetchInvite('code').then(async invite => {
|
||||
|
||||
<strong>But if you are blocked by HCaptcha, this will not work</strong>
|
||||
</details>
|
||||
|
||||
## Set Community
|
||||
<details>
|
||||
<summary>Click to show</summary>
|
||||
|
||||
```js
|
||||
await guild.setCommunity(stats: boolean, publicUpdatesChannel: TextChannelResolvable, rulesChannel: TextChannelResolvable, reason?: string): Promise<Guild>;
|
||||
// Enable with default
|
||||
await guild.setCommunity(true);
|
||||
// Disable
|
||||
await guild.setCommunity(false);
|
||||
```
|
||||
</details>
|
@@ -1,5 +1,5 @@
|
||||
## HTTP options:
|
||||
|
||||
- Change API v9 to v10
|
||||
```js
|
||||
/* If you want to change the API version from v9 to v10, here are the instructions */
|
||||
const { Client } = require('discord.js-selfbot-v13');
|
||||
@@ -14,9 +14,4 @@ const client = new Client({
|
||||
}
|
||||
}
|
||||
});
|
||||
/* Discord fingerprint ??? idk ... */
|
||||
/**
|
||||
* const { data } = await axios.get('https://discord.com/api/v9/experiments');
|
||||
* client.options.http.header['x-fingerprint'] = data.fingerprint
|
||||
*/
|
||||
```
|
@@ -1,3 +1,7 @@
|
||||
# Quick Links:
|
||||
- [Interaction](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/Message.md#interaction)
|
||||
- [Embed](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/Message.md#messageembed-)
|
||||
|
||||
## Interaction
|
||||
<details>
|
||||
<summary>Button Click</summary>
|
||||
@@ -86,8 +90,9 @@ message.channel.send({ content: `Hello world`, embeds: [w] }) // Patched :)
|
||||
|
||||
```
|
||||
### Features & Issues
|
||||
- No Timestamp, Footer, Thumbnail (but embed video, thumbnail working), Fields, Author iconURL
|
||||
- No Timestamp, Footer, Fields, Author iconURL
|
||||
- Video with Embed working
|
||||
- Can only choose between image and thumbnail
|
||||
- Description limit 350 characters
|
||||
- If you use hidden mode you must make sure your custom content is less than 1000 characters without nitro (because hidden mode uses 1000 characters + URL)
|
||||
|
||||
|
@@ -1,3 +1,10 @@
|
||||
# Quick Links:
|
||||
- [Setting](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/User.md#user-settings)
|
||||
- [User Info](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/User.md#discord-user-info)
|
||||
- [Relationship](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/User.md#discord-user-friend--blocked)
|
||||
- [Rich Presence](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/User.md#custom-status-and-rpc)
|
||||
- [Other](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/User.md#user--clientuser-method)
|
||||
|
||||
## User Settings
|
||||
<details>
|
||||
<summary><strong>Click to show</strong></summary>
|
||||
@@ -221,15 +228,7 @@ await client.user.setPassword('old password', 'new password');
|
||||
await client.user.disableAccount('password');
|
||||
// Delete Account [WARNING] Cannot be changed once used!
|
||||
await client.user.deleteAccount('password');
|
||||
```
|
||||
</details>
|
||||
|
||||
|
||||
## Reddem Nitro ?
|
||||
<details>
|
||||
<summary>Click to show</summary>
|
||||
|
||||
```js
|
||||
// Reddem Nitro
|
||||
await client.reddemNitro('code')
|
||||
```
|
||||
</details>
|
||||
</details>
|
Reference in New Issue
Block a user