-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqr.js
39 lines (30 loc) · 1.17 KB
/
qr.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
const chalk = require('chalk');
const {WAConnection} = require('@adiwajshing/baileys');
const {StringSession} = require('./whatsasena/');
const fs = require('fs');
async function whatsAsena () {
const conn = new WAConnection();
const Session = new StringSession();
conn.logger.level = 'warn';
conn.regenerateQRIntervalMs = 50000;
conn.on('connecting', async () => {
console.log(`${chalk.green.bold('SL')}${chalk.blue.bold('RAVANA')}
${chalk.white.italic('RAVANAString Kodu Alıcı')}
${chalk.blue.italic('ℹ️ Connecting to Whatsapp... Please Wait.')}`);
});
conn.on('open', () => {
var st = Session.createStringSession(conn.base64EncodedAuthInfo());
console.log(
chalk.green.bold('RAVANA String Kodunuz: '), Session.createStringSession(conn.base64EncodedAuthInfo())
);
if (!fs.existsSync('config.env')) {
fs.writeFileSync('config.env', `RAVANA_SESSION="${st}"`);
}
console.log(
chalk.blue.bold('Locale kuruyorsanız node bot.js ile botu başlatabilirsiniz.')
);
process.exit(0);
});
await conn.connect();
}
whatsAsena()