From 1cc8ac12c6b160ec2673a722d10779c2e5fdb9eb Mon Sep 17 00:00:00 2001 From: ayntee Date: Tue, 3 Nov 2020 21:33:26 -0800 Subject: [PATCH] Revert "Update README.md" This reverts commit 81acfed1ce84d53d3a5e9b15b49e9c2540958618. --- README.md | 38 ++++++++++++++++++++++++++++++++------ 1 file changed, 32 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 77af7bf20..d3f46b134 100644 --- a/README.md +++ b/README.md @@ -13,13 +13,39 @@ Don't worry a lot of developers start out coding their first projects as a Discord bot (I did 😉) and it is not so easy to do so. Discordeno is built considering all the issues wit pre-existing libraries, such as discord.js, and issues that I had when I first started out coding bots. -If you are a beginner developer, you may check out these awesome official and unofficial boilerplates: +If you are a beginner developer, please use this official boilerplate: [GitHub](https://github.com/Skillz4Killz/Discordeno-bot-template) but there will be more listed on the website. It is a beautiful website indeed! Check it out! -- Official Discordeno Boilerplate - - [GitHub](https://github.com/Skillz4Killz/Discordeno-bot-template) - - [Features](https://github.com/Skillz4Killz/Discordeno-bot-template#features) - -If you do not wish to use a boilerplate, you may continue reading. +**Modular commands, arguments, events, inhibitors, monitors, tasks.** + +- Clean and powerful commands system + - Powerful argument handling including validating, parsing and modifications. + - Easily create custom arguments for your specific needs. + - Command aliases. + - Cooldowns and allowed uses before cooldown triggers. + - Author and bot permission checks in server AND in channel! +- Clean and powerful events system + - Simple functions that are called when an event occurs. + - Easily reloadable! + - No possible memory leaks due to incorrect EventEmitter usage! + - Useful events available to help debug! +- Clean and powerful inhibitors system + - Stops a command from running if a requirement fails. + - Easily add custom inhibitors! +- Clean and powerful monitors system. + - Runs a function on every message sent. Useful for stuff like auto-moderation or tags. + - Easily ignore bots, users, edits, dms. + - Powerful permission checks. +- Clean and powerful tasks system. + - Runs a function at a certain interval. Useful for things like unmute and updating bot lists etc. + - Can be used for cache sweeping to keep your cache optimized for exactly what you want. + - Botlists code already made for most botlists. Just add your api tokens for each site and magic! +- Clean and powerful languages system. + - Built in multi-lingual support. + - Uses i18next, one of the best localization tools available. + - Supports nested folders to keep cleaner translation files + +- **Hot Reloadable**: Easily update your code without having to restart the bot everytime. +- **Step By Step Guide**: There is a step by step walkthrough to learn how to create Discord bots with Discordeno on our website! ### Advanced Developers