123456789101112131415161718192021222324252627 |
- DATABASE_FILE = "data/Account.db"
- SESSIONS_FOLDER = 'sessions'
- ADMINS = [] # list of admins. Use @.. here, but this feature is not working well yet
- LTC_BOT_NAME = "LTC Click Bot"
- AD_MESSAGE = "Press the \"Visit website\" button to earn LTC."
- BOT_MESSAGE = "Press the \"Message bot\""
- CHANNEL_MESSAGE = "Press the \"Go to channel\""
- GROUP_MESSAGE = "Press the \"Go to group\""
- ACTIVATE_SENDING_MESSAGE = "🖥 Visit sites"
- ACTIVATE_BOTS_MESSAGE = "/bots"
- ACTIVATE_GROUPS_MESSAGE = "/join"
- MAX_FAILURES = 3
- DELAY_BETWEEN_SESSIONS = (30, 60)
- STANDART_DELAY = 45
- # for console
- SEND_NOTIFICATIONS = True
- SEND_ALERTS = True
- SEND_MESSAGES = True
- DEBUG = False
- # for proxy
- USE_PROXY = False
- # os specified
- SEP = '/'
|