├── README.md ├── admins.txt ├── bb.txt ├── bot.py ├── chat.txt ├── loggingids.json └── user.txt /README.md: -------------------------------------------------------------------------------- 1 | # Telegram Support Bot 2 | This Bot is written in Python with the help from the pyTelegramBotAPI. 3 | 4 | Let's start by installing everything you need. 5 | 6 | # Installation 7 | 8 | First of all, you need to install Python2 & the Python package manager 9 | 10 | ``` 11 | sudo apt-get install python2 python2-pip 12 | ``` 13 | 14 | After that you need to install the pyTelegramBotAPI. 15 | 16 | ``` 17 | sudo pip2 install pyTelegramBotAPI 18 | ``` 19 | Finally clone the repo 20 | 21 | ``` 22 | git clone https://github.com/appendhc/lsd_support_bot.clone 23 | ``` 24 | 25 | # Getting started 26 | 27 | Create 2 new files named "loggingids.json" and "user.txt" 28 | Open the file "bot.py" and replace following IDs with your options: 29 | 30 | ``` 31 | API_TOKEN = 'YOUR TOKEN' 32 | ``` 33 | This should be your Token received from Botfather. 34 | 35 | Also don't forget to replace the Group ID 36 | 37 | 38 | 39 | # Running the Bot 40 | 41 | You can one-time run the Bot with the command 42 | ``` 43 | python bot.py 44 | ``` 45 | 46 | # Special thanks to 47 | [@aRandomStranger](https://telegram.me/aRandomStranger) - For soruce LoggingBot 48 | 49 | [@Edurolp](https://telegram.me/edurolp) - For helping with Debugging 50 | 51 | [@Gunny14](https://telegram.me/gunny14) - For helping users & being staff 52 | 53 | [@Sanguchi](https://telegram.me/Sanguchi) - For helping with Debugging, being staff & helping users 54 | 55 | [@JackRendor](https://telegram.me/JackRendor) - For helping users & being staff 56 | 57 | [@eternnoir](https://github.com/eternnoir/pyTelegramBotAPI) - for creating this loveful API! 58 | 59 | 60 | -------------------------------------------------------------------------------- /admins.txt: -------------------------------------------------------------------------------- 1 | #adminlist 2 | 99743635 3 | -------------------------------------------------------------------------------- /bb.txt: -------------------------------------------------------------------------------- 1 | #ban list 2 | -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appendhc/lsd_support_bot/ba5a4afc6c6d0dd692ca06e7b2c6aabbded8ea2c/bot.py -------------------------------------------------------------------------------- /chat.txt: -------------------------------------------------------------------------------- 1 | #chat list 2 | -------------------------------------------------------------------------------- /loggingids.json: -------------------------------------------------------------------------------- 1 | {"52387426": "1012318499", "-106577683": "106577683", "-1001012318499": "1012318499", "-104649972": "-10469972"} -------------------------------------------------------------------------------- /user.txt: -------------------------------------------------------------------------------- 1 | #user list 2 | --------------------------------------------------------------------------------