mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-27 21:44:21 +00:00
Codifica
This commit is contained in:
parent
d9a19e82f6
commit
24b6829fa7
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
# -*- coding: latin-1 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
import requests #Modulo per fare richieste su HTTP
|
import requests #Modulo per fare richieste su HTTP
|
||||||
import time #Modulo per mettere in pausa il programma
|
import time #Modulo per mettere in pausa il programma
|
||||||
|
@ -83,9 +83,9 @@ while(True):
|
||||||
sendMessage("⚠️ Non hai specificato uno steamid!", msg['chat']['id'])
|
sendMessage("⚠️ Non hai specificato uno steamid!", msg['chat']['id'])
|
||||||
else:
|
else:
|
||||||
#Controlla se la selezione è un tag di telegram.
|
#Controlla se la selezione è un tag di telegram.
|
||||||
if(msg['text'][7:] = "@Steffo"):
|
if(msg['text'][7:] == "@Steffo"):
|
||||||
selezione = 76561198034314260
|
selezione = 76561198034314260
|
||||||
elif(msg['text'][7:] = "@FrankFrankFrank"):
|
elif(msg['text'][7:] == "@FrankFrankFrank"):
|
||||||
selezione = 76561198071099951
|
selezione = 76561198071099951
|
||||||
steam = getSteamStatus(selezione)
|
steam = getSteamStatus(selezione)
|
||||||
if(steam['response']['players']):
|
if(steam['response']['players']):
|
||||||
|
|
Loading…
Reference in a new issue