From a6e3b05c8e554a3ef59325950b3851b1f44732f8 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Tue, 11 Aug 2015 14:35:12 +0200 Subject: [PATCH] Rotondo --- royalbot.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/royalbot.py b/royalbot.py index 67bd7df4..38102c63 100644 --- a/royalbot.py +++ b/royalbot.py @@ -2,7 +2,6 @@ import requests #Modulo per fare richieste su HTTP import time #Modulo per mettere in pausa il programma -import math #Matematica. u_u #Ultimo messaggio mandato dal bot. lastmsg = "" @@ -83,6 +82,10 @@ def sendMessage(content, to, da): #Manda il messaggio r = requests.get("https://api.telegram.org/bot" + token + "/sendMessage", params=parametri) +#Royalbot sta scrivendo... +def setTypeStatus(): + + def getSteamStatus(steamid): #Parametri della richiesta parametri = { @@ -184,9 +187,9 @@ while(True): #Trova l'username della persona. name = osu[0]['username'] #Trova i pp in ogni modalità - osupp = math.floor(float(osu[0]['pp_raw'])) - taikopp = math.floor(float(taiko[0]['pp_raw'])) - ctbpp = math.floor(float(ctb[0]['pp_raw'])) - osumaniapp = math.floor(float(osumania[0]['pp_raw'])) + osupp = float(osu[0]['pp_raw']) + taikopp = float(taiko[0]['pp_raw']) + ctbpp = float(ctb[0]['pp_raw']) + osumaniapp = float(osumania[0]['pp_raw']) #Manda il messaggio - sendMessage(name + " ha:" + unichr(10) + str(osupp) + "pp su Osu!" + unichr(10) + str(taikopp) + "pp su Taiko" + unichr(10) + str(ctbpp) + "pp su Catch the Beat" + unichr(10) + str(osumaniapp) + "pp su Osu!mania", msg['chat']['id'], msg['from']['id']) \ No newline at end of file + sendMessage(name + " ha:" + unichr(10) + str(round(osupp, 0)) + "pp su Osu!" + unichr(10) + str(round(taikopp)) + "pp su Taiko" + unichr(10) + str(round(ctbpp)) + "pp su Catch the Beat" + unichr(10) + str(round(osumaniapp)) + "pp su Osu!mania", msg['chat']['id'], msg['from']['id']) \ No newline at end of file