├── Global ├── Assets │ └── Fonts │ │ ├── AbyssinicaSIL-Regular.ttf │ │ ├── Helvetica.ttf │ │ ├── HelveticaBold.ttf │ │ ├── KeepCalm-Medium.ttf │ │ ├── LuckiestGuy-Regular.ttf │ │ ├── Manrope-Bold.ttf │ │ ├── Manrope-Regular.ttf │ │ ├── NotoEmoji-Regular.ttf │ │ ├── Poppins-Bold.ttf │ │ ├── Poppins-Regular.ttf │ │ ├── Roboto.ttf │ │ ├── SketchMatch.ttf │ │ └── theboldfont.ttf ├── Base │ ├── Client.js │ └── Examples │ │ ├── Command.js │ │ ├── Context.js │ │ └── Event.js ├── Database │ ├── Giveaways.json │ └── Servers.json ├── Handlers │ ├── AntiCrash.js │ ├── Commands.js │ ├── FileHandler.js │ ├── FontsHandler.js │ ├── Language.js │ ├── Variables.js │ └── index.js ├── Helpers │ ├── Extenders │ │ ├── Array.js │ │ ├── Channel.js │ │ ├── Client.js │ │ ├── Guild.js │ │ ├── Interaction.js │ │ ├── Message.js │ │ ├── User.js │ │ └── index.js │ ├── Format.js │ ├── Link.js │ ├── Logger.js │ ├── Presence.js │ ├── Time.js │ ├── Validator.js │ └── index.js ├── Languages │ ├── en-US │ │ ├── misc.json │ │ ├── permissions.json │ │ └── time.json │ └── language-meta.json └── Settings │ ├── Config.js │ ├── Emoji.json │ └── Models │ ├── GuildSchema.js │ └── index.js ├── LICENSE ├── Package.json ├── Readme.md ├── Source ├── Commands │ ├── Admin │ │ ├── Language.js │ │ └── Prefix.js │ ├── Giveaway │ │ ├── Giveaway.js │ │ └── Subcommand │ │ │ ├── Edit.js │ │ │ ├── End.js │ │ │ ├── List.js │ │ │ ├── Pause.js │ │ │ ├── Reroll.js │ │ │ ├── Resume.js │ │ │ └── Start.js │ ├── Root │ │ ├── Eval.js │ │ ├── Exec.js │ │ ├── Leave.js │ │ ├── News.js │ │ ├── Portal.js │ │ └── Servers.js │ └── Utility │ │ ├── Bug.js │ │ └── Feedback.js ├── Contexts │ ├── Avatar.js │ └── Banner.js ├── Events │ ├── Client │ │ ├── Debug.js │ │ ├── Error.js │ │ └── Ready.js │ ├── Guild │ │ ├── Create.js │ │ └── Delete.js │ ├── Interaction │ │ ├── Create.js │ │ └── Custom │ │ │ ├── Button.js │ │ │ ├── Menu.js │ │ │ └── index.js │ └── Message │ │ ├── Create.js │ │ └── Custom │ │ ├── Mention.js │ │ └── index.js ├── index.js └── manager.js └── nodemon.json /Global/Assets/Fonts/AbyssinicaSIL-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Assets/Fonts/AbyssinicaSIL-Regular.ttf -------------------------------------------------------------------------------- /Global/Assets/Fonts/Helvetica.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Assets/Fonts/Helvetica.ttf -------------------------------------------------------------------------------- /Global/Assets/Fonts/HelveticaBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Assets/Fonts/HelveticaBold.ttf -------------------------------------------------------------------------------- /Global/Assets/Fonts/KeepCalm-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Assets/Fonts/KeepCalm-Medium.ttf -------------------------------------------------------------------------------- /Global/Assets/Fonts/LuckiestGuy-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Assets/Fonts/LuckiestGuy-Regular.ttf -------------------------------------------------------------------------------- /Global/Assets/Fonts/Manrope-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Assets/Fonts/Manrope-Bold.ttf -------------------------------------------------------------------------------- /Global/Assets/Fonts/Manrope-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Assets/Fonts/Manrope-Regular.ttf -------------------------------------------------------------------------------- /Global/Assets/Fonts/NotoEmoji-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Assets/Fonts/NotoEmoji-Regular.ttf -------------------------------------------------------------------------------- /Global/Assets/Fonts/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Assets/Fonts/Poppins-Bold.ttf -------------------------------------------------------------------------------- /Global/Assets/Fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Assets/Fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /Global/Assets/Fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Assets/Fonts/Roboto.ttf -------------------------------------------------------------------------------- /Global/Assets/Fonts/SketchMatch.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Assets/Fonts/SketchMatch.ttf -------------------------------------------------------------------------------- /Global/Assets/Fonts/theboldfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Assets/Fonts/theboldfont.ttf -------------------------------------------------------------------------------- /Global/Base/Client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Base/Client.js -------------------------------------------------------------------------------- /Global/Base/Examples/Command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Base/Examples/Command.js -------------------------------------------------------------------------------- /Global/Base/Examples/Context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Base/Examples/Context.js -------------------------------------------------------------------------------- /Global/Base/Examples/Event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Base/Examples/Event.js -------------------------------------------------------------------------------- /Global/Database/Giveaways.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /Global/Database/Servers.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /Global/Handlers/AntiCrash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Handlers/AntiCrash.js -------------------------------------------------------------------------------- /Global/Handlers/Commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Handlers/Commands.js -------------------------------------------------------------------------------- /Global/Handlers/FileHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Handlers/FileHandler.js -------------------------------------------------------------------------------- /Global/Handlers/FontsHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Handlers/FontsHandler.js -------------------------------------------------------------------------------- /Global/Handlers/Language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Handlers/Language.js -------------------------------------------------------------------------------- /Global/Handlers/Variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Handlers/Variables.js -------------------------------------------------------------------------------- /Global/Handlers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Handlers/index.js -------------------------------------------------------------------------------- /Global/Helpers/Extenders/Array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Helpers/Extenders/Array.js -------------------------------------------------------------------------------- /Global/Helpers/Extenders/Channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Helpers/Extenders/Channel.js -------------------------------------------------------------------------------- /Global/Helpers/Extenders/Client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Helpers/Extenders/Client.js -------------------------------------------------------------------------------- /Global/Helpers/Extenders/Guild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Helpers/Extenders/Guild.js -------------------------------------------------------------------------------- /Global/Helpers/Extenders/Interaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Helpers/Extenders/Interaction.js -------------------------------------------------------------------------------- /Global/Helpers/Extenders/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Helpers/Extenders/Message.js -------------------------------------------------------------------------------- /Global/Helpers/Extenders/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Helpers/Extenders/User.js -------------------------------------------------------------------------------- /Global/Helpers/Extenders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Helpers/Extenders/index.js -------------------------------------------------------------------------------- /Global/Helpers/Format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Helpers/Format.js -------------------------------------------------------------------------------- /Global/Helpers/Link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Helpers/Link.js -------------------------------------------------------------------------------- /Global/Helpers/Logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Helpers/Logger.js -------------------------------------------------------------------------------- /Global/Helpers/Presence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Helpers/Presence.js -------------------------------------------------------------------------------- /Global/Helpers/Time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Helpers/Time.js -------------------------------------------------------------------------------- /Global/Helpers/Validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Helpers/Validator.js -------------------------------------------------------------------------------- /Global/Helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Helpers/index.js -------------------------------------------------------------------------------- /Global/Languages/en-US/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Languages/en-US/misc.json -------------------------------------------------------------------------------- /Global/Languages/en-US/permissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Languages/en-US/permissions.json -------------------------------------------------------------------------------- /Global/Languages/en-US/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Languages/en-US/time.json -------------------------------------------------------------------------------- /Global/Languages/language-meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Languages/language-meta.json -------------------------------------------------------------------------------- /Global/Settings/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Settings/Config.js -------------------------------------------------------------------------------- /Global/Settings/Emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Settings/Emoji.json -------------------------------------------------------------------------------- /Global/Settings/Models/GuildSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Settings/Models/GuildSchema.js -------------------------------------------------------------------------------- /Global/Settings/Models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Global/Settings/Models/index.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Package.json -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Readme.md -------------------------------------------------------------------------------- /Source/Commands/Admin/Language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Commands/Admin/Language.js -------------------------------------------------------------------------------- /Source/Commands/Admin/Prefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Commands/Admin/Prefix.js -------------------------------------------------------------------------------- /Source/Commands/Giveaway/Giveaway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Commands/Giveaway/Giveaway.js -------------------------------------------------------------------------------- /Source/Commands/Giveaway/Subcommand/Edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Commands/Giveaway/Subcommand/Edit.js -------------------------------------------------------------------------------- /Source/Commands/Giveaway/Subcommand/End.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Commands/Giveaway/Subcommand/End.js -------------------------------------------------------------------------------- /Source/Commands/Giveaway/Subcommand/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Commands/Giveaway/Subcommand/List.js -------------------------------------------------------------------------------- /Source/Commands/Giveaway/Subcommand/Pause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Commands/Giveaway/Subcommand/Pause.js -------------------------------------------------------------------------------- /Source/Commands/Giveaway/Subcommand/Reroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Commands/Giveaway/Subcommand/Reroll.js -------------------------------------------------------------------------------- /Source/Commands/Giveaway/Subcommand/Resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Commands/Giveaway/Subcommand/Resume.js -------------------------------------------------------------------------------- /Source/Commands/Giveaway/Subcommand/Start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Commands/Giveaway/Subcommand/Start.js -------------------------------------------------------------------------------- /Source/Commands/Root/Eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Commands/Root/Eval.js -------------------------------------------------------------------------------- /Source/Commands/Root/Exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Commands/Root/Exec.js -------------------------------------------------------------------------------- /Source/Commands/Root/Leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Commands/Root/Leave.js -------------------------------------------------------------------------------- /Source/Commands/Root/News.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Commands/Root/News.js -------------------------------------------------------------------------------- /Source/Commands/Root/Portal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Commands/Root/Portal.js -------------------------------------------------------------------------------- /Source/Commands/Root/Servers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Commands/Root/Servers.js -------------------------------------------------------------------------------- /Source/Commands/Utility/Bug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Commands/Utility/Bug.js -------------------------------------------------------------------------------- /Source/Commands/Utility/Feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Commands/Utility/Feedback.js -------------------------------------------------------------------------------- /Source/Contexts/Avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Contexts/Avatar.js -------------------------------------------------------------------------------- /Source/Contexts/Banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Contexts/Banner.js -------------------------------------------------------------------------------- /Source/Events/Client/Debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Events/Client/Debug.js -------------------------------------------------------------------------------- /Source/Events/Client/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Events/Client/Error.js -------------------------------------------------------------------------------- /Source/Events/Client/Ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Events/Client/Ready.js -------------------------------------------------------------------------------- /Source/Events/Guild/Create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Events/Guild/Create.js -------------------------------------------------------------------------------- /Source/Events/Guild/Delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Events/Guild/Delete.js -------------------------------------------------------------------------------- /Source/Events/Interaction/Create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Events/Interaction/Create.js -------------------------------------------------------------------------------- /Source/Events/Interaction/Custom/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Events/Interaction/Custom/Button.js -------------------------------------------------------------------------------- /Source/Events/Interaction/Custom/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Events/Interaction/Custom/Menu.js -------------------------------------------------------------------------------- /Source/Events/Interaction/Custom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Events/Interaction/Custom/index.js -------------------------------------------------------------------------------- /Source/Events/Message/Create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Events/Message/Create.js -------------------------------------------------------------------------------- /Source/Events/Message/Custom/Mention.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Events/Message/Custom/Mention.js -------------------------------------------------------------------------------- /Source/Events/Message/Custom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/Events/Message/Custom/index.js -------------------------------------------------------------------------------- /Source/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/index.js -------------------------------------------------------------------------------- /Source/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vante-dev/discord-js-bot/HEAD/Source/manager.js -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- 1 | { 2 | "ignore": ["*.json"] 3 | } --------------------------------------------------------------------------------