Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
b8ba1c561a | |||
b184661da0 | |||
5bcc24933f | |||
5dbd3aa87a |
|
@ -277,6 +277,15 @@ async def add_message(data: Dict[str, Any]):
|
|||
await asyncio.sleep(random.random() * 2)
|
||||
await sio.emit('sendMessage', message.to_json())
|
||||
elif data['message']['content'] == '!!jrrp':
|
||||
examSet = False
|
||||
if examSet == True:
|
||||
print('examSet参数被设定,替换人品值')
|
||||
message = Message(content=f'{sender_name} 今日人品值为 100\n为了让你安心备考,加油考试,今天你的人品值是100!',
|
||||
reply_to=reply,
|
||||
room_id=room_id)
|
||||
await asyncio.sleep(0.5)
|
||||
await sio.emit('sendMessage', message.to_json())
|
||||
else:
|
||||
randomer = random.Random(f'{sender_id}-{data["message"]["date"]}-jrrp-v2')
|
||||
result = randomer.randint(0, 50) + randomer.randint(0, 50)
|
||||
print(f'{sender_name} 今日人品值为 {result}')
|
||||
|
|
Loading…
Reference in New Issue
Block a user