mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
Reso più chiaro il codice di /osu 1
This commit is contained in:
parent
40f012dd9d
commit
46aaabd71e
1 changed files with 20 additions and 13 deletions
33
bot.py
33
bot.py
|
@ -312,19 +312,26 @@ while True:
|
||||||
elif mode == 1:
|
elif mode == 1:
|
||||||
# Visualizza le informazioni relative alla modalità osu!taiko
|
# Visualizza le informazioni relative alla modalità osu!taiko
|
||||||
telegram.sendmessage("*osu!taiko*\n"
|
telegram.sendmessage("*osu!taiko*\n"
|
||||||
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
"[Beatmap {0}](https://osu.ppy.sh/b/{0})\n"
|
||||||
'beatmap_id'] +
|
"*{1}*\n"
|
||||||
")\n*" + r['rank'] + "*\n" + mods +
|
"{2}\n"
|
||||||
"\n*Punti*: " + r['score'] + "\n"
|
"*Punti*: {3}\n"
|
||||||
"*Combo* x" + r['maxcombo'] + "\n"
|
"*Combo* x{4}\n"
|
||||||
"*Great*: " +
|
"*Great*: {5}\n"
|
||||||
r['count300'] + "\n"
|
"*Good*: {6}\n"
|
||||||
"*Good*: " + r['count100'] + "\n"
|
"_Large_ *Great*: {7}\n"
|
||||||
"_Large_ *Great*: " + r[
|
"_Large_ *Good*: {8}\n"
|
||||||
'countkatu'] + "\n"
|
"*Miss*: {9}"
|
||||||
"_Large_ *Good*: " + r['countgeki'] + "\n"
|
.format(r['beatmap_id'],
|
||||||
"*Bad*: " + r[
|
r['rank'],
|
||||||
'countmiss'], sentin, source)
|
mods,
|
||||||
|
r['score'],
|
||||||
|
r['maxcombo'],
|
||||||
|
r['count300'],
|
||||||
|
r['count100'],
|
||||||
|
r['countkatu'],
|
||||||
|
r['countgeki'],
|
||||||
|
r['countmiss']), sentin, source)
|
||||||
elif mode == 2:
|
elif mode == 2:
|
||||||
# Visualizza le informazioni relative alla modalità osu!catch
|
# Visualizza le informazioni relative alla modalità osu!catch
|
||||||
telegram.sendmessage("*osu!catch*\n"
|
telegram.sendmessage("*osu!catch*\n"
|
||||||
|
|
Loading…
Reference in a new issue