2024-02-10 07:33:59 +00:00
|
|
|
const { ShardingManager} = require("discord.js");
|
|
|
|
const config = require("./src/config/config.js");
|
2020-06-16 18:51:11 +00:00
|
|
|
const DiscordWebhook = require("discord-webhook-node");
|
2020-03-13 20:31:04 +00:00
|
|
|
|
|
|
|
if (config.devMode) {
|
2020-04-20 16:56:23 +00:00
|
|
|
console.log("- dev mode- ");
|
|
|
|
config.shards = 1;
|
2020-03-13 20:31:04 +00:00
|
|
|
}
|
|
|
|
|
2020-04-20 16:56:23 +00:00
|
|
|
const manager = new ShardingManager("./src/bot.js", {
|
|
|
|
token: config.token,
|
|
|
|
respawn: config.respawn,
|
|
|
|
totalShards: config.shards,
|
2020-04-19 17:00:16 +00:00
|
|
|
});
|
2020-03-13 20:31:04 +00:00
|
|
|
|
2020-04-20 16:56:23 +00:00
|
|
|
console.log("- Launching shards -");
|
2020-03-13 20:31:04 +00:00
|
|
|
manager.spawn(config.shards, config.shardDelay, config.shardTimeout);
|
2020-04-20 16:56:23 +00:00
|
|
|
manager.on("shardCreate", (shard) =>
|
|
|
|
console.log(`- Launched shard ${shard.id} -`)
|
2020-06-16 18:51:11 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
const oldConsole = {};
|
|
|
|
oldConsole.log = console.log;
|
|
|
|
console.log = function (arg) {
|
|
|
|
oldConsole.log(arg);
|
|
|
|
};
|
2020-06-21 21:41:30 +00:00
|
|
|
|
|
|
|
oldConsole.error = console.error;
|
|
|
|
console.error = function (arg) {
|
|
|
|
oldConsole.error(arg);
|
2024-02-10 07:33:59 +00:00
|
|
|
};
|