├── datas.txt ├── proxies.txt ├── meomundep.js ├── setup.bat ├── configs.json ├── README.md └── setup.sh /datas.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proxies.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meomundep.js: -------------------------------------------------------------------------------- 1 | console.log(`Stop updating this game since its price has been down and admin banned many accounts, please choose another scripts!`) 2 | -------------------------------------------------------------------------------- /setup.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | title Reality Rush 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 user-agents axios meo-forkcy-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 meo-forkcy-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 | -------------------------------------------------------------------------------- /configs.json: -------------------------------------------------------------------------------- 1 | { 2 | "limit": 100, 3 | "countdown": 300, 4 | "delayEachAccount": [1, 1], 5 | 6 | "maximumBuildingPrice": 500000000, 7 | "howManyEnergyLimitUpgrade": 5, 8 | "howManyTapMultiplierUpgrade": 5, 9 | "howManyBoardMultiplierUpgrade": 5, 10 | "howManyEnergyRegenSpeedUpgrade": 5, 11 | "howManySweepStakeTicketYouWantToBuy": 1, 12 | "howManyUpgradeCityServicesMultiplier": 5, 13 | 14 | "tappingCount": [10000, 50000], 15 | "doTasks": true, 16 | "watchAds": true, 17 | "autoArrange": true, 18 | "claimTokens": false, 19 | "autoMergeBuilding": true, 20 | "autoUpgradeBuildings": true, 21 | 22 | "stakingPrize": { 23 | "30 USDT – Instant Crypto Boost": 1, 24 | "5 TON – Boost your journey": 1, 25 | "3Lootboxes – Hidden Treasures": 1, 26 | "3 x NFT Pool – Instant Prizes": 1, 27 | "3 x Reality Rush Pool – Instant Prizes Await": 1, 28 | "Premium Lootbox – VIP Treasures": 1, 29 | "5,000 $RRUSH – Game Power-Up": 1, 30 | "50,000 $RRUSH – Power Boost": 1 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /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 | > If you encounter any issues or have questions, feel free to reach out: 6 | 7 | - Contact: [Link](t.me/MeoMunDep) 8 | - Group: [Link](t.me/KeoAirDropFreeNe) 9 | - Channel: [Link](t.me/KeoAirDropFreeNee) 10 | 11 | > Help me with your referral [Link](https://t.me/realityrush_bot/play?startapp=refererID6713068747) 12 | 13 | ## 🚀 Getting Started 14 | 15 | > Remember to download Nodejs version: **22.11.0** and NPM version: **10.9.0** 16 | 17 | To get started with the bot, follow these steps: 18 | 19 | 0. **Dowload NodeJS to run the bot** 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 https-proxy-agent socks-proxy-agent crypto crypto-js 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 | "delayEachAccount": [1, 1], 49 | 50 | "autoUpgradeBuildings": false, 51 | "maximumBuildingPrice": 500000000, 52 | "howManyEnergyLimitUpgrade": 5, 53 | "howManyTapMultiplierUpgrade": 5, 54 | "howManyBoardMultiplierUpgrade": 5, 55 | "howManyEnergyRegenSpeedUpgrade": 5, 56 | "howManyUpgradeCityServicesMultiplier": 5, 57 | 58 | "tappingCount": [10000, 50000], 59 | "doTasks": true, 60 | "autoArrange": true, 61 | "watchAds": true, 62 | "autoMergeBuilding": true, 63 | "claimTokens": false, 64 | 65 | "stakingPrize": { 66 | "30 USDT – Instant Crypto Boost": 1, 67 | "5 TON – Boost your journey": 1, 68 | "3Lootboxes – Hidden Treasures": 1, 69 | "3 x NFT Pool – Instant Prizes": 1, 70 | "3 x Reality Rush Pool – Instant Prizes Await": 1, 71 | "Premium Lootbox – VIP Treasures": 1, 72 | "5,000 $RRUSH – Game Power-Up": 1, 73 | "50,000 $RRUSH – Power Boost": 1 74 | } 75 | } 76 | ``` 77 | 78 | ### 2. `datas.txt` 🗂️ - Get it from here >>> [Link](https://t.me/KeoAirDropFreeNee/1271) 79 | 80 | ```txt 81 | token 82 | token 83 | token 84 | ``` 85 | 86 | ### 3. `wallets.txt` 💼 - Cannot update yet. 87 | 88 | - Wallets generator: [Link](https://github.com/MeoMunDep/Automatic-Ultimate-Create-Wallets-for-Airdrop) 89 | 90 | ```txt - wallet address 91 | abc...xyz 92 | abc...xyz 93 | abc...xyz 94 | ``` 95 | 96 | ### 4. `proxies.txt` 🌐 - Proxy is an option. If you have one, fill it in; otherwise, leave it blank. 97 | 98 | - [Get it from here](https://www.webshare.io/?referral_code=4l5kb3glsce7) 99 | 100 | ```txt 101 | http://host:port 102 | https://host:port 103 | socks4://host:port 104 | socks5://host:port 105 | http://user:pass@host:port 106 | https://user:pass@host:port 107 | socks4://user:pass@host:port 108 | socks5://user:pass@host:port 109 | ``` 110 | 111 | 💡 Usage: 112 | 113 | > You need to `cd` to the file after extract it 114 | > To run the bot, use the following command: `cd "reality rush"; node meomundep` 115 | 116 | - **Updates Channel:** [View channel](https://t.me/KeoAirDropFreeNee) 117 | - **YouTube Channel:** [Watch here](https://www.youtube.com/@keoairdropfreene) 118 | - **Instagram:** [Follow me](https://www.instagram.com/meomundep) 119 | - **Tiktok:** [Follow me](https://www.tiktok.com/@meomundep) 120 | 121 | 🎇Enjoy! 122 | -------------------------------------------------------------------------------- /setup.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;Reality Rush Bot by @MeoMunDep\007" 11 | 12 | 13 | print_green() { 14 | echo -e "${GREEN}$1${NC}" 15 | } 16 | 17 | print_yellow() { 18 | echo -e "${YELLOW}$1${NC}" 19 | } 20 | 21 | print_red() { 22 | echo -e "${RED}$1${NC}" 23 | } 24 | 25 | chmod +x "$0" 26 | 27 | if [ -d "../node_modules" ]; then 28 | print_green "Found node_modules in parent directory" 29 | MODULES_DIR=".." 30 | else 31 | print_green "Using current directory for node_modules" 32 | MODULES_DIR="." 33 | fi 34 | 35 | check_node() { 36 | if ! command -v node &> /dev/null; then 37 | print_red "Node.js not found, installing..." 38 | if [[ "$OSTYPE" == "linux-gnu"* ]]; then 39 | sudo apt update && sudo apt install -y nodejs npm 40 | elif [[ "$OSTYPE" == "darwin"* ]]; then 41 | brew install node 42 | elif [[ "$OSTYPE" == "cygwin" || "$OSTYPE" == "msys" ]]; then 43 | echo "Please install Node.js manually on Windows." 44 | fi 45 | print_green "Node.js installation completed." 46 | else 47 | print_green "Node.js is already installed." 48 | fi 49 | } 50 | check_node 51 | 52 | check_git() { 53 | if ! command -v git &> /dev/null; then 54 | print_red "Git not found, installing..." 55 | if [[ "$OSTYPE" == "linux-gnu"* ]]; then 56 | sudo apt update && sudo apt install -y git 57 | elif [[ "$OSTYPE" == "darwin"* ]]; then 58 | brew install git 59 | elif [[ "$OSTYPE" == "cygwin" || "$OSTYPE" == "msys" ]]; then 60 | echo "Please install Git manually on Windows." 61 | fi 62 | print_green "Git installation completed." 63 | else 64 | print_green "Git is already installed." 65 | fi 66 | } 67 | check_git 68 | 69 | create_default_configs() { 70 | cat > configs.json << EOL 71 | { 72 | "limit": 100, 73 | "countdown": 300, 74 | "delayEachAccount": [1, 1], 75 | 76 | "maximumBuildingPrice": 500000000, 77 | "howManyEnergyLimitUpgrade": 5, 78 | "howManyTapMultiplierUpgrade": 5, 79 | "howManyBoardMultiplierUpgrade": 5, 80 | "howManyEnergyRegenSpeedUpgrade": 5, 81 | "howManySweepStakeTicketYouWantToBuy": 1, 82 | "howManyUpgradeCityServicesMultiplier": 5, 83 | 84 | "tappingCount": [10000, 50000], 85 | "doTasks": true, 86 | "watchAds": true, 87 | "autoArrange": true, 88 | "claimTokens": false, 89 | "autoMergeBuilding": true, 90 | "autoUpgradeBuildings": true, 91 | 92 | "stakingPrize": { 93 | "30 USDT – Instant Crypto Boost": 1, 94 | "5 TON – Boost your journey": 1, 95 | "3Lootboxes – Hidden Treasures": 1, 96 | "3 x NFT Pool – Instant Prizes": 1, 97 | "3 x Reality Rush Pool – Instant Prizes Await": 1, 98 | "Premium Lootbox – VIP Treasures": 1, 99 | "5,000 $RRUSH – Game Power-Up": 1, 100 | "50,000 $RRUSH – Power Boost": 1 101 | } 102 | } 103 | EOL 104 | } 105 | 106 | check_configs() { 107 | 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 108 | print_red "Invalid configuration detected. Resetting to default values..." 109 | create_default_configs 110 | print_green "Configuration reset completed." 111 | fi 112 | } 113 | 114 | print_yellow "Checking configuration files..." 115 | if [ ! -f configs.json ]; then 116 | create_default_configs 117 | print_green "Created configs.json with default values" 118 | fi 119 | 120 | check_configs 121 | 122 | for file in datas.txt proxies.txt; do 123 | if [ ! -f "$file" ]; then 124 | touch "$file" 125 | print_green "Created $file" 126 | fi 127 | done 128 | 129 | print_green "Configuration files have been checked." 130 | 131 | print_yellow "Checking dependencies..." 132 | cd "$MODULES_DIR" 133 | npm install user-agents axios meo-forkcy-colors https-proxy-agent socks-proxy-agent 134 | cd - > /dev/null 135 | print_green "Dependencies installation completed!" 136 | 137 | print_green "Starting the bot..." 138 | node meomundep 139 | --------------------------------------------------------------------------------