You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WSKUSERBOT is a powerful Telegram userbot that automatically plays and wins the @WordSeekBot word game. It uses an entropy-based smart solver algorithm that picks the optimal guess to split remaining candidates most evenly โ winning games in the fewest possible attempts.
๐ก Think of it as Wordle on autopilot, but for Telegram's WordSeek game!
API_ID=12345# Telegram API IDAPI_HASH=your_api_hash# Telegram API HashBOT_TOKEN=123456:ABC-xyz# Bot Token from BotFatherMONGO_URI=mongodb+srv://...# MongoDB Connection URIOWNER_ID=123456789# Your Telegram User ID
โถ๏ธ Run the Bot
# Run directly
bash start
# Or with Docker ๐ณ
docker build -t wskuserbot .
docker run -d --env-file .env wskuserbot
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ ENTROPY SOLVER โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ โ
โ 1. ๐ Load word list (4/5/6 letters) โ
โ 2. ๐ฏ Pick optimal starter (letter frequency) โ
โ 3. ๐จ Send guess to WordSeek โ
โ 4. ๐ Read color-coded feedback โ
โ 5. ๐งฎ Calculate entropy for each candidate โ
โ 6. โ๏ธ Eliminate impossible words โ
โ 7. ๐ Pick next guess (max entropy split) โ
โ 8. ๐ Repeat until solved! โ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
The solver picks the guess that maximizes information gain โ splitting the remaining word pool as evenly as possible across all possible feedback patterns.
๐ก๏ธ Tech Stack
Technology
Purpose
Pyrofork
Telegram MTProto client (Pyrogram fork)
Motor
Async MongoDB driver
TgCrypto
Fast Telegram encryption
aiohttp
Async HTTP requests
Docker
Containerized deployment
๐ License
This project is open source and available under the MIT License.
โญ Star this repo if you found it useful!
About
WSKUSERBOT - A smart Telegram userbot that auto-plays & wins WordSeek games using entropy-based solver algorithm