All Projects → RileCraft → DiscordBot-Template

RileCraft / DiscordBot-Template

Licence: MIT license
A bot template with command , event , button , selectmenus , slashcommands handler and error handlers. Made in Discord.JS V13

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to DiscordBot-Template

DiscordBot-Template
A boilerplate / template for discord.js bots with 100% coverage of Discord API, command handler, error handler based on https://discordjs.guide/
Stars: ✭ 129 (-1.53%)
Mutual labels:  discord-api, discord-js
Luki
[Deprecated] The official repository for Luki the Discord bot
Stars: ✭ 21 (-83.97%)
Mutual labels:  discord-api, discord-js
auto
A code scanner Discord bot.
Stars: ✭ 15 (-88.55%)
Mutual labels:  discord-api, discord-js
Discord-BOT-Dashboard
This version is outdated, please check out Discord BOT Dashboard v2
Stars: ✭ 32 (-75.57%)
Mutual labels:  discord-api, discord-js
Discord-Selfbot
Discord.js selfbot
Stars: ✭ 24 (-81.68%)
Mutual labels:  discord-api, discord-js
discord-message-handler
Message and command handler for discord.js bots and applications
Stars: ✭ 19 (-85.5%)
Mutual labels:  discord-api, discord-js
mass-dm-discord
A MassDM selfbot which is working in 2021. Only for educational purposes 🥱🚀
Stars: ✭ 87 (-33.59%)
Mutual labels:  discord-api, discord-js
framework
✨ A framework for creating discord bots build with discord.js. Modular | Flexible | Powerful | Development | Interactions
Stars: ✭ 41 (-68.7%)
Mutual labels:  discord-api, discord-js
delet
[DEPRECATED - see README.md] a Discord bot made using Discord.js
Stars: ✭ 46 (-64.89%)
Mutual labels:  discord-api, discord-js
myChat
MyChat es una aplicación de mensajería en tiempo real con servidores de Discord (similar a un canal de Discord).
Stars: ✭ 30 (-77.1%)
Mutual labels:  discord-api, discord-js
LenoxBot
🖥️ LenoxBot is a Discord bot that offers many cool new features to your Discord server!
Stars: ✭ 218 (+66.41%)
Mutual labels:  discord-api, discord-js
Discord-Bot-TypeScript-Template
Discord bot - A discord.js bot template written with TypeScript.
Stars: ✭ 86 (-34.35%)
Mutual labels:  discord-api, discord-js
discord-voice
⏲️ A complete framework to facilitate the tracking of user voice time using discord.js
Stars: ✭ 33 (-74.81%)
Mutual labels:  discord-api, discord-js
suggestions-bot
A Discord bot designed to build better communities by encouraging a positive and constructive relationship between community and staff.
Stars: ✭ 22 (-83.21%)
Mutual labels:  discord-api, discord-js
Discord-Rich-Presence-Party-Mode
Discord Rich Presence Tool. Party Mode | Cycle Mode integrated. The first to do it.
Stars: ✭ 18 (-86.26%)
Mutual labels:  discord-api, discord-js
Commando
[DEPRECATED] ⚫ Commando Discord bot built on discord.js-commando.
Stars: ✭ 78 (-40.46%)
Mutual labels:  discord-api, discord-js
Discord-BOT-Dashboard-V2
Discord BOT Dashboard V2 is made to make Discord BOT Development easy, designed to help create applications without writing a single line of code while using a user friendly Web-Dashboard!
Stars: ✭ 120 (-8.4%)
Mutual labels:  discord-api, discord-js
discord-rose
The simple Discord library for advanced users
Stars: ✭ 37 (-71.76%)
Mutual labels:  discord-api, discord-js
SataniaBot
The most devilish bot for Discord!
Stars: ✭ 20 (-84.73%)
Mutual labels:  discord-api, discord-js
Discord-Reposter
Bot for reposting Discord messages (work in progress)
Stars: ✭ 62 (-52.67%)
Mutual labels:  discord-api, discord-js


『 Changelog 』Breaking Changes!

  • The handler has been updated to Discord.JS 14.2.0.
  • Command options have been fully rewrited, improved, tested and can be applied to both MessageCommands and Interaction Commands.
  • The command options cooldown, requiredRoles, requiredAnyRole do not exist.
  • The file Config.js has been moved from the root directory to Src/Credentials.
  • The argument container which was passed in commands and was used to access config and Discord does not exist anymore and instead you now have to import everything manually.
  • The collection used for storing commands and events have been renamed. [ Check below for renamed versions. ]
  • These are the current Command Options that are currently avaliable:
  • allowInDms
  • allowBots
  • allClientPermissions
  • allUserPermissions
  • anyClientPermissions
  • anyUserPermissions
  • expireAfter
  • limitUses
  • onlyChannels
  • onlyGuilds
  • onlyUsers
  • ownerOnly
  • Both the MessageCreate and InteractionCreate events have been improved and are executed from their own file now instead of being dependent on loadCommandOptions.
  • The handler now contains all the basic Events, MessageCommands and Interactions examples given by default to help the user understand the format easier.
  • Significant changes have been made to SlashCommands and ContextMenus and the format now requires the command type to be specificed, you may learn the new format by seeing their example commands which are already given.
  • Interaction commands are now given their own seperate folder i.e Src/Interactions/<InteractionType> for better management.
  • The message now no longer require to be lowercase. For example before the command Eval was forced to be only !eval but now you can do !eVaL and it would be accepted.
  • bot.js now only exports client and rootPath.
  • The utility function Filer.js does not exist anymore and is replaced with the package node-recursive-directory.
  • The client has been improved to increase performance and consume much less memory.
  • Startup logging has been changed and is no longer a box as the package cli-box is no longer used.
  • Detailed format information at here

『 Documentation 』

Click me to go the official documentation site which has all the required information.

『 FAQ 』

Click here to see frequently asked questions

『 Features 』

  • Chalk Logging
  • Organized layout and easily customizable.
  • Includes MessageCommands , SelectMenus , Buttons , ContextMenus , SlashCommands , ModalForms handler.
  • Inbuilt many command options that can be applied to all types of commands. (They will not work on events.)
  • Frequent updates to stay as upto date as possible.

『 Important Notes 』

  • NodeJS V16 and above.
  • ContextMenus and SlashCommands take 5 second each command file to create and update because of Discord's Ratelimit. But the run() function is updated immediately on startup so if you only need to update existing command code then it will be done instantly so thats a nice thing :D.
  • Global commands can take upto a hour to update because that's how Discord made global commands so we cannot do anything about it.
  • These are the collections where events and commands are stored.
<Client>.messageCommands // Normal message commands collection.
<Client>.messageCommands_Aliases // Normal message commands aliases collection.
<Client>.events // Events collection.
<Client>.slashCommands // SlashCommands collection.
<Client>.contextMenus // ContextMenus collection.
<Client>.selectMenus // SelectMenus collection.
<Client>.buttonCommands // ButtonCommands collection.
<Client>.modalForms // ModalForms collection.

『 Setup / Configuration 』

  • Install the required modules using the command npm i in your console and wait for it to finish.
  • Fill all the fields in Src/Credentials/Config.js.
  • Use the command node bot.js or node . to start the bot and enjoy :D

『 Contribution 』

If you want to contribute towards this repository then follow these steps.

  • Fork this Repository.
  • Edit your fork and save the changes you want to make.
  • Open the pull request.
  • We will check out the code and if it is fine then your PR will be merged.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].