1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

bugflix, ovvero netflix con il doppio di bug

This commit is contained in:
Steffo 2017-03-23 18:29:54 +01:00
parent 4dcf8d1134
commit cb4958eb71
2 changed files with 32 additions and 4 deletions

View file

@ -26,6 +26,7 @@ class User(Base):
royal = Column(Boolean, nullable=False)
telegram_id = Column(Integer, unique=True)
discord_id = Column(Integer, unique=True)
coins = Column(Integer)
def __str__(self):
return self.username
@ -42,7 +43,7 @@ def create_user(username, password, royal=False):
# Hash the password with bcrypt
hashed_password = bcrypt.hashpw(password.encode("utf8"), bcrypt.gensalt())
# Create a new user
new_member = User(username=username, password=hashed_password, royal=royal)
new_member = User(username=username, password=hashed_password, royal=royal, coins=0)
# Add the newly created member to the session
session.add(new_member)
# Commit the changes

View file

@ -29,7 +29,7 @@ async def start(bot, update, arguments):
else:
telegram_status = "🔵" if user.telegram_id is not None else ""
discord_status = "🔵" if user.discord_id is not None else ""
await update.message.reply(bot, f"Ciao!\nHai eseguito l'accesso come `{user}`.\n\n*Account collegati:*\n{telegram_status} Telegram\n{discord_status} Discord", parse_mode="Markdown")
await update.message.reply(bot, f"Ciao!\nHai eseguito l'accesso come `{user}`.\nAttualmente hai {user.coins} .\n\n*Account collegati:*\n{telegram_status} Telegram\n{discord_status} Discord", parse_mode="Markdown")
async def diario(bot, update, arguments):
@ -222,9 +222,10 @@ Sintassi: `/sync <username> <password>`"""
# Add the telegram_id to the user if it's missing
if logged_user.telegram_id is None:
logged_user.telegram_id = update.message.sent_from.user_id
logged_user.coins += 1
session.commit()
print(f"{logged_user} ha sincronizzato l'account di Telegram.")
await update.message.reply(bot, f"Sincronizzazione riuscita!\nSei loggato come `{logged_user}`.", parse_mode="Markdown")
await update.message.reply(bot, f"Sincronizzazione riuscita!\nSei loggato come `{logged_user}`.\nHai guadagnato 1 .", parse_mode="Markdown")
else:
await update.message.reply(bot, "⚠ L'account è già stato sincronizzato.", parse_mode="Markdown")
else:
@ -245,9 +246,10 @@ Sintassi: `!sync <username> <password>`"""
# Add the discord_id to the user if it's missing
if logged_user.discord_id is None:
logged_user.discord_id = int(message.author.id)
logged_user.coins += 1
session.commit()
print(f"{logged_user} ha sincronizzato l'account di Discord.")
await bot.send_message(message.channel, f"Sincronizzazione riuscita!\nSei loggato come `{logged_user}`.")
await bot.send_message(message.channel, f"Sincronizzazione riuscita!\nSei loggato come `{logged_user}`.\nHai guadagnato 1 .")
else:
await bot.send_message(message.channel, "⚠ L'account è già stato sincronizzato.")
else:
@ -352,6 +354,31 @@ Sintassi: `/cv`"""
await update.message.reply(bot, to_send, parse_mode="Markdown", disable_web_page_preview=1)
async def buy(bot, update, arguments):
"""Compra nuovi !
Sintassi: /buy"""
# TODO: finiscimi
app = random.sample(["https://play.google.com/store/apps/details?id=com.mp.HorseRide",
"https://play.google.com/store/apps/details?id=com.kick.ultimate.rooftop.police.chase",
"https://play.google.com/store/apps/details?id=com.do_apps.catalog_65",
"https://play.google.com/store/apps/details?id=com.pikpok.rua2",
"http://steffo.me/barbaxmas.htm"], 1)[0]
await update.message.reply(bot, f"*Scegli un'operazione:*\n"
f"[Acquista 1 ](https://royal.steffo.me/store/1) per € 0.99!\n"
f"[Acquista 3 ](https://royal.steffo.me/store/3) per € 1.99 (Risparmi € 0.98!)!\n"
f"[Acquista 6 ](https://royal.steffo.me/store/6) per € 2.49 (Risparmi € 3.45!)!\n"
f"[Acquista 25 ](https://royal.steffo.me/store/25) per € 4.99 (Risparmi € 19.76!)\n"
f"[Acquista 69 ](https://royal.steffo.me/store/69) per € 6.66 (Risparmi € 61.65!)\n"
f"[OFFERTA FORTUNATA SOLO PER TE! Acquista 777 ](https://royal.steffo.me/store/777) per € 17.77!\n"
f"[Ottieni 322 ](https://dotabuff.com/betting) scommettendo per la prima volta sul sito dei nostri sponsor!\n"
f"[Ottieni 104 ](https://royal.steffo.me/store/video) guardando un video sponsorizzato!\n"
f"**Ottieni 30 ** per ogni amico che inviti alla Royal Games!\n"
f"[Ottieni 1337 ]({app}) installando l'app dei nostri partner!\n"
f"**Ottieni 1 ** al giorno aggiungendo `steffo.me` alla fine del tuo username di Steam!\n\n"
f"NOTA LEGALE: @Steffo non si assume responsabilità per il contenuto delle app sponsorizzate. Fate attenzione!")
if __name__ == "__main__":
# Init Telegram bot commands
b.commands["start"] = start