Go to file
kutsaltotem 52b0d192ae fixed 2019-11-08 03:35:56 +00:00
images renaming files 2017-11-27 18:02:55 +01:00
locales fixed 2019-11-08 03:35:56 +00:00
test Added gamemodes. New mode: Fast. (#44) 2017-11-27 17:59:19 +01:00
.gitignore python-telegram-bot v7 compatability + more (#35) 2017-08-18 23:36:30 +02:00
AUTHORS.md fix: `alphabetically' 2019-08-28 21:40:27 +08:00
LICENSE move to AGPL (#4) 2016-05-08 14:37:25 +02:00
Pipfile feature: add pipenv support. 2019-08-27 18:42:53 +08:00
Pipfile.lock feature: add pipenv support. 2019-08-27 18:42:53 +08:00
README.md Add /kick command and remove botan support (#38) 2017-12-07 09:27:51 +01:00
TRANSLATORS.md translator.md TR 2019-11-07 10:45:44 +00:00
actions.py i18n: logger messages shouldn't be translatable. 2019-08-28 15:44:06 +08:00
bot.py Update bot.py 2019-10-13 21:29:51 +02:00
card.py Revert "new (temp) stickers for r_8 and g_9" 2018-01-30 14:37:17 +01:00
config.json.example Add /kick command and remove botan support (#38) 2017-12-07 09:27:51 +01:00
config.py Add /kick command and remove botan support (#38) 2017-12-07 09:27:51 +01:00
database.py Added gamemodes. New mode: Fast. (#44) 2017-11-27 17:59:19 +01:00
deck.py 🐛 Fix bluffing for +4s that have been played before (#67) 2019-06-10 20:53:10 +02:00
errors.py add encoding 2016-05-19 23:15:46 +02:00
game.py Add /kick command and remove botan support (#38) 2017-12-07 09:27:51 +01:00
game_manager.py Added gamemodes. New mode: Fast. (#44) 2017-11-27 17:59:19 +01:00
genpot.sh i18n: add pot generator and ... 2019-08-28 15:07:20 +08:00
internationalization.py Added gamemodes. New mode: Fast. (#44) 2017-11-27 17:59:19 +01:00
logo.png added logo 2016-03-09 11:31:54 +01:00
mwt.py add cached admin check 2017-08-19 00:08:55 +02:00
player.py Add /kick command and remove botan support (#38) 2017-12-07 09:27:51 +01:00
requirements.txt Add /kick command and remove botan support (#38) 2017-12-07 09:27:51 +01:00
results.py Added gamemodes. New mode: Fast. (#44) 2017-11-27 17:59:19 +01:00
settings.py python-telegram-bot v7 compatability + more (#35) 2017-08-18 23:36:30 +02:00
shared_vars.py Add /kick command and remove botan support (#38) 2017-12-07 09:27:51 +01:00
simple_commands.py i18n: add pot generator and ... 2019-08-28 15:07:20 +08:00
start_bot.py add encoding 2016-05-19 23:15:46 +02:00
user_setting.py Added gamemodes. New mode: Fast. (#44) 2017-11-27 17:59:19 +01:00
utils.py Add /kick command and remove botan support (#38) 2017-12-07 09:27:51 +01:00

README.md

UNO Bot

License: AGPL v3

Telegram Bot that allows you to play the popular card game UNO via inline queries. The bot currently runs as @unobot.

To run the bot yourself, you will need:

Setup

  • Get a bot token from @BotFather and change configurations in config.json.
  • Convert all language files from .po files to .mo by executing the bash script compile.sh located in the locales folder. Another option is: find . -maxdepth 2 -type d -name 'LC_MESSAGES' -exec bash -c 'msgfmt {}/unobot.po -o {}/unobot.mo' \;.
  • Use /setinline and /setinlinefeedback with BotFather for your bot.
  • Install requirements (using a virtualenv is recommended): pip install -r requirements.txt

You can change some gameplay parameters like turn times, minimum amount of players and default gamemode in config.json. Current gamemodes available: classic, fast and wild. Check the details with the /modes command.

Then run the bot with python3 bot.py.

Code documentation is minimal but there.