Files
shualiangv1/run_monetag_bot.bat
huangzhenpc cba3421b2c MonetTag专用刷量机器人版本
-  新增MonetTag专用刷量机器人 (monetag_bot.py)
-  添加MonetTag专用配置文件 (monetag_config.json)
-  添加一键启动脚本 (run_monetag_bot.bat)
-  添加详细使用说明 (MonetTag刷量机器人使用说明.md)
-  删除通用广告机器人文件(改为专用版本)

核心特性:
-  Zone ID: 157708
-  点击率控制: 10%
-  美国IP代理支持
-  手机端优先 (90%)
-  支持5种广告类型
-  展示量+点击量双重刷量
2025-07-18 14:43:23 +08:00

80 lines
2.0 KiB
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@echo off
chcp 65001 >nul
title MonetTag 专用刷量机器人
echo ===============================================================
echo 🎯 MonetTag 专用刷量机器人
echo ===============================================================
echo 💡 核心特性:
echo 🎯 MonetTag Zone: 157708
echo 📊 点击率控制: 10%
echo 🇺🇸 主要地区: 美国
echo 📱 主要设备: 手机端 (90%)
echo 🔄 支持广告类型: Push, Banner, Native, Popunder
echo 💰 展示量 + 点击量双重刷量
echo.
:: 检查Python
python --version >nul 2>&1
if %errorlevel% neq 0 (
echo ❌ Python未安装请先安装Python 3.7+
pause
exit /b 1
)
echo ✅ Python已安装
python --version
:: 检查必要文件
if not exist monetag_config.json (
echo ❌ 配置文件 monetag_config.json 不存在!
pause
exit /b 1
)
if not exist monetag_bot.py (
echo ❌ MonetTag机器人文件 monetag_bot.py 不存在!
pause
exit /b 1
)
echo ✅ 所有文件检查完成
:: 安装依赖
echo.
echo 📦 检查并安装依赖...
pip install requests --quiet
if %errorlevel% neq 0 (
echo ❌ 依赖安装失败!
pause
exit /b 1
)
echo ✅ 依赖安装成功
echo.
echo 🎯 MonetTag 刷量特性:
echo 📊 Zone ID: 157708
echo 🇺🇸 美国IP代理: 支持
echo 📱 手机端用户: 90%概率
echo 🎭 真实用户行为: 完全模拟
echo 📈 展示量统计: 实时追踪
echo 🖱️ 点击量控制: 10%点击率
echo 🔄 5种广告类型: Push、Banner、Native、Popunder、In-Page
echo ⏱️ 智能延迟: 30-90秒间隔
echo 📊 详细统计: 成功率、点击率、错误率
echo.
echo 🚀 启动MonetTag刷量机器人...
python monetag_bot.py
echo.
echo 🏁 MonetTag刷量任务完成
echo 📝 详细日志请查看 monetag_bot.log 文件
echo 💡 MonetTag专用特点
echo - 针对Zone 157708优化
echo - 美国流量为主
echo - 手机端设备特征
echo - 10%精准点击率控制
echo - 展示量和点击量双重刷量
echo - 支持代理IP配置
pause