Files
shualiangv1/run_monetag_bot.bat

91 lines
2.5 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 真实行为轨迹: 首页 → 游戏 → 返回首页 → 再次游戏 → 退出
echo 智能识别: 不猜测API只处理真实检测内容
echo 精准点击率: 10%%
echo 主要地区: 美国
echo 真实设备: 多种手机型号模拟
echo IP轮换: 每次会话后自动轮换代理
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
)
if not exist real_user_database.py (
echo 用户数据库文件 real_user_database.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 真实设备: iPhone 14、Galaxy S24、Pixel 7等
echo 行为轨迹: 首页浏览 → 游戏 → 返回首页 → 再次游戏 → 退出
echo 智能识别: 不猜测API端点只处理真实检测内容
echo 精准点击率: 10%%
echo 代理轮换: 每次会话后自动切换IP
echo 严谨原则: 只处理真实检测到的内容
echo 详细统计: 检测率、点击率、会话时长、代理轮换等
echo.
echo 启动MonetTag真实用户行为刷量机器人...
python monetag_bot.py
echo.
echo MonetTag真实用户行为刷量任务完成
echo 详细日志请查看 monetag_bot.log 文件
echo MonetTag真实用户行为特点
echo - 针对Zone 157708优化
echo - 真实手机设备模拟iPhone、Android、iPad
echo - 完整用户行为轨迹模拟
echo - 智能识别MonetTag脚本
echo - 提取真实广告URL
echo - 不猜测API端点
echo - 严谨的错误处理
echo - 每次会话后自动轮换代理IP
echo - 完整的用户行为统计
pause