-
Notifications
You must be signed in to change notification settings - Fork 1
/
setoriBOT.py
120 lines (84 loc) · 3.52 KB
/
setoriBOT.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#coding:utf-8
# インストールした discord.py を読み込む
import discord
import unicodedata
# 接続に必要なオブジェクトを生成
client = discord.Client()
num=0
list=[]
# 起動時に動作する処理
@client.event
async def on_ready():# 起動したらターミナルにログイン通知が表示される
print('Logged in as')
print(client.user.name)
print(client.user.id)
print('ログインしました')
# メッセージ受信時に動作する処理
@client.event
async def on_message(message):
global list
global num
if message.content.startswith('$h'):
await message.channel.send('$をつけてから\nin 予約をする\nout 次の人に順番を回す\nlist 予約を確認する\n以上でよろしいですかにゃ?')
#リストに追加
elif message.content.startswith('$in'):
await message.channel.send('了解ですにゃ['+message.author.name+"]")
temp = message.author.name
list.append(temp)
print (list)
##print (temp)
num+=1
#リストから削除
elif message.content.startswith('$out'):
if num > 0:
list.pop(0)
print (list)
num-=1
await message.channel.send('OK、お疲れ様...にゃ...')
else:
await message.channel.send('誰もいないのに何を言ってるにゃ...')
#リスト出力
elif message.content.startswith('$list'):
global string_list
global snam
string_list=[" " for i in range(0,6)]
snam=0
for i in range(0,min(num,6)):
snam=1
string_list[i]="now -[ " +list[i]+"]"
"""
if num > 0:
sa="now -[ " +list[0]+"]"
snam=1
if num > 1:
sb="1 -[ " +list[1]+"]"
snam=1
if num > 2:
sc="2 -[ " +list[2]+"]"
snam=1
if num > 3:
sd="3 -[ " +list[3]+"]"
snam=1
if num > 4:
se="4 -[ " +list[4]+"]"
snam=1
if num > 5:
sf="5 -[ " +list[5]+"]"
snam=1
"""
if snam == 1:
s = "\n".join(string_list)
await message.channel.send(s)
print ("Export")
else:
print ("no_date")
snam=0
await message.channel.send('誰もいないのでリストが作成できないですにゃ...')
elif message.content.startswith('かわいい'):
await message.channel.send('何を言ってるんですか?\nそんなこと無いですにゃ')
elif message.content.startswith('オルガ'):
await message.channel.send('止まるんじゃねぇぞ… \n \n \n n\n _H\n 巛 ク ノレzz\n F| 幺 ミwッミ\n || ヽレvvイ\n |  ̄⌒\二ヽ_\n  ̄ ̄Y ミ /|\n | | ||\n / | ||\n / | L|\n \__/|_/(ヽ\n | |/ぐ)\n | ハ ∧\≫\n | / V∧\n | | V|')
elif message.content.startswith('カカポ'):
await message.channel.send('https://forest.watch.impress.co.jp/img/wf/docs/1251/932/60fpsparrot.gif')
# Botの起動とDiscordサーバーへの接続
client.run('')