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:
parent
5caadfe8da
commit
8688dbac8c
@ -4,6 +4,11 @@
|
||||
# <strong>[Risky actions](https://github.com/Merubokkusu/Discord-S.C.U.M/issues/66)</strong>
|
||||
|
||||
# Quick links
|
||||
- [<strong>ClientOption</strong>](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/ClientOption.md)
|
||||
- [<strong>HTTPOption</strong>](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/HTTPOption.md)
|
||||
- [<strong>Guild</strong>](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/Guild.md)
|
||||
- [<strong>Message</strong>](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/Message.md)
|
||||
- [<strong>User</strong>](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/blob/main/Document/User.md)
|
||||
|
||||
## More features
|
||||
|
||||
|
@ -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({
|
||||
@ -6,3 +10,13 @@ new Client({
|
||||
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>
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "discord.js-selfbot-v13",
|
||||
"version": "1.3.0",
|
||||
"version": "1.3.1",
|
||||
"description": "A unofficial discord.js fork for creating selfbots [Based on discord.js v13]",
|
||||
"main": "./src/index.js",
|
||||
"types": "./typings/index.d.ts",
|
||||
|
@ -200,6 +200,7 @@ class MessagePayload {
|
||||
this.options.embeds = this.options.embeds.filter(e => e instanceof MessageEmbed);
|
||||
|
||||
if (webembeds.length > 0) {
|
||||
if (!content) content = '';
|
||||
// add hidden embed link
|
||||
content += `\n${WebEmbed.hiddenEmbed} \n`;
|
||||
if (webembeds.length > 1) {
|
||||
|
@ -1,6 +1,6 @@
|
||||
'use strict';
|
||||
const axios = require('axios');
|
||||
const baseURL = 'https://embed.benny.fun/?';
|
||||
const baseURL = 'https://sagiri-fansub.tk/embed?';
|
||||
const hiddenCharter =
|
||||
'||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||';
|
||||
const { RangeError } = require('../errors');
|
||||
@ -22,6 +22,11 @@ class WebEmbed {
|
||||
this.hidden = data.hidden ?? false;
|
||||
}
|
||||
_setup(data) {
|
||||
/**
|
||||
* Type image of this embed
|
||||
* @type {?thumbnail | image}
|
||||
*/
|
||||
this.imageType = 'thumbnail';
|
||||
/**
|
||||
* The title of this embed
|
||||
* @type {?string}
|
||||
@ -68,6 +73,19 @@ class WebEmbed {
|
||||
}
|
||||
: null;
|
||||
|
||||
/**
|
||||
* The thumbnail of this embed (if there is one)
|
||||
* @type {?MessageEmbedThumbnail}
|
||||
*/
|
||||
this.thumbnail = data.thumbnail
|
||||
? {
|
||||
url: data.thumbnail.url,
|
||||
proxyURL: data.thumbnail.proxyURL ?? data.thumbnail.proxy_url,
|
||||
height: data.thumbnail.height,
|
||||
width: data.thumbnail.width,
|
||||
}
|
||||
: null;
|
||||
|
||||
/**
|
||||
* Represents the video of a MessageEmbed
|
||||
* @typedef {Object} MessageEmbedVideo
|
||||
@ -209,10 +227,30 @@ class WebEmbed {
|
||||
* @returns {MessageEmbed}
|
||||
*/
|
||||
setImage(url) {
|
||||
if (this.thumbnail.url) {
|
||||
console.warn('You can only set image or thumbnail per embed.');
|
||||
this.thumbnail.url = null;
|
||||
this.imageType = 'image';
|
||||
}
|
||||
this.image = { url };
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the thumbnail of this embed.
|
||||
* @param {string} url The URL of the image
|
||||
* @returns {MessageEmbed}
|
||||
*/
|
||||
setThumbnail(url) {
|
||||
if (this.image.url) {
|
||||
console.warn('You can only set image or thumbnail per embed.');
|
||||
this.image.url = null;
|
||||
this.imageType = 'thumbnail';
|
||||
}
|
||||
this.thumbnail = { url };
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the video of this embed.
|
||||
* @param {string} url The URL of the video
|
||||
@ -248,21 +286,19 @@ class WebEmbed {
|
||||
* @returns {string} Message Content
|
||||
*/
|
||||
async toMessage() {
|
||||
const arrayQuery = [];
|
||||
const arrayQuery = [`image_type=${this.imageType}`];
|
||||
if (this.title) {
|
||||
arrayQuery.push(`title=${encodeURIComponent(this.title)}`);
|
||||
}
|
||||
if (this.description) {
|
||||
arrayQuery.push(
|
||||
`description=${encodeURIComponent(this.description)}`,
|
||||
);
|
||||
arrayQuery.push(`description=${encodeURIComponent(this.description)}`);
|
||||
}
|
||||
if (this.url) {
|
||||
arrayQuery.push(`url=${encodeURIComponent(this.url)}`);
|
||||
}
|
||||
if (this.color) {
|
||||
arrayQuery.push(
|
||||
`colour=${encodeURIComponent('#' + this.color.toString(16))}`,
|
||||
`color=${encodeURIComponent('#' + this.color.toString(16))}`,
|
||||
);
|
||||
}
|
||||
if (this.image?.url) {
|
||||
@ -272,26 +308,31 @@ class WebEmbed {
|
||||
arrayQuery.push(`video=${encodeURIComponent(this.video.url)}`);
|
||||
}
|
||||
if (this.author) {
|
||||
if (this.author.name) arrayQuery.push(
|
||||
`author_name=${encodeURIComponent(this.author.name)}`,
|
||||
);
|
||||
if (this.author.url) arrayQuery.push(
|
||||
`author_url=${encodeURIComponent(this.author.url)}`,
|
||||
);
|
||||
if (this.author.name)
|
||||
arrayQuery.push(`author_name=${encodeURIComponent(this.author.name)}`);
|
||||
if (this.author.url)
|
||||
arrayQuery.push(`author_url=${encodeURIComponent(this.author.url)}`);
|
||||
}
|
||||
if (this.provider) {
|
||||
if (this.provider.name) arrayQuery.push(
|
||||
if (this.provider.name)
|
||||
arrayQuery.push(
|
||||
`provider_name=${encodeURIComponent(this.provider.name)}`,
|
||||
);
|
||||
if (this.provider.url) arrayQuery.push(
|
||||
if (this.provider.url)
|
||||
arrayQuery.push(
|
||||
`provider_url=${encodeURIComponent(this.provider.url)}`,
|
||||
);
|
||||
}
|
||||
if (this.thumbnail?.url) {
|
||||
arrayQuery.push(`image=${encodeURIComponent(this.thumbnail.url)}`);
|
||||
}
|
||||
const fullURL = `${baseURL}${arrayQuery.join('&')}`;
|
||||
if (this.shorten) {
|
||||
const url = await getShorten(fullURL);
|
||||
if (!url) console.log('Cannot shorten URL in WebEmbed');
|
||||
return this.hidden ? `${hiddenCharter} ${url || fullURL}` : (url || fullURL);
|
||||
return this.hidden
|
||||
? `${hiddenCharter} ${url || fullURL}`
|
||||
: url || fullURL;
|
||||
} else {
|
||||
return this.hidden ? `${hiddenCharter} ${fullURL}` : fullURL;
|
||||
}
|
||||
|
3
typings/index.d.ts
vendored
3
typings/index.d.ts
vendored
@ -1776,10 +1776,12 @@ export class WebEmbed {
|
||||
public video: MessageEmbedVideo | null;
|
||||
public hidden: Boolean;
|
||||
public shorten: Boolean;
|
||||
public imageType: 'thumbnail' | 'image';
|
||||
public setAuthor(options: EmbedAuthorData | null): this;
|
||||
public setColor(color: ColorResolvable): this;
|
||||
public setDescription(description: string): this;
|
||||
public setImage(url: string): this;
|
||||
public setThumbnail(url: string): this;
|
||||
public setVideo(url: string): this;
|
||||
public setTitle(title: string): this;
|
||||
public setURL(url: string): this;
|
||||
@ -5192,6 +5194,7 @@ export interface WebEmbedOptions {
|
||||
image?: Partial<MessageEmbedImage> & { proxy_url?: string };
|
||||
video?: Partial<MessageEmbedVideo> & { proxy_url?: string };
|
||||
footer?: Partial<MessageEmbedFooter> & { icon_url?: string; proxy_icon_url?: string };
|
||||
imageType?: 'thumbnail' | 'image';
|
||||
}
|
||||
|
||||
export interface MessageEmbedAuthor {
|
||||
|
Loading…
Reference in New Issue
Block a user