-*- coding: utf-8 -*-
import telebot
from telebot import types
import io
word = u'1:1'
with io.open('cook.txt', encoding='utf-8') as file:
for line in file:
if word in line:
print(line, end='')
f = "1"
cookies = "0"
balance = "0"
bot = telebot.TeleBot('Мой токен')
def main():
markup = types.ReplyKeyboardMarkup(True)
key1 = types.KeyboardButton('⚒Заработать печенья ⚒')
key2 = types.KeyboardButton('💳Инвентарь💳')
markup.add(key1)
markup.add(key2)
return markup
@bot.message_handler(commands=['start'])
def start(message):
bot.send_message(message.chat.id, 'Привет это mini-dark-bot ! я создан для зароботка печенья ! удачи мой друг ', reply_markup=main())
@bot.message_handler(content_types=['text'])
def cont(message):
if message.text == '⚒Заработать печенья ⚒':
bot.send_message(message.chat.id,"+*"+ str(f)+" Печенья*!",parse_mode="Markdown")
def some_function(f, cookies):
balance = f + 1
print(cookies)
elif message.text == '💳Инвентарь💳':
bot.send_message(message.chat.id,"На вашем балансе: *"+ str(balance)+" Печенек*!",parse_mode="Markdown")
bot.polling()
global balance
Обсуждают сегодня