質問編集履歴
2
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
まちがえました。
|
test
CHANGED
@@ -1,61 +1 @@
|
|
1
|
-
### 前提・実現したいこと
|
2
|
-
|
3
|
-
Discord.jsでコマンドが存在しなかった時にメッセージを送りたいです。
|
4
|
-
|
5
|
-
![イメージ説明](7091e2d008f9ba5d1745479557f881b8.jpeg)
|
6
|
-
|
7
|
-
### 発生している問題・エラーメッセージ
|
8
|
-
|
9
|
-
|
1
|
+
ミス.
|
10
|
-
|
11
|
-
なし
|
12
|
-
|
13
|
-
```
|
14
|
-
|
15
|
-
###ソースコード
|
16
|
-
|
17
|
-
```
|
18
|
-
|
19
|
-
const discord = require("discord.js");
|
20
|
-
|
21
|
-
const client = new discord.Client();
|
22
|
-
|
23
|
-
const prefix = ‘.’
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
client.on('command_error', () => {
|
28
|
-
|
29
|
-
if ('error') return CommandNotFound
|
30
|
-
|
31
|
-
message.channel.send(
|
32
|
-
|
33
|
-
{embed: {
|
34
|
-
|
35
|
-
color: 0x0fc0303,
|
36
|
-
|
37
|
-
description: 'コマンドが存在しません'
|
38
|
-
|
39
|
-
}}
|
40
|
-
|
41
|
-
);
|
42
|
-
|
43
|
-
})
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
client.on("message", async message => {
|
48
|
-
|
49
|
-
if (message.content.startsWith(`${prefix}ping`)) {
|
50
|
-
|
51
|
-
message.channel.send(‘ping’)
|
52
|
-
|
53
|
-
}}
|
54
|
-
|
55
|
-
);
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
client.login(process.env.TOKEN);
|
60
|
-
|
61
|
-
```
|
1
追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Discord.jsでコマンドが存在しなかった時にメッセージを送りたいです。
|
4
4
|
|
5
|
-
|
5
|
+
![イメージ説明](7091e2d008f9ba5d1745479557f881b8.jpeg)
|
6
6
|
|
7
7
|
### 発生している問題・エラーメッセージ
|
8
8
|
|
@@ -15,6 +15,14 @@
|
|
15
15
|
###ソースコード
|
16
16
|
|
17
17
|
```
|
18
|
+
|
19
|
+
const discord = require("discord.js");
|
20
|
+
|
21
|
+
const client = new discord.Client();
|
22
|
+
|
23
|
+
const prefix = ‘.’
|
24
|
+
|
25
|
+
|
18
26
|
|
19
27
|
client.on('command_error', () => {
|
20
28
|
|
@@ -34,4 +42,20 @@
|
|
34
42
|
|
35
43
|
})
|
36
44
|
|
45
|
+
|
46
|
+
|
47
|
+
client.on("message", async message => {
|
48
|
+
|
49
|
+
if (message.content.startsWith(`${prefix}ping`)) {
|
50
|
+
|
51
|
+
message.channel.send(‘ping’)
|
52
|
+
|
53
|
+
}}
|
54
|
+
|
55
|
+
);
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
client.login(process.env.TOKEN);
|
60
|
+
|
37
61
|
```
|