Go to file
Ceda EI 149ab033b0 Add player count 2019-01-29 11:47:31 +05:30
bot Fix replies to non-chat messages by bot 2019-01-29 10:19:56 +05:30
chat_mod Add player count 2019-01-29 11:47:31 +05:30
.gitignore Complete bot.py. Add groups to config. Change /post to POST. 2019-01-22 16:54:57 +05:30
LICENSE Initial commit 2019-01-22 08:17:05 +00:00
README.md Update README 2019-01-28 17:51:00 +05:30

README.md

minetest-telegram-bridge

Usage

  • Install python3, flask, python-telegram-bot
  • cd
  • git clone https://git.webionite.com/ceda_ei/minetest-telegram-bridge
  • ln -s ~/minetest-telegram-bridge/chat_mod ~/.minetest/mods/chat_mod
  • Add mod to secure.http_mods.
    • Add this line if secure.http_mods doesn't exist. secure.http_mods = chat_mod
  • Enable the mod in world.mt
  • cd minetest-telegram-bridge/bot
  • Copy sample.config.py to config.py and edit.
  • python3 bot.py &
  • export FLASK_APP=server.py
  • export FLASK_ENV=production
  • flask run -p 9876
  • Start the minetest server via minetest [params] |& python3 pipe_in.py

Configuration

To use a different port, change the respective config in config.py and add chat_server_port = PORT in minecraft.conf and run flask run -p PORT instead of the last step.