28 lines
938 B
Python
28 lines
938 B
Python
|
api_id = 123456
|
||
|
api_hash = 'ffffffffffffffffffffffffffffff'
|
||
|
PHONE = '+10001000000'
|
||
|
session_name = 'session1'
|
||
|
|
||
|
unobot_username = 'unobot'
|
||
|
# 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 = False
|
||
|
|
||
|
game_autostart = False
|
||
|
# if game_autostart is True, the following fields are needed
|
||
|
# can also be a link
|
||
|
unogroup_chatname = None
|
||
|
#unogroup_chatname = 'https://t.me/xxxx'
|
||
|
|
||
|
# %username% %firstname% is available
|
||
|
game_consts = {
|
||
|
'create' : 'Created a new game!', # do not enable translation!!! anyone who has choosed a different language will be ignored
|
||
|
#'create': 'Created a new game!|on_game_created', # this is defined for @unounofficialbot, a workaround for the problem above
|
||
|
'end' : 'Game ended',
|
||
|
'start' : 'First player:',
|
||
|
'win' : '%firstname% won!',
|
||
|
'myturn' : '(@%username%)'
|
||
|
}
|