diff --git a/bot.py b/bot.py index 698af31c..0fabcfc3 100644 --- a/bot.py +++ b/bot.py @@ -82,15 +82,15 @@ def steamplayers(): telegram.sendchataction(sentin) # Se è stato specificato un AppID... if len(cmd) >= 2: - n = steam.getnumberofcurrentplayers(entry) + n = steam.getnumberofcurrentplayers(cmd[1]) # Se viene ricevuta una risposta... if n is None: telegram.sendmessage(chr(9888) + " L'app specificata non esiste!", sentin, source) else: - name = steam.getschemaforgame(entry)['game']['gameName'] + 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=entry), sentin, source) + .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 .', sentin, source) @@ -130,7 +130,7 @@ def osucmd(): mode = 0 # Prova a mandare una richiesta ai server di osu per l'ultima canzone giocata try: - r = osu.getuserrecent(entry, mode) + r = osu.getuserrecent(cmd[1], mode) # Se la funzione restituisce un errore, riferisci su Telegram l'errore e previeni il crash. except NameError: telegram.sendmessage(chr(9888) + " Errore nella richiesta ai server di Osu!", sentin, @@ -264,11 +264,11 @@ def roll(): print("@" + username + ": /roll") # Se è stato specificato un numero if len(cmd) >= 2: - if entry == "tm": + if cmd[1] == "tm": telegram.sendmessage("TM è così grassa che se la lanci rotola!", sentin, source) # Controlla che sia convertibile in un intero. try: - m = int(entry) + m = int(cmd[1]) except ValueError: telegram.sendmessage(chr(9888) + " Il numero specificato non è un intero.", sentin, source) return @@ -353,7 +353,7 @@ def online(): # Informa Telegram che il messaggio è stato ricevuto. telegram.sendchataction(sentin) if len(cmd) >= 2: - if entry.lower() == "help": + if cmd[1].lower() == "help": telegram.sendmessage(chr(128309) + " Online\n" + chr(128308) + " In gioco | Occupato\n" + chr(9899) + " Assente | Inattivo\n" + @@ -404,11 +404,10 @@ def diario(): # Aggiungi una riga al diario Royal Games print("@" + username + ": /diario ") if len(cmd) > 1: - entry = text.split(" ", 1)[1] - if entry.isprintable(): - entry = entry.replace("\n", " ") + if cmd[1].isprintable(): + cmd[1] = cmd[1].replace("\n", " ") fdiario = filemanager.readfile("diario.txt") - fdiario += str(int(time.time())) + "|" + entry + "\n" + fdiario += str(int(time.time())) + "|" + cmd[1] + "\n" filemanager.writefile("diario.txt", fdiario) telegram.sendmessage("Aggiunto al diario RYG.", sentin, source) else: @@ -450,7 +449,7 @@ def lolfree(): telegram.sendchataction(sentin) ora = time.gmtime() if len(cmd) > 1: - refresh_requested = entry.startswith("refresh") + refresh_requested = cmd[1].startswith("refresh") else: refresh_requested = False # Controlla se i dati sono già stati scaricati. @@ -549,7 +548,7 @@ def share(): d = list(steammatch.diff_games(tobematched[0], tobematched[1])) if len(d) > 0: # Prepara il messaggio - tosend += "*Giochi che ha @{primo} ma non @{secondo}:*\n".format(primo=cmd[0], secondo=entry) + tosend += "*Giochi che ha @{primo} ma non @{secondo}:*\n".format(primo=cmd[0], secondo=cmd[1]) for game in d: tosend += "- {game}\n".format(game=game) else: