Skip to content

MeoMunDep/r2money

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🤖 MeoMunDep r2money Bot - Complete Setup Guide

This comprehensive guide will help you set up and run the MeoMunDep r2money Bot on Windows, macOS, or Linux. The bot automates certain game tasks efficiently and securely.

📋 Table of Contents

Prerequisites

Before setting up the bot, ensure you have the following installed:

  • Python 3.11.9 - Required to run the script
  • Git (optional) - For cloning the repository

Installation Methods

You can choose between standard installation or Docker-based deployment.

⚙️ Standard Installation

1. Install Python

Windows
  • Download Python from python.org
  • During installation, check "Add Python to PATH"
  • Verify installation by opening Command Prompt and typing:
    python --version
macOS
  • Install Homebrew first:

    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  • Install Python using Homebrew:

    brew install python
  • Verify installation:

    python3 --version
Linux
  • For Ubuntu/Debian:

    sudo apt update
    sudo apt install python3 python3-pip -y
  • For CentOS/RHEL:

    sudo yum install python3 python3-pip -y
  • Verify installation:

    python3 --version

2. Install Git (Optional)

Windows
  • Download from git-scm.com
  • Use default settings during installation
macOS
brew install git
Linux (Debian/Ubuntu)
sudo apt install git -y

3. Clone Repository (If using Git)

git clone https://github.com/MeoMunDep/r2money.git
cd r2money

Configuration

Required Files

Ensure you have the following files in your folder:

  • meomundep.py - Main bot script
  • .env - Configuration file
  • privateKeys.txt - Wallet private keys

Configuration Parameters (.env)

Edit the .env file to customize the bot's behavior:

Field Type Description Example Value
ADD_LIQUIDITY Boolean Enable adding liquidity true
ADD_LIQUIDITY_TIMES Integer Number of times to add liquidity 3
ADD_LIQUIDITY_AMOUNT Array [min, max] Random liquidity amount range [1, 11]
DEPOSIT Boolean Enable deposit action true
DEPOSIT_TIMES Integer Number of deposit transactions 1
DEPOSIT_AMOUNT Array [min, max] Random deposit amount range [1, 11]
SWAP Boolean Enable token swap true
SWAP_TIMES Integer Number of swap transactions 1
SWAP_AMOUNT Array [min, max] Random swap amount range [10, 20]
STAKE Boolean Enable staking true
STAKE_TIMES Integer Number of staking actions 1
STAKE_AMOUNT Array [min, max] Random stake amount range [10, 20]
WITHDRAW Boolean Enable withdrawals true
WITHDRAW_TIMES Integer Number of withdrawal transactions 1
WITHDRAW_AMOUNT Array [min, max] Random withdrawal amount range [1, 11]
CLAIM Boolean Enable claim rewards true
CLAIM_TIMES Integer Number of reward claims 1
CLAIM_AMOUNT Array [min, max] Random claim amount range [1, 11]
REFERRAL Boolean Enable using referral codes true
REFERRAL_TIMES Integer Number of referral code usages 10
INTERVAL_SECONDS Integer Time interval between task rounds (in seconds) 86400

Running the Bot

Standard Method

Windows

python meomundep.py

Or double-click the provided run.bat file.

macOS/Linux

python3 meomundep.py

Or make the script executable and run:

chmod +x run.sh && ./run.sh

🔐 File Permissions

Windows
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
Linux/macOS
chmod 600 configs.json privateKeys.txt .env meomundep.py

🔑 Private Keys

📥 Generate wallets here

Each line in privateKeys.txt should contain one private key:

evm privatekey
evm privatekey
evm privatekey

Note: each row represents one wallet/account


Troubleshooting

Bot crashes on startup
  • Ensure all required packages are installed
  • Check your Python version (Python 3.11.9 required)
  • Verify configuration file format
Connection errors
  • Check your internet connection
  • Verify proxy settings if using proxies
  • Check if the required endpoints are accessible
Authentication failures
  • Ensure your private key is correct and not malformed

Security Recommendations

Recommendations
  1. Data Protection:

    • Keep your privateKeys.txt and .env files safe
    • Use file permissions to prevent unauthorized access
  2. Docker Security:

    • Run Docker containers as non-root user:

      docker run -u 1000:1000 meomundep-bot
    • Keep Docker and dependencies updated


Contact and Support


⚠️ Disclaimer: This code is provided "as is" without any warranties. Use it at your own risk. Redistribution or sale of this code in any form is strictly prohibited.

✨ Thank you for using the bot. Good luck and happy farming! 🚀

Releases

No releases published

Packages

No packages published

Languages