├── 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!`) -------------------------------------------------------------------------------- /configs.json: -------------------------------------------------------------------------------- 1 | { 2 | "limit": 100, 3 | "countdown": 300, 4 | "country_time": "en-US", 5 | "todayCode": "2344", 6 | "doTasks": true, 7 | "upgradeCards": false, 8 | "delayEachAccount": [1, 81], 9 | "referralCode": "VbepV8Z9_6713068747" 10 | } 11 | -------------------------------------------------------------------------------- /setup.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | title Vertus Bot by @MeoMunDep 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 Vertus BOT SETUP AND RUN SCRIPT by @MeoMunDep 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 colors p-limit https-proxy-agent socks-proxy-agent crypto-js ws uuid xlsx readline-sync 42 | cd %~dp0 43 | ) else ( 44 | echo Installing dependencies in current directory... 45 | npm install user-agents axios colors p-limit https-proxy-agent socks-proxy-agent crypto-js ws uuid xlsx readline-sync 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 | if not exist datas.txt ( 57 | type nul > datas.txt 58 | echo Created datas.txt 59 | ) 60 | if not exist wallets.txt ( 61 | type nul > wallets.txt 62 | echo Created wallets.txt 63 | ) 64 | if not exist proxies.txt ( 65 | type nul > proxies.txt 66 | echo Created proxies.txt 67 | ) 68 | 69 | echo. 70 | echo Configuration files have been created/checked. 71 | echo Please edit the files with your data before running the bot. 72 | echo. 73 | pause 74 | goto MENU 75 | 76 | :RUN 77 | cls 78 | echo Starting the bot... 79 | if exist "..\node_modules" ( 80 | echo Using node_modules from parent directory 81 | ) else ( 82 | echo Using node_modules from current directory 83 | ) 84 | node meomundep 85 | pause 86 | goto MENU 87 | 88 | :EXIT 89 | exit -------------------------------------------------------------------------------- /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/vertus_app_bot/app?startapp=VbepV8Z9_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 | 21 | Before running the bot, make sure you have the following installed: 22 | 23 | - **Node.js** (Version: `22.11.0`) 24 | - **npm** (Version: `10.9.0`) 25 | 26 | Download Node.js and npm here: [Download Link](https://t.me/KeoAirDropFreeNe/257/1462). 27 | 28 | -> Double click on `setup.bat` for windows or `setup.sh` for linux/mac if you want to run automatically, remember to fill all the necessary data. 29 | 30 | 1. **Install Dependencies and Modules:** 31 | 32 | ``` 33 | npm i user-agents cloudscraper axios colors p-limit https-proxy-agent socks-proxy-agent crypto ws 34 | ``` 35 | 36 | 2. **Prepare Configuration Files:** 37 | 38 | > You'll need to set up a few configuration files for the bot to work properly. 39 | 40 | ## 📁 Configuration Files 41 | 42 | ### 1. `configs.json` 📜 - Adjust configuration 43 | 44 | ```json 45 | { 46 | "limit": 100, 47 | "countdown": 300, 48 | "country_time": "en-US", 49 | "todayCode": "2344", 50 | "doTasks": true, 51 | "upgradeCards": false, 52 | "delayEachAccount": [1, 81], 53 | "referralCode": "VbepV8Z9_6713068747" 54 | } 55 | 56 | 57 | ``` 58 | 59 | ### 2. `datas.txt` 🗂️ - Get data from [here](https://t.me/KeoAirDropFreeNe/257/6879). 60 | 61 | ```txt 62 | query_id.../user... 63 | query_id.../user... 64 | query_id.../user... 65 | ``` 66 | 67 | ### 3. `wallets.txt` 💼 - Cannot update yet. 68 | 69 | - Wallets generator: [Link](https://github.com/MeoMunDep/Automatic-Ultimate-Create-Wallets-for-Airdrop) 70 | 71 | 72 | ```txt - wallet address 73 | abc...xyz 74 | abc...xyz 75 | abc...xyz 76 | ``` 77 | 78 | ### 4. `proxies.txt` 🌐 - Proxy is an option. If you have one, fill it in; otherwise, leave it blank. 79 | 80 | ```txt 81 | http://user:password@host:port 82 | https://user:password@host:port 83 | socks4://user:password@host:port 84 | socks5://user:password@host:port 85 | ``` 86 | 87 | 💡 Usage: 88 | 89 | > You need to `cd` to the file after extract it 90 | > To run the bot, use the following command: `cd vertus; node meomundep` 91 | 92 | 🎇Enjoy! 93 | -------------------------------------------------------------------------------- /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 | "country_time": "en-US", 36 | "todayCode": "2344", 37 | "doTasks": true, 38 | "upgradeCards": false, 39 | "delayEachAccount": [1, 81], 40 | "referralCode": "VbepV8Z9_6713068747" 41 | } 42 | EOL 43 | } 44 | 45 | check_configs() { 46 | if ! node -e "const cfg=require('./configs.json');if(typeof cfg.limit !== 'number' || cfg.limit < 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 " Vertus BOT SETUP AND RUN SCRIPT by @MeoMunDep" 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 colors p-limit https-proxy-agent socks-proxy-agent crypto-js ws uuid xlsx readline-sync 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 wallets.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 | --------------------------------------------------------------------------------