Add files via upload

This commit is contained in:
S1S13AF7 2024-07-30 15:54:18 +03:00 committed by GitHub
parent 9264058093
commit c87e8aeec3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,7 +31,7 @@ cur.execute('''CREATE TABLE IF NOT EXISTS users (
reg_int INTEGER NOT NULL DEFAULT 0, reg_int INTEGER NOT NULL DEFAULT 0,
f_name VARCHAR NOT NULL DEFAULT 'хз', f_name VARCHAR NOT NULL DEFAULT 'хз',
mcoins INTEGER NOT NULL DEFAULT 1024, mcoins INTEGER NOT NULL DEFAULT 1024,
rng_kd INTEGER NOT NULL DEFAULT 0, rnd_kd INTEGER NOT NULL DEFAULT 0,
lng_code VARCHAR NOT NULL DEFAULT '' lng_code VARCHAR NOT NULL DEFAULT ''
)'''); )''');
@ -100,7 +100,7 @@ async def cmd_farm (message: types.Message):
bal = 0 bal = 0
rkd = 0 rkd = 0
try: try:
cur.execute("SELECT mcoins,rng_kd FROM users WHERE user_id = %d" % int(user_id)); cur.execute("SELECT mcoins,rnd_kd FROM users WHERE user_id = %d" % int(user_id));
rd = cur.fetchone(); rd = cur.fetchone();
if rd is None: if rd is None:
msg = "ERROR" msg = "ERROR"
@ -126,7 +126,7 @@ async def cmd_farm (message: types.Message):
msg=f"{msg}\n🤑 бл: {bal} \n⌚️ кд: {rkd} сек" msg=f"{msg}\n🤑 бл: {bal} \n⌚️ кд: {rkd} сек"
rkd+=when_int rkd+=when_int
try: try:
cur.execute("UPDATE users SET mcoins = :bal, rng_kd = :rkd WHERE user_id = :uid;", cur.execute("UPDATE users SET mcoins = :bal, rnd_kd = :rkd WHERE user_id = :uid;",
{"rkd":int(rkd),"bal":int(bal),"uid":int(user_id)}); con.commit() {"rkd":int(rkd),"bal":int(bal),"uid":int(user_id)}); con.commit()
except Exception as Err: except Exception as Err:
msg = Err msg = Err