All Projects → yegorf1 → Roguebot

yegorf1 / Roguebot

My simple rogue-like game for Telegram

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Roguebot

Gpt2 Telegram Chatbot
GPT-2 Telegram Chat bot
Stars: ✭ 41 (-59%)
Mutual labels:  bot, telegram, text
Turibot
TuriBot is a simple way to communicate with Telegram APIs in PHP
Stars: ✭ 68 (-32%)
Mutual labels:  bot, telegram
Genesis
🤖 Warframe Discord Cephalon
Stars: ✭ 67 (-33%)
Mutual labels:  bot, game
Tgdr
Telegram directory to discover channels, bots and groups.
Stars: ✭ 91 (-9%)
Mutual labels:  bot, telegram
Syntax Highlighter Bot
Syntax highlighter bot for telegram.
Stars: ✭ 60 (-40%)
Mutual labels:  bot, telegram
Chrome Dino Game Bot
Bot for chrome dinosaur game.
Stars: ✭ 62 (-38%)
Mutual labels:  bot, game
Go Tgbot
Golang telegram bot API wrapper, session-based router and middleware
Stars: ✭ 90 (-10%)
Mutual labels:  bot, telegram
Harmonist
Harmonist: Dayoriah Clan Infiltration is a stealth roguelike game.
Stars: ✭ 57 (-43%)
Mutual labels:  game, roguelike
Telebot.nim
Async client for Telegram Bot API in pure Nim [Bot API 5.1]
Stars: ✭ 93 (-7%)
Mutual labels:  bot, telegram
Dose Response
Dose Response is a roguelike where you play an addict. Avoid the dangers threatening your mind and body while desperately looking for the next fix.
Stars: ✭ 95 (-5%)
Mutual labels:  game, roguelike
Telegram Bot
Telegram Bot using AWS API Gateway and AWS Lambda
Stars: ✭ 96 (-4%)
Mutual labels:  bot, telegram
Zabbix Telegram Notification
Zabbix notifications on Telegram
Stars: ✭ 59 (-41%)
Mutual labels:  bot, telegram
Cataclysm Dda Android
An unofficial Android port of Cataclysm: Dark Days Ahead.
Stars: ✭ 58 (-42%)
Mutual labels:  game, roguelike
Github Releases Notify Bot
Allows you to receive notifications of new releases of software on GitHub in Telegram
Stars: ✭ 65 (-35%)
Mutual labels:  bot, telegram
Telebot
The easy way to write Telegram bots in Node.js
Stars: ✭ 1,096 (+996%)
Mutual labels:  bot, telegram
Telegram Pm Chat Bot
Telegram Private Message Chat Bot
Stars: ✭ 69 (-31%)
Mutual labels:  bot, telegram
Geotic
Entity Component System library for javascript
Stars: ✭ 97 (-3%)
Mutual labels:  game, roguelike
Bot Telegram
Exemplo de como criar um BOT para o melhor app de mensagens do mundo: Telegram.
Stars: ✭ 53 (-47%)
Mutual labels:  bot, telegram
Pockebot
Read It Later for Telegram
Stars: ✭ 56 (-44%)
Mutual labels:  bot, telegram
Slashem Extended
SLASH'EM Extended (a SLASH'EM fork)
Stars: ✭ 93 (-7%)
Mutual labels:  game, roguelike

RogueBot Build Status

My simple rogue-like game for Telegram and VK (in dev)

Requirements

You must have Python 3 to launch server. Also before launching you have to install requirements via pip3:

pip3 install -r requirements.txt

Than you have to create config.py:

# Token of your telegram bot
# (https://core.telegram.org/bots#6-botfather)
TELEGRAM_TOKEN = '123456789:AAHdqTcvCH1vGWJxfSeofSAs0K5PALDsaw '

# Credtals for logging to vk
VK_LOGIN = '[email protected]'
VK_PASS = 'bot_password'

# List of admins and moders
# Example: [ '66303244', 'vk1' ]
ADMINS_IDS = [  ]
MODERS_IDS = ADMINS_IDS + [  ]

DATABASE_PATH = 'db.json'
USERS_PATH = 'users'

You don't have to write vk login and pass, if you wouldn't use it. Same with telegram token.

Launching

To launch telegram bot:

python3 ./main.py

or

To launch vk bot:

python3 ./main_vk.py

You can also build all bot to pyc files (Just for fun):

python3 ./build.py
cd build
python3 main.pyc

That's it.

You can write me via Telegram (@yegorf1) or VK.com (vk.com/yegorf1) if you have any questions.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].