├── meow ├── datas.txt ├── proxies.txt ├── meomundep.js ├── configs.json ├── run.bat └── run.sh └── README.md /meow/datas.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meow/proxies.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meow/meomundep.js: -------------------------------------------------------------------------------- 1 | console.log('Stop this repo since the game not update anything!') 2 | -------------------------------------------------------------------------------- /meow/configs.json: -------------------------------------------------------------------------------- 1 | { 2 | "rotateProxy": false, 3 | "skipInvalidProxy": false, 4 | "proxyRotationInterval": 2, 5 | "delayEachAccount": [5, 8], 6 | "timeToRestartAllAccounts": 14400, 7 | "howManyAccountsRunInOneTime": 100, 8 | "doTasks": true 9 | } 10 | -------------------------------------------------------------------------------- /meow/run.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | title Supermeow Bot by @MeoMunDep 3 | color 0A 4 | 5 | cd %~dp0 6 | 7 | echo Checking configuration files... 8 | 9 | (for %%F in (datas.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 --no-audit --no-fund --prefer-offline --force 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 --no-audit --no-fund --prefer-offline --force 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 | -------------------------------------------------------------------------------- /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/supermeow_vip_bot?start=6713068747) 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 | -> [Link](https://t.me/KeoAirDropFreeNe/257/1462) 21 | 22 | - **Node.js** (Version: `22.11.0`) 23 | - **npm** (Version: `10.9.0`) 24 | 25 | 1. **Install Dependencies and Modules:** 26 | 27 | ``` 28 | npm i user-agents axios colors https-proxy-agent socks-proxy-agent 29 | ``` 30 | 31 | 2. **Prepare Configuration Files:** 32 | 33 | > You'll need to set up a few configuration files for the bot to work properly. 34 | 35 | ## 📁 Configuration Files 36 | 37 | ### 1. `configs.json` 📜 - Adjust configuration 38 | 39 | ```json 40 | { 41 | "rotateProxy": false, 42 | "skipInvalidProxy": false, 43 | "proxyRotationInterval": 2, 44 | "delayEachAccount": [5, 8], 45 | "timeToRestartAllAccounts": 300, 46 | "howManyAccountsRunInOneTime": 100, 47 | "doTasks": true 48 | } 49 | ``` 50 | 51 | ### 2. `datas.txt` 🗂️ - Get it from here >>> [Link](https://t.me/KeoAirDropFreeNee/1586) 52 | 53 | ```txt 54 | query_id.../user... 55 | query_id.../user... 56 | query_id.../user... 57 | ``` 58 | 59 | ### 3. `wallets.txt` 💼 - Cannot update yet. 60 | - [Get it from here](https://github.com/MeoMunDep/Automatic-Ultimate-Create-Wallets-for-Airdrop) 61 | 62 | 63 | ```txt - wallet address 64 | abc...xyz 65 | abc...xyz 66 | abc...xyz 67 | ``` 68 | 69 | ### 4. `proxies.txt` 🌐 - Proxy is an option. If you have one, fill it in; otherwise, leave it blank. 70 | 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 "supermeow/meow"; node meomundep` 88 | 89 | 🎇Enjoy! 90 | -------------------------------------------------------------------------------- /meow/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | chmod +x "$0" 4 | 5 | RED='\033[0;31m' 6 | GREEN='\033[0;32m' 7 | YELLOW='\033[1;33m' 8 | NC='\033[0m' 9 | 10 | echo -ne "\033]0;Supermeow Bot by @MeoMunDep\007" 11 | 12 | print_green() { 13 | echo -e "${GREEN}$1${NC}" 14 | } 15 | 16 | print_yellow() { 17 | echo -e "${YELLOW}$1${NC}" 18 | } 19 | 20 | print_red() { 21 | echo -e "${RED}$1${NC}" 22 | } 23 | 24 | chmod +x "$0" 25 | 26 | if [ -d "../node_modules" ]; then 27 | print_green "Found node_modules in parent directory" 28 | MODULES_DIR=".." 29 | else 30 | print_green "Using current directory for node_modules" 31 | MODULES_DIR="." 32 | fi 33 | 34 | check_node() { 35 | if ! command -v node &> /dev/null; then 36 | print_red "Node.js not found, installing..." 37 | if [[ "$OSTYPE" == "linux-gnu"* ]]; then 38 | sudo apt update && sudo apt install -y nodejs npm 39 | elif [[ "$OSTYPE" == "darwin"* ]]; then 40 | brew install node 41 | elif [[ "$OSTYPE" == "cygwin" || "$OSTYPE" == "msys" ]]; then 42 | echo "Please install Node.js manually on Windows." 43 | fi 44 | print_green "Node.js installation completed." 45 | else 46 | print_green "Node.js is already installed." 47 | fi 48 | } 49 | check_node 50 | 51 | check_git() { 52 | if ! command -v git &> /dev/null; then 53 | print_red "Git not found, installing..." 54 | if [[ "$OSTYPE" == "linux-gnu"* ]]; then 55 | sudo apt update && sudo apt install -y git 56 | elif [[ "$OSTYPE" == "darwin"* ]]; then 57 | brew install git 58 | elif [[ "$OSTYPE" == "cygwin" || "$OSTYPE" == "msys" ]]; then 59 | echo "Please install Git manually on Windows." 60 | fi 61 | print_green "Git installation completed." 62 | else 63 | print_green "Git is already installed." 64 | fi 65 | } 66 | check_git 67 | 68 | create_default_configs() { 69 | cat > configs.json << EOL 70 | { 71 | "rotateProxy": false, 72 | "skipInvalidProxy": false, 73 | "proxyRotationInterval": 2, 74 | "delayEachAccount": [1, 1], 75 | "timeToRestartAllAccounts": 14400, 76 | "howManyAccountsRunInOneTime": 100, 77 | "doTasks": true 78 | } 79 | EOL 80 | } 81 | 82 | check_configs() { 83 | 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 84 | print_red "Invalid configuration detected. Resetting to default values..." 85 | create_default_configs 86 | print_green "Configuration reset completed." 87 | fi 88 | } 89 | 90 | print_yellow "Checking configuration files..." 91 | if [ ! -f configs.json ]; then 92 | create_default_configs 93 | print_green "Created configs.json with default values" 94 | fi 95 | 96 | check_configs 97 | 98 | for file in datas.txt wallets.txt proxies.txt; do 99 | if [ ! -f "$file" ]; then 100 | touch "$file" 101 | print_green "Created $file" 102 | fi 103 | done 104 | 105 | print_green "Configuration files have been checked." 106 | 107 | print_yellow "Checking dependencies..." 108 | cd "$MODULES_DIR" 109 | npm install --no-audit --no-fund --prefer-offline --force user-agents axios colors https-proxy-agent socks-proxy-agent 110 | cd - > /dev/null 111 | print_green "Dependencies installation completed!" 112 | 113 | print_green "Starting the bot..." 114 | node meomundep 115 | --------------------------------------------------------------------------------