This commit is contained in:
xtaodada 2022-06-04 14:11:59 +08:00
parent 14e99caa2d
commit ba5cbfcc68
Signed by: xtaodada
GPG Key ID: 4CBB3F4FA8C85659
2 changed files with 11 additions and 4 deletions

View File

@ -9,9 +9,13 @@ from ci import app, me
async def bind_command(_: Client, message: Message):
if len(message.command) == 1:
if check_bind(message.from_user.id):
data = Player(get_bind_uid(message.from_user.id))
uid = get_bind_uid(message.from_user.id)
if len(message.command) == 1:
if message.command[1].isnumeric():
uid = message.command[1]
data = Player(uid)
data.restore()
return await message.reply(f"您绑定的游戏 uid 为:{get_bind_uid(message.from_user.id)}\n\n"
return await message.reply(f"游戏 uid 为 {uid} 的角色缓存有:\n\n"
f"{data.gen_all_char()}", quote=True)
else:
return await message.reply(f"请使用 <code>/bind [uid]</code> 绑定游戏 uid", quote=True)
@ -22,5 +26,5 @@ async def bind_command(_: Client, message: Message):
return await message.reply("uid 非数字", quote=True)
uid = message.command[1]
set_bind(message.from_user.id, uid)
msg = await message.reply(f"绑定成功,您绑定的游戏 uid 为:{uid}\n\n"
f"请将角色放入展柜,开启显示详细信息后,使用 /refresh 刷新数据。", quote=True)
await message.reply(f"绑定成功,您绑定的游戏 uid 为:{uid}\n\n"
f"请将角色放入展柜,开启显示详细信息后,使用 /refresh 刷新数据。", quote=True)

View File

@ -10,6 +10,9 @@ async def refresh_command(_: Client, message: Message):
if not check_bind(message.from_user.id):
return await message.reply(f"请使用 <code>/bind [uid]</code> 绑定游戏 uid", quote=True)
uid = get_bind_uid(message.from_user.id)
if len(message.command) == 1:
if message.command[1].isnumeric():
uid = message.command[1]
msg = await message.reply(f"正在刷新数据,请稍等。。。", quote=True)
text = await refresh_player(uid)
await msg.edit(text)