1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
This commit is contained in:
Steffo 2015-08-11 00:17:23 +02:00
parent 9024cf7a38
commit 7572e3c5fc

View file

@ -93,9 +93,9 @@ def getSteamStatus(steamid):
return r
#Caricamento delle API Keys
token = readFile(telegramapi.txt)
steamtoken = readFile(steamapi.txt)
osutoken = readFile(osuapi.txt)
token = readFile('telegramapi.txt')
steamtoken = readFile('steamapi.txt')
osutoken = readFile('osuapi.txt')
#Il loop del bot
while(True):
@ -116,8 +116,6 @@ while(True):
if(msg['text'] == "/steam"):
sendMessage(unichr(9888) + " Non hai specificato uno SteamID o un username!", msg['chat']['id'], msg['from']['id'])
else:
#Elenco degli steamid e degli username di telegram.
global steamids
#Controlla se la selezione è un username di telegram.
if(msg['text'][7:] in steamids ):
selezione = steamids[msg['text'][7:]]