forked from BlackBox-cmd/PteroControl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
29 lines (26 loc) · 3.39 KB
/
index.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
const {
ShardingManager
} = require('discord.js');
const config = require('./settings/config.json')
const manager = new ShardingManager('./bot.js', {
token: config.TOKEN
});
console.log(`
╭───────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ │
│ ██████╗░████████╗███████╗██████╗░░█████╗░░█████╗░░█████╗░███╗░░██╗████████╗██████╗░░█████╗░██╗░░░░░ │
│ ██╔══██╗╚══██╔══╝██╔════╝██╔══██╗██╔══██╗██╔══██╗██╔══██╗████╗░██║╚══██╔══╝██╔══██╗██╔══██╗██║░░░░░ │
│ ██████╔╝░░░██║░░░█████╗░░██████╔╝██║░░██║██║░░╚═╝██║░░██║██╔██╗██║░░░██║░░░██████╔╝██║░░██║██║░░░░░ │
│ ██╔═══╝░░░░██║░░░██╔══╝░░██╔══██╗██║░░██║██║░░██╗██║░░██║██║╚████║░░░██║░░░██╔══██╗██║░░██║██║░░░░░ │
│ ██║░░░░░░░░██║░░░███████╗██║░░██║╚█████╔╝╚█████╔╝╚█████╔╝██║░╚███║░░░██║░░░██║░░██║╚█████╔╝███████╗ │
│ ╚═╝░░░░░░░░╚═╝░░░╚══════╝╚═╝░░╚═╝░╚════╝░░╚════╝░░╚════╝░╚═╝░░╚══╝░░░╚═╝░░░╚═╝░░╚═╝░╚════╝░╚══════╝ │
│ │
│ │
│ │
│ │
│ Version - v0.1.2 │
│ │
╰───────────────────────────────────────────────────────────────────────────────────────────────────────╯
`)
manager.on('shardCreate', shard => console.log(`Launched shard ${shard.id}`));
manager.spawn();