1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

Aggiunto finalmente il nome a /steamplayers

This commit is contained in:
Steffo 2016-09-21 15:56:39 +02:00
parent 08b3dd7d79
commit 157c017471

11
bot.py
View file

@ -63,8 +63,8 @@ def ombromanto():
telegram.sendmessage("Ombromanto è @Dailir!", sentin, source)
def playing():
print("@" + username + ": /playing")
def steamplayers():
print("@" + username + ": /steamplayers")
# Informa Telegram che il messaggio è stato ricevuto e visualizza Royal Bot sta scrivendo.
telegram.sendchataction(sentin)
cmd = text.split(" ")
@ -75,9 +75,10 @@ def playing():
if n is None:
telegram.sendmessage(chr(9888) + " L'app specificata non esiste!", sentin, source)
else:
telegram.sendmessage(
'In questo momento, ' + str(n) + ' persone stanno giocando a [' + cmd[1] +
'](https://steamdb.info/app/' + cmd[1] + '/graphs/)', sentin, source)
name = steam.getschemaforgame(cmd[1])['game']['gameName']
telegram.sendmessage("In questo momento, *{n}* persone stanno giocando a "
"[{name}](https://steamdb.info/app/{id}/graphs/)."
.format(n=str(n), name=name, id=cmd[1]), sentin, source)
else:
telegram.sendmessage(chr(9888) + ' Non hai specificato un AppID!\n'
'La sintassi corretta è /playing <AppID>.', sentin, source)