23 lines
782 B
Python
23 lines
782 B
Python
api_id = 50322
|
|
api_hash = '9ff1a639196c0779c86dd661af8522ba'
|
|
#PHONE = '+10000000000'
|
|
PHONE = lambda: input('Please enter your phone: ')
|
|
session_name = 'session'
|
|
|
|
unobot_usernames = ['unobot', 'ffee1822_bot']
|
|
unobot_username = unobot_usernames[-1]
|
|
# should be a int or None
|
|
default_delay = None
|
|
# print all of the bot's cards
|
|
print_cards = True
|
|
# if true, the bot will not react to any command-like things
|
|
disable_all_commands = True
|
|
|
|
# {username} {firstname} is available
|
|
game_consts = {
|
|
'create' : 'Created a new game!|创建新游戏成功!|已經開始咗新一盤!|已開始新的遊戲!|Novo jogo criado!', #en_US, zh_CN, zh_HK, zh_TW, pt_BR
|
|
'end' : 'Game ended',
|
|
'start' : 'First player:',
|
|
'win' : '{firstname} won!',
|
|
'myturn' : '(@{username})'
|
|
}
|