1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-27 13:34:28 +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) telegram.sendmessage("Ombromanto è @Dailir!", sentin, source)
def playing(): def steamplayers():
print("@" + username + ": /playing") print("@" + username + ": /steamplayers")
# Informa Telegram che il messaggio è stato ricevuto e visualizza Royal Bot sta scrivendo. # Informa Telegram che il messaggio è stato ricevuto e visualizza Royal Bot sta scrivendo.
telegram.sendchataction(sentin) telegram.sendchataction(sentin)
cmd = text.split(" ") cmd = text.split(" ")
@ -75,9 +75,10 @@ def playing():
if n is None: if n is None:
telegram.sendmessage(chr(9888) + " L'app specificata non esiste!", sentin, source) telegram.sendmessage(chr(9888) + " L'app specificata non esiste!", sentin, source)
else: else:
telegram.sendmessage( name = steam.getschemaforgame(cmd[1])['game']['gameName']
'In questo momento, ' + str(n) + ' persone stanno giocando a [' + cmd[1] + telegram.sendmessage("In questo momento, *{n}* persone stanno giocando a "
'](https://steamdb.info/app/' + cmd[1] + '/graphs/)', sentin, source) "[{name}](https://steamdb.info/app/{id}/graphs/)."
.format(n=str(n), name=name, id=cmd[1]), sentin, source)
else: else:
telegram.sendmessage(chr(9888) + ' Non hai specificato un AppID!\n' telegram.sendmessage(chr(9888) + ' Non hai specificato un AppID!\n'
'La sintassi corretta è /playing <AppID>.', sentin, source) 'La sintassi corretta è /playing <AppID>.', sentin, source)