├── datas.txt ├── proxies.txt ├── wallets.txt ├── meomundep.js ├── configs.json ├── setup.bat ├── setup.sh └── README.md /datas.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proxies.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wallets.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meomundep.js: -------------------------------------------------------------------------------- 1 | console.log(`Stop updating on this game, please choose another scripts!`) -------------------------------------------------------------------------------- /configs.json: -------------------------------------------------------------------------------- 1 | { 2 | "delayEachAccount": [5, 8], 3 | "timeToRestartAllAccounts": 300, 4 | "howManyAccountsRunInOneTime": 100, 5 | "isDoTasks": true, 6 | "isPlayGames": true, 7 | "referralCode": "AJDAF2" 8 | } 9 | -------------------------------------------------------------------------------- /setup.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | title RedPocket Bot by @MeoMunDep 3 | color 0A 4 | 5 | cd %~dp0 6 | 7 | echo Checking configuration files... 8 | 9 | (for %%F in (datas.txt wallets.txt proxies.txt) do ( 10 | if not exist %%F ( 11 | type nul > %%F 12 | echo Created %%F 13 | ) 14 | )) 15 | 16 | echo Configuration files checked. 17 | 18 | echo Checking dependencies... 19 | if exist "..\node_modules" ( 20 | echo Using node_modules from parent directory... 21 | cd .. 22 | CALL npm install user-agents axios colors https-proxy-agent socks-proxy-agent 23 | cd %~dp0 24 | ) else ( 25 | echo Installing dependencies in current directory... 26 | CALL npm install user-agents axios colors https-proxy-agent socks-proxy-agent 27 | ) 28 | echo Dependencies installation completed! 29 | 30 | echo Starting the bot... 31 | node meomundep 32 | 33 | pause 34 | exit 35 | -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | RED='\033[0;31m' 4 | GREEN='\033[0;32m' 5 | YELLOW='\033[1;33m' 6 | NC='\033[0m' 7 | 8 | echo -ne "\033]0;RedPocket Bot by @MeoMunDep\007" 9 | 10 | 11 | print_green() { 12 | echo -e "${GREEN}$1${NC}" 13 | } 14 | 15 | print_yellow() { 16 | echo -e "${YELLOW}$1${NC}" 17 | } 18 | 19 | print_red() { 20 | echo -e "${RED}$1${NC}" 21 | } 22 | 23 | chmod +x "$0" 24 | 25 | if [ -d "../node_modules" ]; then 26 | print_green "Found node_modules in parent directory" 27 | MODULES_DIR=".." 28 | else 29 | print_green "Using current directory for node_modules" 30 | MODULES_DIR="." 31 | fi 32 | 33 | create_default_configs() { 34 | cat > configs.json << EOL 35 | { 36 | "delayEachAccount": [1, 1], 37 | "timeToRestartAllAccounts": 300, 38 | "howManyAccountsRunInOneTime": 100, 39 | "isDoTasks": true, 40 | "isPlayGames": true, 41 | "referralCode": "AJDAF2" 42 | } 43 | EOL 44 | } 45 | 46 | check_configs() { 47 | if ! node -e "try { const cfg = require('./configs.json'); if (!cfg.howManyAccountsRunInOneTime || typeof cfg.howManyAccountsRunInOneTime !== 'number' || cfg.howManyAccountsRunInOneTime < 1) throw new Error(); } catch { process.exit(1); }"; then 48 | print_red "Invalid configuration detected. Resetting to default values..." 49 | create_default_configs 50 | print_green "Configuration reset completed." 51 | fi 52 | } 53 | 54 | print_yellow "Checking configuration files..." 55 | if [ ! -f configs.json ]; then 56 | create_default_configs 57 | print_green "Created configs.json with default values" 58 | fi 59 | 60 | check_configs 61 | 62 | for file in datas.txt wallets.txt proxies.txt; do 63 | if [ ! -f "$file" ]; then 64 | touch "$file" 65 | print_green "Created $file" 66 | fi 67 | done 68 | 69 | print_green "Configuration files have been checked." 70 | 71 | print_yellow "Checking dependencies..." 72 | cd "$MODULES_DIR" 73 | npm install user-agents axios colors https-proxy-agent socks-proxy-agent 74 | cd - > /dev/null 75 | print_green "Dependencies installation completed!" 76 | 77 | print_green "Starting the bot..." 78 | node meomundep 79 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 📞 Contact 2 | 3 | > [Termux guides if you run on mobile](https://github.com/MeoMunDep/Guides-for-using-my-script-on-termux) 4 | 5 | 6 | > If you encounter any issues or have questions, feel free to reach out: 7 | 8 | - Contact: [Link](t.me/MeoMunDep) 9 | - Group: [Link](t.me/KeoAirDropFreeNe) 10 | - Channel: [Link](t.me/KeoAirDropFreeNee) 11 | 12 | > Help me with your referral [Link](https://t.me/redpocket_game_bot/redpocketgame?startapp=AJDAF2) 13 | 14 | ## 🚀 Getting Started 15 | 16 | To get started with the bot, follow these steps: 17 | 18 | 0. **Dowload NodeJS to run the bot** 19 | 20 | - **Node.js** (Version: `22.11.0`) 21 | - **npm** (Version: `10.9.0`) 22 | 23 | Download Node.js and npm here: [Download Link](https://t.me/KeoAirDropFreeNe/257/1462). 24 | 25 | -> Double click on setup.bat or setup.sh if you want to run automatically, remember to fill all the necessary data. 26 | 27 | 1. **Install Dependencies and Modules:** 28 | 29 | ``` 30 | npm i user-agents axios colors https-proxy-agent socks-proxy-agent 31 | ``` 32 | 33 | 2. **Prepare Configuration Files:** 34 | 35 | > You'll need to set up a few configuration files for the bot to work properly. 36 | 37 | ## 📁 Configuration Files 38 | 39 | ### 1. `configs.json` 📜 - Adjust configuration 40 | 41 | ```json 42 | { 43 | "delayEachAccount": [5, 8], 44 | "timeToRestartAllAccounts": 300, 45 | "numberOfAccountsRunInOneTime": 100, 46 | "isDoTasks": true, 47 | "isPlayingGames": true, 48 | "referralCode": "AJDAF2" - Your referral code, dont change it if you want to help me :) 49 | } 50 | ``` 51 | 52 | ### 2. `datas.txt` 🗂️ - [Get it from here](https://t.me/KeoAirDropFreeNee/1586) 53 | 54 | ```txt 55 | query_id.../user... 56 | query_id.../user... 57 | query_id.../user... 58 | ``` 59 | 60 | ### 3. `wallets.txt` 💼 - Your ton wallets. 61 | - Wallets generator: [Link](https://github.com/MeoMunDep/Automatic-Ultimate-Create-Wallets-for-Airdrop) 62 | 63 | 64 | ```txt - wallet address 65 | UQ... 66 | UQ... 67 | UQ... 68 | ``` 69 | 70 | ### 4. `proxies.txt` 🌐 - Proxy is an option. If you have one, fill it in; otherwise, leave it blank. 71 | - [Get it from here](https://www.webshare.io/?referral_code=4l5kb3glsce7) 72 | 73 | ```txt 74 | http://host:port 75 | https://host:port 76 | socks4://host:port 77 | socks5://host:port 78 | http://user:pass@host:port 79 | https://user:pass@host:port 80 | socks4://user:pass@host:port 81 | socks5://user:pass@host:port 82 | ``` 83 | 84 | 💡 Usage: 85 | 86 | > You need to `cd` to the file after extract it. 87 | > To run the bot, use the following command: `cd "red pocket"; node meomundep` 88 | 89 | 🎇Enjoy! 90 | --------------------------------------------------------------------------------