├── .gitignore ├── Events ├── Client │ ├── disconnect.js │ ├── error.js │ ├── guildCreate.js │ ├── guildDelete.js │ ├── rateLimit.js │ ├── ready.js │ ├── reconnecting.js │ ├── shardDisconnect.js │ ├── shardError.js │ ├── shardReady.js │ ├── shardReconnected.js │ ├── shardResume.js │ └── warn.js └── Guild │ └── interactionCreate.js ├── Examples └── command.js ├── Handler ├── Antinuke.js ├── Command.js ├── Database.js ├── Database │ ├── Connect.js │ └── Premium.js ├── Events.js └── errLogger.js ├── LICENSE ├── Models ├── Antinuke.js ├── Premium.js └── Redeem.js ├── Readme.md ├── Settings ├── config.js └── emojis.js ├── bot.js ├── bun.lockb ├── commands ├── Antinuke │ ├── Disable.js │ ├── Enable.js │ ├── LogChannel.js │ ├── Settings.js │ ├── Whitelist Add.js │ ├── Whitelist Owner.js │ ├── Whitelist Remove.js │ └── Whitelist show.js ├── Premium │ ├── generate.js │ ├── redeem.js │ └── remove.js └── Utility │ ├── help.js │ └── ping.js ├── deploySlash.js ├── example.env ├── index.js ├── package.json └── shards.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Events/Client/disconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Events/Client/disconnect.js -------------------------------------------------------------------------------- /Events/Client/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Events/Client/error.js -------------------------------------------------------------------------------- /Events/Client/guildCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Events/Client/guildCreate.js -------------------------------------------------------------------------------- /Events/Client/guildDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Events/Client/guildDelete.js -------------------------------------------------------------------------------- /Events/Client/rateLimit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Events/Client/rateLimit.js -------------------------------------------------------------------------------- /Events/Client/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Events/Client/ready.js -------------------------------------------------------------------------------- /Events/Client/reconnecting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Events/Client/reconnecting.js -------------------------------------------------------------------------------- /Events/Client/shardDisconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Events/Client/shardDisconnect.js -------------------------------------------------------------------------------- /Events/Client/shardError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Events/Client/shardError.js -------------------------------------------------------------------------------- /Events/Client/shardReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Events/Client/shardReady.js -------------------------------------------------------------------------------- /Events/Client/shardReconnected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Events/Client/shardReconnected.js -------------------------------------------------------------------------------- /Events/Client/shardResume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Events/Client/shardResume.js -------------------------------------------------------------------------------- /Events/Client/warn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Events/Client/warn.js -------------------------------------------------------------------------------- /Events/Guild/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Events/Guild/interactionCreate.js -------------------------------------------------------------------------------- /Examples/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Examples/command.js -------------------------------------------------------------------------------- /Handler/Antinuke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Handler/Antinuke.js -------------------------------------------------------------------------------- /Handler/Command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Handler/Command.js -------------------------------------------------------------------------------- /Handler/Database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Handler/Database.js -------------------------------------------------------------------------------- /Handler/Database/Connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Handler/Database/Connect.js -------------------------------------------------------------------------------- /Handler/Database/Premium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Handler/Database/Premium.js -------------------------------------------------------------------------------- /Handler/Events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Handler/Events.js -------------------------------------------------------------------------------- /Handler/errLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Handler/errLogger.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Models/Antinuke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Models/Antinuke.js -------------------------------------------------------------------------------- /Models/Premium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Models/Premium.js -------------------------------------------------------------------------------- /Models/Redeem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Models/Redeem.js -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Readme.md -------------------------------------------------------------------------------- /Settings/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Settings/config.js -------------------------------------------------------------------------------- /Settings/emojis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/Settings/emojis.js -------------------------------------------------------------------------------- /bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/bot.js -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/bun.lockb -------------------------------------------------------------------------------- /commands/Antinuke/Disable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/commands/Antinuke/Disable.js -------------------------------------------------------------------------------- /commands/Antinuke/Enable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/commands/Antinuke/Enable.js -------------------------------------------------------------------------------- /commands/Antinuke/LogChannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/commands/Antinuke/LogChannel.js -------------------------------------------------------------------------------- /commands/Antinuke/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/commands/Antinuke/Settings.js -------------------------------------------------------------------------------- /commands/Antinuke/Whitelist Add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/commands/Antinuke/Whitelist Add.js -------------------------------------------------------------------------------- /commands/Antinuke/Whitelist Owner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/commands/Antinuke/Whitelist Owner.js -------------------------------------------------------------------------------- /commands/Antinuke/Whitelist Remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/commands/Antinuke/Whitelist Remove.js -------------------------------------------------------------------------------- /commands/Antinuke/Whitelist show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/commands/Antinuke/Whitelist show.js -------------------------------------------------------------------------------- /commands/Premium/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/commands/Premium/generate.js -------------------------------------------------------------------------------- /commands/Premium/redeem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/commands/Premium/redeem.js -------------------------------------------------------------------------------- /commands/Premium/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/commands/Premium/remove.js -------------------------------------------------------------------------------- /commands/Utility/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/commands/Utility/help.js -------------------------------------------------------------------------------- /commands/Utility/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/commands/Utility/ping.js -------------------------------------------------------------------------------- /deploySlash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/deploySlash.js -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/example.env -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/package.json -------------------------------------------------------------------------------- /shards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archayu/Antinuke-bot/HEAD/shards.js --------------------------------------------------------------------------------