mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
c9.io > roba che abbiamo fatto a scuola
This commit is contained in:
parent
c47700e049
commit
86f6b1cca1
2 changed files with 53 additions and 40 deletions
91
bot.py
91
bot.py
|
@ -210,18 +210,31 @@ while True:
|
||||||
"[Visualizza tutte le offerte]"
|
"[Visualizza tutte le offerte]"
|
||||||
"(https://isthereanydeal.com/#/search:.;/scroll:%23gamelist).",
|
"(https://isthereanydeal.com/#/search:.;/scroll:%23gamelist).",
|
||||||
sentin, source)
|
sentin, source)
|
||||||
# elif text.startswith('/audio'):
|
elif text.startswith('/audio'):
|
||||||
# # Se qualcuno ne ha voglia, qui si potrebbe aggiungere la selezione degli audio come argomento,
|
# Se qualcuno ne ha voglia, qui si potrebbe aggiungere la selezione degli audio come argomento,
|
||||||
# # invece che fare una playlist casuale...
|
# invece che fare una playlist casuale...
|
||||||
# # Se non ci sono rage nella playlist, riempila e mescolala!
|
# Se non ci sono rage nella playlist, riempila e mescolala!
|
||||||
# if len(rage) <= 0:
|
if len(rage) <= 0:
|
||||||
# # TODO: Rimettere gli audio di /audio
|
# TODO: Rimettere gli audio di /audio
|
||||||
# rage = []
|
rage = ['BQADAgADMwIAAh8GgAFQaq1JNk1ZtwI', #ma dinuovo
|
||||||
# random.shuffle(rage)
|
'BQADAgADrAIAAh8GgAHTdcu8cG-LbAI', #sallati
|
||||||
# # Estrai un audio a caso tra quelli nella playlist e rimuovilo.
|
'BQADAgADEAIAAh8GgAE4O2578G1EagI', #giummy per sempre
|
||||||
# ragesend = rage.pop()
|
'BQADAgAD3wEAAh8GgAEUqoKiAaPP9wI', #non è wollac è gion sina
|
||||||
# print("@" + username + ": /audio")
|
'BQADAgADqwIAAh8GgAE62csQVNai8QI', #tette crystal maiden
|
||||||
# telegram.senddocument(ragesend, sentin, source)
|
'BQADAgAD6wEAAh8GgAGe6IDqRVSAhwI', #la barba che apeggia
|
||||||
|
'BQADAgAD4AEAAh8GgAFRi-UD1VvyLwI', #gion cina original
|
||||||
|
'BQADAgADEwIAAh8GgAE-iNm-4V6pZAI', #ma porco 3
|
||||||
|
'BQADAgADrgIAAh8GgAGKOIASQZevMwI', #5 anni tette grosse
|
||||||
|
'BQADAgAD5gEAAh8GgAFsphnhj_xOnAI', #infilatevi un dito nel..
|
||||||
|
'BQADAgADqAIAAh8GgAEDx7kiV1MdAwI', #ma siete nvidiosi?
|
||||||
|
'BQADAgADqQIAAh8GgAHhGzfuq1LGXAI', #mi sale il cazzo
|
||||||
|
'BQADAgADpgIAAh8GgAFoIX9f88R-vAI', #mamma di mari e le parolacce..
|
||||||
|
]
|
||||||
|
random.shuffle(rage)
|
||||||
|
# Estrai un audio a caso tra quelli nella playlist e rimuovilo.
|
||||||
|
ragesend = rage.pop()
|
||||||
|
print("@" + username + ": /audio")
|
||||||
|
telegram.senddocument(ragesend, sentin)
|
||||||
elif text.startswith('/sbam'):
|
elif text.startswith('/sbam'):
|
||||||
print("@" + username + ": /sbam")
|
print("@" + username + ": /sbam")
|
||||||
telegram.senddocument('BQADAgADBwMAAh8GgAGSsR4rwmk_LwI', sentin)
|
telegram.senddocument('BQADAgADBwMAAh8GgAGSsR4rwmk_LwI', sentin)
|
||||||
|
@ -255,59 +268,59 @@ while True:
|
||||||
mods = "*Mod:*"
|
mods = "*Mod:*"
|
||||||
# Adoro SE
|
# Adoro SE
|
||||||
# Dividi in bit l'ID delle mod selezionate
|
# Dividi in bit l'ID delle mod selezionate
|
||||||
if int(r['enabled_mods']) & 0b1:
|
if int(r['enabled_mods']) & 0x1:
|
||||||
mods += " NoFail"
|
mods += " NoFail"
|
||||||
if int(r['enabled_mods']) & 0b10:
|
if int(r['enabled_mods']) & 0x2:
|
||||||
mods += " Easy"
|
mods += " Easy"
|
||||||
if int(r['enabled_mods']) & 0b100:
|
if int(r['enabled_mods']) & 0x4:
|
||||||
mods += " NoVideo (?)"
|
mods += " NoVideo (?)"
|
||||||
if int(r['enabled_mods']) & 0b1000:
|
if int(r['enabled_mods']) & 0x8:
|
||||||
mods += " Hidden"
|
mods += " Hidden"
|
||||||
if int(r['enabled_mods']) & 0b10000:
|
if int(r['enabled_mods']) & 0x10:
|
||||||
mods += " HardRock"
|
mods += " HardRock"
|
||||||
if int(r['enabled_mods']) & 0b100000:
|
if int(r['enabled_mods']) & 0x20:
|
||||||
mods += " SuddenDeath"
|
mods += " SuddenDeath"
|
||||||
if int(r['enabled_mods']) & 0b1000000:
|
if int(r['enabled_mods']) & 0x40:
|
||||||
mods += " DoubleTime"
|
mods += " DoubleTime"
|
||||||
if int(r['enabled_mods']) & 0b10000000:
|
if int(r['enabled_mods']) & 0x80:
|
||||||
mods += " Relax"
|
mods += " Relax"
|
||||||
if int(r['enabled_mods']) & 0b100000000:
|
if int(r['enabled_mods']) & 0x100:
|
||||||
mods += " HalfTime"
|
mods += " HalfTime"
|
||||||
if int(r['enabled_mods']) & 0b1000000000:
|
if int(r['enabled_mods']) & 0x200:
|
||||||
mods += " Nightcore"
|
mods += " Nightcore"
|
||||||
if int(r['enabled_mods']) & 0b10000000000:
|
if int(r['enabled_mods']) & 0x400:
|
||||||
mods += " Flashlight"
|
mods += " Flashlight"
|
||||||
if int(r['enabled_mods']) & 0b100000000000:
|
if int(r['enabled_mods']) & 0x800:
|
||||||
mods += " Autoplay"
|
mods += " Autoplay"
|
||||||
if int(r['enabled_mods']) & 0b1000000000000:
|
if int(r['enabled_mods']) & 0x1000:
|
||||||
mods += " SpunOut"
|
mods += " SpunOut"
|
||||||
if int(r['enabled_mods']) & 0b10000000000000:
|
if int(r['enabled_mods']) & 0x2000:
|
||||||
mods += " Autopilot"
|
mods += " Autopilot"
|
||||||
if int(r['enabled_mods']) & 0b100000000000000:
|
if int(r['enabled_mods']) & 0x4000:
|
||||||
mods += " Perfect"
|
mods += " Perfect"
|
||||||
if int(r['enabled_mods']) & 0b1000000000000000:
|
if int(r['enabled_mods']) & 0x8000:
|
||||||
mods += " 4K"
|
mods += " 4K"
|
||||||
if int(r['enabled_mods']) & 0b10000000000000000:
|
if int(r['enabled_mods']) & 0x10000:
|
||||||
mods += " 5K"
|
mods += " 5K"
|
||||||
if int(r['enabled_mods']) & 0b100000000000000000:
|
if int(r['enabled_mods']) & 0x20000:
|
||||||
mods += " 6K"
|
mods += " 6K"
|
||||||
if int(r['enabled_mods']) & 0b1000000000000000000:
|
if int(r['enabled_mods']) & 0x40000:
|
||||||
mods += " 7K"
|
mods += " 7K"
|
||||||
if int(r['enabled_mods']) & 0b10000000000000000000:
|
if int(r['enabled_mods']) & 0x80000:
|
||||||
mods += " 8K"
|
mods += " 8K"
|
||||||
if int(r['enabled_mods']) & 0b100000000000000000000:
|
if int(r['enabled_mods']) & 0x100000:
|
||||||
mods += " FadeIn"
|
mods += " FadeIn"
|
||||||
if int(r['enabled_mods']) & 0b1000000000000000000000:
|
if int(r['enabled_mods']) & 0x200000:
|
||||||
mods += " Random"
|
mods += " Random"
|
||||||
if int(r['enabled_mods']) & 0b1000000000000000000000000:
|
if int(r['enabled_mods']) & 0x400000:
|
||||||
mods += " 9K"
|
mods += " 9K"
|
||||||
if int(r['enabled_mods']) & 0b10000000000000000000000000:
|
if int(r['enabled_mods']) & 0x800000:
|
||||||
mods += " 10K"
|
mods += " 10K"
|
||||||
if int(r['enabled_mods']) & 0b100000000000000000000000000:
|
if int(r['enabled_mods']) & 0x1000000:
|
||||||
mods += " 1K"
|
mods += " 1K"
|
||||||
if int(r['enabled_mods']) & 0b1000000000000000000000000000:
|
if int(r['enabled_mods']) & 0x2000000:
|
||||||
mods += " 3K"
|
mods += " 3K"
|
||||||
if int(r['enabled_mods']) & 0b10000000000000000000000000000:
|
if int(r['enabled_mods']) & 0x4000000:
|
||||||
mods += " 2K"
|
mods += " 2K"
|
||||||
mods += '\n'
|
mods += '\n'
|
||||||
else:
|
else:
|
||||||
|
|
2
steam.py
2
steam.py
|
@ -1,4 +1,4 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
import requests
|
import requests
|
||||||
import filemanager
|
import filemanager
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue