Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Auto increase points, solve quizzes.

NotificationsYou must be signed in to change notification settings

MeoMunDep/Bless

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 

Repository files navigation

This comprehensive guide will help you set up and run the MeoMunDep 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
  • Docker (optional) - For containerized deployment

🚀 Installation Methods

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

⚙️ Standard Installation

1. Install Python

Windows
  • Download Python frompython.org
  • During installation, check "Add Python to PATH"
  • Verify installation by opening Command Prompt and typing:
    python --version
macOS
  • InstallHomebrew 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 updatesudo 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 fromgit-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/Bless.gitcd Bless/dist

4. Install Required PacBlesses

Navigate to the bot folder and run:

Windows
pip install -r requirements.txt
macOS/Linux
pip3 install -r requirements.txt

🐳 Docker Installation

1. Install Docker

Windows/macOS
Linux
curl -fsSL https://get.docker.com| shsudo usermod -aG docker$USERnewgrp docker

⚙️ Configuration

Required Files

Ensure you have the following files in your folder:

  • meomundep.py - Main bot script
  • configs.json - Configuration file
  • datas.txt - Bot data
  • proxies.txt - List of proxies (optional)
  • requirements.txt - List of required pacBlesses

requirements.txt Content

aiohttpaiohttp_proxycloudscrapercoloramaCryptodome

Configurations (configs.json)

Edit theconfigs.json file to customize the bot's behavior:

{"timeZone":"en-US","timeToRestartAllAccounts":300,"howManyAccountsRunInOneTime":100,"delayEachAccount": [1,1],"skipInvalidProxy":false,"referralCode":"BE3JR9"}

Configuration Parameters:

  • timeZone: Time zone setting (e.g., "en-US")
  • howManyAccountsRunInOneTime: Number of accounts to run simultaneously
  • delayEachAccount: Random delay range between processing accounts [min, max] in seconds
  • timeToRestartAllAccounts: Time to wait before restarting all accounts (in seconds)
  • skipInvalidProxy: Whether to skip accounts with invalid proxies
  • referralCodes: Add your referral code (optional)

▶️ Running the Bot

Standard Method

Windows
python meomundep.py

Or double-click the providedrun.bat file.

macOS/Linux
python3 meomundep.py

Or make the script executable and run:

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

if you want to update the bot:

git pull

Docker Method

Build and Run with Docker
# Build imagedocker build -t meomundep-bot.# Run containerdocker run -it --rm \  -v$(pwd)/data:/app/data \  --name meomundep-container \  meomundep-bot
Using Docker Compose
docker-compose up --build

🔒 File Permissions

Windows

Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass

Linux/macOS

chmod 600 configs.json datas.txt proxies.txt meomundep.py

🌐 Datas and Proxies

  • Learn how to retrieve data and pubkey from here:data -pubKeys
  • datas.txt
ey...ey...ey...
  • pubKeys.txt
12...12...12...

The bot supports various proxy formats:

  • HTTP/HTTPS:http://username:password@host:port orhttp://host:port
  • SOCKS4/SOCKS5:socks4://username:password@host:port orsocks5://host:port

Add proxies toproxies.txt, one proxy per line. Example formats:

http://host:porthttp://user:pass@host:portsocks5://host:portsocks5://user:pass@host:port

Leave the file empty if you don't want to use proxies.

❓ Troubleshooting

Bot crashes on startup
  • Ensure all required pacBlesses 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 bot data indatas.txt andpubKeys is correct
  • Check if your IP or proxy is blocked

🛡️ Security Recommendations

  1. Data Protection:

    • Keep yourdatas.txt and configuration files secure
    • Use file permissions to restrict access
  2. Docker Security:

    • Run Docker containers as non-root user:
      docker run -u 1000:1000 meomundep-bot
    • Keep your Docker installation up-to-date
  3. Proxy Usage:

    • Use secure proxies from trusted providers
    • Rotate proxies periodically to avoid IP bans

📝 Security Notice

The executable file is obfuscated to protect the source code. This is normal and doesn't indicate malicious behavior.

📞 Contact and Support

If you encounter any issues or have questions, feel free to reach out:

Your support is greatly appreciated! 🐱


Note: This bot is for educational purposes only. So do not sell or steal it.


[8]ページ先頭

©2009-2025 Movatter.jp