質問編集履歴
2
誤字の修正と追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -42,9 +42,9 @@
|
|
42
42
|
|
43
43
|
await dm.send("お知らせ")
|
44
44
|
|
45
|
+
client.run(TOKEN)
|
46
|
+
|
45
47
|
```
|
46
|
-
|
47
|
-
client.run(TOKEN)
|
48
48
|
|
49
49
|
|
50
50
|
|
@@ -57,3 +57,11 @@
|
|
57
57
|
Python 3.7.6
|
58
58
|
|
59
59
|
discord.py 1.3.3
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
追記
|
64
|
+
|
65
|
+
プログラミング初心者でどうすればいいかわからず適当な質問をしてしまい申し訳ございません。
|
66
|
+
|
67
|
+
以降気を付けて質問いたします
|
1
コードの書き込み
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,50 @@
|
|
1
1
|
discord.pyでbotがサーバー内の人全員にDMを送ることってできますか?
|
2
|
+
|
3
|
+
個人にはおくれるのですが全員に送る方法がわかりません。
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
コード
|
8
|
+
|
9
|
+
```
|
10
|
+
|
11
|
+
import discord
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
TOKEN = ''
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
client = discord.Client()
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
@client.event
|
24
|
+
|
25
|
+
async def on_ready():
|
26
|
+
|
27
|
+
print('logged')
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
@client.event
|
32
|
+
|
33
|
+
async def on_message(message):
|
34
|
+
|
35
|
+
if message.author.bot:
|
36
|
+
|
37
|
+
return
|
38
|
+
|
39
|
+
if message.content == "DM":
|
40
|
+
|
41
|
+
dm = await message.author.create_dm()
|
42
|
+
|
43
|
+
await dm.send("お知らせ")
|
44
|
+
|
45
|
+
```
|
46
|
+
|
47
|
+
client.run(TOKEN)
|
2
48
|
|
3
49
|
|
4
50
|
|