├── requirements.txt ├── README.md └── run.py /requirements.txt: -------------------------------------------------------------------------------- 1 | telethon 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Auto-Claim-Hi-Tele-SelfBot 2 | Auto Claim Hi.com Telegram SelfBot 3 | 4 | ## Requirements 5 | Python3 & libs ( telethon ) 6 | 7 | ## Installations 8 | ``` 9 | $ git clone https://github.com/vsec7/Auto-Claim-Hi-Tele-SelfBot.git 10 | $ cd Auto-Claim-Hi-Tele-SelfBot 11 | $ pip install -r requirements.txt 12 | $ python run.py 13 | ``` 14 | 15 | ## How to get api_id & api_hash ? 16 | [Click Here](https://my.telegram.org/) 17 | 18 | Crafted by Viloid (github.com/vsec7) 19 | -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- 1 | import time 2 | from telethon import TelegramClient, sync 3 | 4 | # Simple Auto claim hi.com Telegram Bot 5 | # Crafted by cath / viloid (github.com/vsec7) 6 | 7 | # Configurations 8 | # Get api_id & api_hash from https://my.telegram.org/ 9 | api_id = 3133337 10 | api_hash = 'qwertyuiop12345678900' 11 | 12 | client = TelegramClient('session', api_id, api_hash).start() 13 | to = client.get_entity("hiofficialbot") 14 | 15 | def main(): 16 | client.send_message(entity=to, message="👋 Claim Daily Reward") 17 | time.sleep(10) 18 | msg = client.get_messages("hiofficialbot")[0].click(0) 19 | 20 | 21 | while True: 22 | main() 23 | time.sleep(90000) # 90000 seconds = 25 hours 24 | --------------------------------------------------------------------------------