├── datas.txt ├── proxies.txt ├── configs.json ├── meomundep.js ├── README.md ├── setup.bat └── setup.sh /datas.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proxies.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs.json: -------------------------------------------------------------------------------- 1 | { "limit": 100, "countdown": 300 } 2 | -------------------------------------------------------------------------------- /meomundep.js: -------------------------------------------------------------------------------- 1 | console.log("THIS GAME IS ENDED, PLEASE CHOOSE ANOTHER BOT") 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 📞 Contact 2 | 3 | > If you encounter any issues or have questions, feel free to reach out: 4 | 5 | - Contact: [Link](t.me/MeoMunDep) 6 | - Group: [Link](t.me/KeoAirDropFreeNe) 7 | - Channel: [Link](t.me/KeoAirDropFreeNee) 8 | 9 | ## 🚀 Getting Started 10 | 11 | To get started with the bot, follow these steps: 12 | 13 | 0. **Dowload NodeJS to run the bot** 14 | 15 | -> [Link](https://t.me/KeoAirDropFreeNe/257/1462) 16 | 17 | 1. **Install Dependencies and Modules:** 18 | 19 | ``` 20 | npm i user-agents cloudscraper axios colors p-limit https-proxy-agent socks-proxy-agent crypto ws 21 | ``` 22 | 23 | 2. **Prepare Configuration Files:** 24 | 25 | > You'll need to set up a few configuration files for the bot to work properly. 26 | 27 | ## 📁 Configuration Files 28 | 29 | ### 1. `configs.json` 📜 - Adjust configuration 30 | 31 | ```json 32 | { 33 | "limit": 5, //number of accounts run in a row 34 | "countdown": 300, //time to restarts all the accounts - count by seconds 35 | "country_time": "vi-VN" //timestamp base on the country 36 | } 37 | ``` 38 | 39 | ### 2. `datas.txt` 🗂️ - Get it from here >>> [Link](https://t.me/KeoAirDropFreeNe/257/6879) 40 | 41 | ```txt 42 | query_id.../user... 43 | query_id.../user... 44 | query_id.../user... 45 | ``` 46 | 47 | ### 3. `wallets.txt` 💼 - Cannot update yet. 48 | 49 | ```txt - wallet address 50 | abc...xyz 51 | abc...xyz 52 | abc...xyz 53 | ``` 54 | 55 | ### 4. `proxies.txt` 🌐 - Proxy is an option. If you have one, fill it in; otherwise, leave it blank. 56 | 57 | ```txt 58 | http://user:password@host:port 59 | https://user:password@host:port 60 | socks4://user:password@host:port 61 | socks5://user:password@host:port 62 | ``` 63 | 64 | 💡 Usage: 65 | 66 | > You need to `cd` to the file after extract it 67 | > To run the bot, use the following command: `node meomundep` 68 | 69 | 🎇Enjoy! 70 | -------------------------------------------------------------------------------- /setup.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | title Tronkeeper 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 Tronkeeper 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 configs.json ( 57 | echo {> configs.json 58 | echo "timeZone": "en-US",>> configs.json 59 | echo "rotateProxy": false,>> configs.json 60 | echo "skipInvalidProxy": false,>> configs.json 61 | echo "proxyRotationInterval": 2,>> configs.json 62 | echo "delayEachAccount": [5, 8],>> configs.json 63 | echo "timeToRestartAllAccounts": 300,>> configs.json 64 | echo "howManyAccountsRunInOneTime": 100,>> configs.json 65 | echo "doTasks": true,>> configs.json 66 | echo "playGames": true,>> configs.json 67 | echo "referralCode": "">> configs.json 68 | echo }>> configs.json 69 | echo Created configs.json 70 | ) 71 | 72 | if not exist datas.txt ( 73 | type nul > datas.txt 74 | echo Created datas.txt 75 | ) 76 | if not exist wallets.txt ( 77 | type nul > wallets.txt 78 | echo Created wallets.txt 79 | ) 80 | if not exist proxies.txt ( 81 | type nul > proxies.txt 82 | echo Created proxies.txt 83 | ) 84 | 85 | echo. 86 | echo Configuration files have been created/checked. 87 | echo Please edit the files with your data before running the bot. 88 | echo. 89 | pause 90 | goto MENU 91 | 92 | :RUN 93 | cls 94 | echo Starting the bot... 95 | if exist "..\node_modules" ( 96 | echo Using node_modules from parent directory 97 | ) else ( 98 | echo Using node_modules from current directory 99 | ) 100 | node MeoMunDep 101 | pause 102 | goto MENU 103 | 104 | :EXIT 105 | exit 106 | -------------------------------------------------------------------------------- /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 | "timeZone": "en-US", 34 | "rotateProxy": false, 35 | "skipInvalidProxy": false, 36 | "proxyRotationInterval": 2, 37 | "delayEachAccount": [5, 8], 38 | "timeToRestartAllAccounts": 300, 39 | "howManyAccountsRunInOneTime": 10, 40 | "doTasks": true, 41 | "playGames": true, 42 | "referralCode": "" 43 | } 44 | EOL 45 | } 46 | 47 | check_configs() { 48 | 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 49 | print_red "Invalid configuration detected. Resetting to default values..." 50 | create_default_configs 51 | print_green "Configuration reset completed." 52 | fi 53 | } 54 | 55 | while true; do 56 | clear 57 | echo "============================================================================" 58 | echo " Tronkeeper BOT SETUP AND RUN SCRIPT by @MeoMunDep" 59 | echo "============================================================================" 60 | echo 61 | echo "Current directory: $(pwd)" 62 | echo "Node modules directory: $MODULES_DIR/node_modules" 63 | echo 64 | echo "1. Install/Update Node.js Dependencies" 65 | echo "2. Create/Edit Configuration Files" 66 | echo "3. Run the Bot" 67 | echo "4. Exit" 68 | echo 69 | read -p "Enter your choice (1-4): " choice 70 | 71 | case $choice in 72 | 1) 73 | clear 74 | print_yellow "Installing/Updating Node.js dependencies..." 75 | cd "$MODULES_DIR" 76 | npm install user-agents axios colors p-limit https-proxy-agent socks-proxy-agent crypto-js ws uuid xlsx readline-sync 77 | cd - > /dev/null 78 | print_green "Dependencies installation completed!" 79 | read -p "Press Enter to continue..." 80 | ;; 81 | 2) 82 | clear 83 | print_yellow "Setting up configuration files..." 84 | 85 | if [ ! -f configs.json ]; then 86 | create_default_configs 87 | print_green "Created configs.json with default values" 88 | fi 89 | 90 | check_configs 91 | 92 | for file in datas.txt wallets.txt proxies.txt; do 93 | if [ ! -f "$file" ]; then 94 | touch "$file" 95 | print_green "Created $file" 96 | fi 97 | done 98 | 99 | print_green "\nConfiguration files have been created/checked." 100 | print_yellow "Please edit the files with your data before running the bot." 101 | read -p "Press Enter to continue..." 102 | ;; 103 | 3) 104 | clear 105 | print_yellow "Checking configuration before starting..." 106 | if ! check_configs; then 107 | print_red "Error: Invalid configuration detected. Please run option 2 to fix configuration." 108 | read -p "Press Enter to continue..." 109 | continue 110 | fi 111 | 112 | print_green "Starting the bot..." 113 | if [ -d "../node_modules" ]; then 114 | print_green "Using node_modules from parent directory" 115 | else 116 | print_green "Using node_modules from current directory" 117 | fi 118 | node meomundep 119 | read -p "Press Enter to continue..." 120 | ;; 121 | 4) 122 | print_green "Exiting..." 123 | exit 0 124 | ;; 125 | *) 126 | print_red "Invalid option. Please try again." 127 | read -p "Press Enter to continue..." 128 | ;; 129 | esac 130 | done 131 | --------------------------------------------------------------------------------