Skip to content
This repository was archived by the owner on Oct 31, 2025. It is now read-only.

MeoMunDep/Stobix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

24 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ€– MeoMunDep stobix Bot - Complete Setup Guide

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 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/stobix.git
cd stobix

4. Install Required Packages

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 | sh
sudo usermod -aG docker $USER
newgrp docker

2. Create Dockerfile

Create a file named Dockerfile with the following content:

FROM python:3.10.11-alpine3.18

RUN apk add --no-cache build-base libffi-dev openssl-dev

WORKDIR /app

COPY requirements.txt .

RUN pip3 install --upgrade pip setuptools wheel
RUN pip3 install --no-warn-script-location --no-cache-dir -r requirements.txt

COPY . .

CMD ["python", "meomundep.py"]

3. Create docker-compose.yml (Optional)

Create a file named docker-compose.yml with the following content:

version: '3.8'
services:
  stobix:
    container_name: 'stobix'
    build:
      context: .
    stop_signal: SIGINT
    restart: unless-stopped
    command: 'python meomundep.py -a 1 -m y'
    volumes:
      - .:/app
    working_dir: /app
    tty: true

Configuration

πŸ“‚ Required Files

Ensure you have the following files in your folder:

  • meomundep.py - Main bot script
  • configs.json - Configuration file
  • privateKeys.txt - Bot data
  • proxies.txt - List of proxies (optional)
  • requirements.txt - List of required packages
πŸ“¦ requirements.txt Content
aiohttp
aiohttp_proxy
beautifulsoup4
base58
cloudscraper
colorama
Cryptodome
nacl
solana
web3
βš™οΈ Configurations (configs.json)

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

{
  "delayEachAccount": [5, 8],
  "timeToRestartAllAccounts": 300,
  "howManyAccountsRunInOneTime": 10,
  "doTasks": true,
}
πŸ“Š Configuration Parameters Table
Field Type Description Example Value
delayEachAccount Array [min, max] Random delay range (in seconds) between processing accounts [5, 8]
timeToRestartAllAccounts Integer Time (in seconds) to wait before restarting all accounts 300
howManyAccountsRunInOneTime Integer Number of accounts to run simultaneously 10
doTasks Boolean Enable automatic task execution true

▢️ 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

For obfuscated versions:

chmod +x meomundep
./meomundep
Docker Method

Build and Run with Docker

docker build -t meomundep .
docker run -it --rm -v ${PWD}/data:/app/data --name stobix-container stobix-image

Using Docker Compose

docker-compose up --build

File Permissions

Windows
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
Linux/macOS
chmod 600 configs.json privateKeys.txt proxies.txt meomundep.py
πŸ“„ Private Keys and Proxies
0x...
0x...
0x...
  • If you are using proxies, add them to proxies.txt. Leave the file blank if not using proxies. Supported formats: πŸ“₯ Free proxy from Webshare
http://host:port
https://host:port
socks4://host:port
socks5://host:port
http://user:password@host:port
https://user:password@host:port
socks4://user:password@host:port
socks5://user:password@host:port

Note: each row for each 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 bot data is correct
  • Check if your IP or proxy is blocked

Security Recommendations

Recommendations
  1. Data Protection:

    • Keep your privateKeys.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 stobix
    • 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

⚠️ Disclaimer: This code is provided "as is" without any warranties. Use it at your own risk. You are solely responsible for any consequences arising from its use. Redistribution or sale of this code in any form is strictly prohibited.

✨ Thank you for using the bot, hope you earn from my scripts! Good luck! πŸš€


⬆️ Back to top