├── datas.txt ├── proxies.txt ├── meomundep.js ├── configs.json ├── setup.bat ├── README.md └── setup.sh /datas.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proxies.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meomundep.js: -------------------------------------------------------------------------------- 1 | console.log(`Stop updating this game, please choose another scripts!`) 2 | -------------------------------------------------------------------------------- /configs.json: -------------------------------------------------------------------------------- 1 | { 2 | "limit": 100, 3 | "countdown": 300, 4 | "country_time": "en-US", 5 | "upgradeBoosts": true, 6 | "howManyLevels_MultiTap": 5, 7 | "howManyLevels_EneryLimit": 5, 8 | "buyWaifuCards": true, 9 | "delayEachAccount": [1, 81], 10 | "referralCode": "LUQ2XURY" 11 | } 12 | -------------------------------------------------------------------------------- /setup.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | title Pocketwaifu Bot 3 | color 0A 4 | 5 | cd .. 6 | if exist node_modules ( 7 | echo Found node_modules in parent directory 8 | cd %~dp0 9 | ) else ( 10 | cd %~dp0 11 | echo node_modules not found in parent directory 12 | ) 13 | 14 | :MENU 15 | cls 16 | echo ================================================================= 17 | echo Pocketwaifu BOT SETUP AND RUN SCRIPT 18 | echo ================================================================= 19 | echo. 20 | echo Current directory: %CD% 21 | echo Parent node_modules: %~dp0..\node_modules 22 | echo. 23 | echo 1. Install/Update Node.js Dependencies 24 | echo 2. Create/Edit Configuration Files 25 | echo 3. Run the Bot 26 | echo 4. Exit 27 | echo. 28 | set /p choice="Enter your choice (1-4): " 29 | 30 | if "%choice%"=="1" goto INSTALL 31 | if "%choice%"=="2" goto CONFIG 32 | if "%choice%"=="3" goto RUN 33 | if "%choice%"=="4" goto EXIT 34 | 35 | :INSTALL 36 | cls 37 | echo Checking node_modules location... 38 | if exist "..\node_modules" ( 39 | cd .. 40 | echo Installing/Updating dependencies in parent directory... 41 | npm install user-agents axios meo-forkcy-colors https-proxy-agent socks-proxy-agent 42 | cd %~dp0 43 | ) else ( 44 | echo Installing dependencies in current directory... 45 | npm install user-agents axios meo-forkcy-colors https-proxy-agent socks-proxy-agent 46 | ) 47 | echo. 48 | echo Dependencies installation completed! 49 | pause 50 | goto MENU 51 | 52 | :CONFIG 53 | cls 54 | echo Creating configuration files... 55 | 56 | 57 | if not exist datas.txt ( 58 | type nul > datas.txt 59 | echo Created datas.txt 60 | ) 61 | 62 | if not exist proxies.txt ( 63 | type nul > proxies.txt 64 | echo Created proxies.txt 65 | ) 66 | 67 | echo. 68 | echo Configuration files have been created/checked. 69 | echo Please edit the files with your data before running the bot. 70 | echo. 71 | pause 72 | goto MENU 73 | 74 | :RUN 75 | cls 76 | echo Starting the bot... 77 | if exist "..\node_modules" ( 78 | echo Using node_modules from parent directory 79 | ) else ( 80 | echo Using node_modules from current directory 81 | ) 82 | node meomundep 83 | pause 84 | goto MENU 85 | 86 | :EXIT 87 | exit 88 | -------------------------------------------------------------------------------- /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/pocketwaifu_bot/game?startapp=LUQ2XURY) 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 cloudscraper axios colors p-limit 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 | "upgradeBoosts": true, 44 | "howManyLevels_MultiTap": 5, 45 | "howManyLevels_EneryLimit": 5, 46 | "buyWaifuCards": true, 47 | "limit": 5, //number of accounts run 1 a row 48 | "countdown": 300, //time to restarts all the accounts - count by seconds 49 | } 50 | ``` 51 | 52 | ### 2. `datas.txt` 🗂️ - Get data from [here](https://t.me/KeoAirDropFreeNee/1521) 53 | 54 | ```txt 55 | ey... 56 | ey... 57 | ey... 58 | ``` 59 | 60 | ### 3. `wallets.txt` 💼 - Cannot update yet. 61 | 62 | ```txt - wallet address 63 | abc...xyz 64 | abc...xyz 65 | abc...xyz 66 | ``` 67 | 68 | ### 4. `proxies.txt` 🌐 - Proxy is an option. If you have one, fill it in; otherwise, leave it blank. 69 | 70 | - [Get it from here](https://www.webshare.io/?referral_code=4l5kb3glsce7) 71 | 72 | ```txt 73 | host:port 74 | http://host:port 75 | https://host:port 76 | socks4://host:port 77 | socks5://host:port 78 | user:pass@host:port 79 | http://user:pass@host:port 80 | https://user:pass@host:port 81 | socks4://user:pass@host:port 82 | socks5://user:pass@host:port 83 | ``` 84 | 85 | 💡 Usage: 86 | 87 | > You need to `cd` to the file after extract it 88 | > To run the bot, use the following command: `cd "pocket waifu"; node meomundep` 89 | 90 | 🎇Enjoy! 91 | -------------------------------------------------------------------------------- /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 | print_green() { 9 | echo -e "${GREEN}$1${NC}" 10 | } 11 | 12 | print_yellow() { 13 | echo -e "${YELLOW}$1${NC}" 14 | } 15 | 16 | print_red() { 17 | echo -e "${RED}$1${NC}" 18 | } 19 | 20 | chmod +x "$0" 21 | 22 | if [ -d "../node_modules" ]; then 23 | print_green "Found node_modules in parent directory" 24 | MODULES_DIR=".." 25 | else 26 | print_green "Using current directory for node_modules" 27 | MODULES_DIR="." 28 | fi 29 | 30 | create_default_configs() { 31 | cat > configs.json << EOL 32 | { 33 | "limit": 100, 34 | "countdown": 300, 35 | "upgradeBoosts": true, 36 | "howManyLevels_MultiTap": 5, 37 | "howManyLevels_EneryLimit": 5, 38 | "buyWaifuCards": true, 39 | "delayEachAccount": [1, 81], 40 | "referralCode": "LUQ2XURY" 41 | } 42 | EOL 43 | } 44 | 45 | check_configs() { 46 | if ! node -e "const cfg=require('./configs.json');if(typeof cfg.howManyAccountsRunInOneTime !== 'number' || cfg.howManyAccountsRunInOneTime < 1) throw new Error('Invalid config');" 2>/dev/null; then 47 | print_red "Invalid configuration detected. Resetting to default values..." 48 | create_default_configs 49 | print_green "Configuration reset completed." 50 | fi 51 | } 52 | 53 | while true; do 54 | clear 55 | echo "============================================================================" 56 | echo " Pocketwaifu BOT SETUP AND RUN SCRIPT" 57 | echo "============================================================================" 58 | echo 59 | echo "Current directory: $(pwd)" 60 | echo "Node modules directory: $MODULES_DIR/node_modules" 61 | echo 62 | echo "1. Install/Update Node.js Dependencies" 63 | echo "2. Create/Edit Configuration Files" 64 | echo "3. Run the Bot" 65 | echo "4. Exit" 66 | echo 67 | read -p "Enter your choice (1-4): " choice 68 | 69 | case $choice in 70 | 1) 71 | clear 72 | print_yellow "Installing/Updating Node.js dependencies..." 73 | cd "$MODULES_DIR" 74 | npm install user-agents axios meo-forkcy-colors https-proxy-agent socks-proxy-agent 75 | cd - > /dev/null 76 | print_green "Dependencies installation completed!" 77 | read -p "Press Enter to continue..." 78 | ;; 79 | 2) 80 | clear 81 | print_yellow "Setting up configuration files..." 82 | 83 | if [ ! -f configs.json ]; then 84 | create_default_configs 85 | print_green "Created configs.json with default values" 86 | fi 87 | 88 | check_configs 89 | 90 | for file in datas.txt proxies.txt; do 91 | if [ ! -f "$file" ]; then 92 | touch "$file" 93 | print_green "Created $file" 94 | fi 95 | done 96 | 97 | print_green "\nConfiguration files have been created/checked." 98 | print_yellow "Please edit the files with your data before running the bot." 99 | read -p "Press Enter to continue..." 100 | ;; 101 | 3) 102 | clear 103 | print_yellow "Checking configuration before starting..." 104 | if ! check_configs; then 105 | print_red "Error: Invalid configuration detected. Please run option 2 to fix configuration." 106 | read -p "Press Enter to continue..." 107 | continue 108 | fi 109 | 110 | print_green "Starting the bot..." 111 | if [ -d "../node_modules" ]; then 112 | print_green "Using node_modules from parent directory" 113 | else 114 | print_green "Using node_modules from current directory" 115 | fi 116 | node meomundep 117 | read -p "Press Enter to continue..." 118 | ;; 119 | 4) 120 | print_green "Exiting..." 121 | exit 0 122 | ;; 123 | *) 124 | print_red "Invalid option. Please try again." 125 | read -p "Press Enter to continue..." 126 | ;; 127 | esac 128 | done 129 | --------------------------------------------------------------------------------