Skip to content

Commit 6c5ccbe

Browse files
committed
Update README
1 parent 1c004a9 commit 6c5ccbe

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

README.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,18 @@
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
128
1. 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
1612
1. run this SQL create code on your database:
1713
```
1814
CREATE 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
2925
2. Update your token and MySQL connection information in the config.
3026
3. Run the following command to install the package: `npm install`
3127
4. 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

Comments
 (0)