11# Discord.js-Advanced-Command-Handler
22
3- It is a simple event and command handler for Discord.js V13 .
3+ It is a simple event and command handler for Discord.js V14 .
44
5- | Version | Custom Server Prefix | Download |
6- | -| -| -|
7- | 1.0.0 | ❌ | [ ![ Download] ( https://img.shields.io/badge/Download-v1.0.0-blue?style=flat-square )] ( https://github.com/MastiderMast/Discord.js-Advanced-Command-Handler/releases/tag/1.0.0 ) |
8- | 1.1.1 | ❌ | [ ![ Download] ( https://img.shields.io/badge/Download-v1.1.1-blue?style=flat-square )] ( https://github.com/MastiderMast/Discord.js-Advanced-Command-Handler/releases/tag/1.1.1 ) |
9- | 1.2.0 | ✅ | [ ![ Download] ( https://img.shields.io/badge/Download-v1.2.0-blue?style=flat-square )] ( https://github.com/MastiderMast/Discord.js-Advanced-Command-Handler/releases/tag/1.2.0 ) |
5+ [ ![ Download] ( https://img.shields.io/badge/Download-v1.3.0-blue?style=flat-square )] ( https://github.com/MastiderMast/Discord.js-Advanced-Command-Handler/releases/tag/1.3.0 )
106
117## Prerequisites
1281 . MySQL database is required!
13- 2 . Node.js 16.6 .0 or newer is required.
9+ 2 . Node.js v18.7 .0 or newer is required.
1410
1511## Installation
16121 . run this SQL create code on your database:
1713```
1814CREATE TABLE `guilds` (
19- `id` INT(10) UNSIGNED ZEROFILL NOT NULL AUTO_INCREMENT,
15+ `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
2016 `guildid` VARCHAR(50) NULL DEFAULT '0' COLLATE 'utf8mb4_0900_ai_ci',
2117 `prefix` VARCHAR(50) NULL DEFAULT '!' COLLATE 'utf8mb4_0900_ai_ci',
2218 PRIMARY KEY (`id`) USING BTREE,
@@ -29,6 +25,4 @@ ENGINE=InnoDB
29252 . Update your token and MySQL connection information in the config.
30263 . Run the following command to install the package: ` npm install `
31274 . Rename the ` config.json.TEMPLATE ` to ` config.json `
32- 5 . Run the bot with the following command: ` npm start ` or ` node . `
33- ### Credits
34- [ I used his good code as a basis] ( https://github.com/Ferotiq/Discord.JS-13-Tutorial ) .
28+ 5 . Run the bot with the following command: ` npm start ` or ` node . `
0 commit comments