2020蚂蚁森林自动收能量-保持更新-程序员宅基地

技术标签: 脚本语言  Auto.js  js  游戏  

最近一直在研究Auto.js 就顺手写了个脚本,就是各种帮你玩日常小游戏,能薅一点是一点!

来个最直接的方式,百度云下载地址 链接:https://pan.baidu.com/s/1jradOvFF9-z53ycNaUd8MQ 密码:r8rh
说下APP使用方法,蚂蚁森林,主要在支付宝首页有蚂蚁森林入口,如果没有,点击更多去添加
代码完全开元,需要参考请拿走!
Github地址:https://github.com/MasterSumCloud/YangmaoHelper
提BUG群:567679111
最新版请到群里下载,最新支持蚂蚁庄园的一些小游戏,努力更新中!
下面就直接附上代码啦:代码已经更新:更新日期12月22日(暂时不会有什么大更新了,基本稳定了)
如果不是最新请移至Github获取最新完整代码

let deviceWidth = device.width;
let deviceHeight = device.height;

function startAntForest(playFarm, getAliScore) {
    
    //进入支付宝
    launch("com.eg.android.AlipayGphone");
    sleep(1000);
    let witeInHome = 5;
    while (witeInHome > 0) {
    
        let inHome = id("tab_description").text("首页").findOnce();
        if (inHome == null) {
    
            sleep(1000);
            witeInHome--;
        } else {
    
            witeInHome = -10;
        }
    }
    //是否需要领取积分
    getNeedGetAliScore(getAliScore);
    //判断是否已经在游戏界面
    let gamePartHome = id("J_af_home").findOnce();

    if (witeInHome != -10 && gamePartHome == null) {
    
        toastLog("不在支付宝首页,也不在游戏界面!退出");
        exit();
    }
    //在首页寻找 蚂蚁深林和蚂蚁庄园的入口
    let antForest = id("app_text").textContains("蚂蚁森林").findOnce();
    if (antForest != null || gamePartHome != null) {
    
        //在蚂蚁森林
        if (gamePartHome == null) {
    
            //进入蚂蚁深林
            toastLog("进入蚂蚁深林");
            click(antForest.bounds().centerX(), antForest.bounds().centerY());
            sleep(5000);
        }
        toastLog("查询是否有能量可以收集");
        collectEnergy();
        //滑动半个屏幕
        swipe(deviceWidth / 2, deviceHeight * 0.8, deviceWidth / 2, deviceHeight * 0.2, 1000);
        //寻找定位点
        let weekTop = className("android.view.View").textContains("周排行榜").findOnce();
        if (weekTop != null) {
    
            weekTop.click();
            swipe(deviceWidth / 2, weekTop.bounds().top, deviceWidth / 2, 0, 1000);
        }
        toastLog("开始寻找偷能量");
        // seekToSteal(true);
        //去全部页面
        let seekMore = className("android.view.View").textContains("查看更多好友").findOnce();
        if (seekMore != null) {
    
            seekMore.click();
            sleep(3000);
            //判断是否还有更多
            let screen = getScreenImg();
            let noMore = images.read("./res/no_more.png");
            let hasMore = images.matchTemplate(screen, noMore, {
     threshold: 0.8, region: [deviceWidth / 3, deviceHeight - 150], max: 1 }).matches.length == 0;
            console.log("是否有更多", hasMore);
            let maxSearchTime = 32;//最大限制次数
            let handImg = images.read("./res/ghand.png");
            while (hasMore && maxSearchTime > 0) {
    
                let finded = getCanStealfriend(handImg);
                if (finded != null && finded.length > 0) {
    
                    finded.forEach(item => {
    
                        console.log("找到的点", item);
                        stealAndBack(item);
                    });
                }

                sleep(1000);
                swipe(deviceWidth / 2, deviceHeight * 0.8, deviceWidth / 2, deviceHeight * 0.1, 1000);
                if (maxSearchTime < 27) {
    //前5次不判断是否到底部
                    let screen2 = getScreenImg();
                    hasMore = images.matchTemplate(screen2, noMore, {
     threshold: 0.8, region: [deviceWidth / 3, deviceHeight - 150], max: 1 }).matches.length == 0;
                    if (!hasMore) {
    
                        toastLog("已经没有更多了")
                        break;
                    }
                }
                maxSearchTime--;
            }
            //回收资源
            handImg.recycle();
            noMore.recycle();
        }

        if (playFarm) {
    
            //返回一级
            back();
            sleep(1000);
            //滑动到顶部
            swipe(deviceWidth / 2, deviceHeight * 0.1, deviceWidth / 2, deviceHeight * 0.8, 1000);
            swipe(deviceWidth / 2, deviceHeight * 0.1, deviceWidth / 2, deviceHeight * 0.8, 1000);
            let antFf = id("J_antfarm_container").text("蚂蚁庄园").findOnce();
            if (antFf) {
    
                antFf.click();
                let antFramGame = require("./antFarm.js")
                antFramGame();
            }
        }
        back();
        sleep(500);
        back();
        sleep(500);
        back();
        sleep(500);
        toastLog("完成了");
    } else {
    
        toastLog("不在游戏界面,也不再主界面,结束");
        exit();
    }

}

function seekToSteal(simple) {
    
    if (simple) {
    
        let canSteal = className("android.widget.Button").textContains("可收取").findOnce() != null;
        while (canSteal) {
    
            stealAndBack(canSteal);
            //继续寻找
            let canStealItem = className("android.widget.Button").textContains("可收取").findOnce();
            if (canStealItem != null) {
    
                canStealItem.click();
            } else {
    
                canSteal = false;
                break;
            }
        }
    } else {
    
        let finded = getCanStealfriend();
        if (finded != null && finded.length > 0) {
    
            finded.forEach(item => {
    
                stealAndBack(item);
            });
        }
    }
}



function stealAndBack(item) {
    
    click(deviceWidth / 2, item.point.y + 10);
    sleep(3000);
    //判断进入了游戏布局 否则不返回
    let gameV = id("J_app_outter").findOnce();
    if (gameV != null) {
    
        //开始偷
        collectEnergy();
        back();
        sleep(1000);
    }
}

function collectEnergy() {
    
    let hasSelfPower = className("android.widget.Button").textContains("收集能量").findOnce() != null;
    while (hasSelfPower) {
    
        toastLog("开始收集");
        let collectSelf = className("android.widget.Button").textContains("收集能量").findOnce();
        if (collectSelf != null) {
    
            click(collectSelf.bounds().centerX(), collectSelf.bounds().centerY());
            sleep(300);
        } else {
    
            toastLog("采集完毕");
            hasSelfPower = false;
            break;
        }
    }
}

/**
 * 从排行榜 找到可以收取能量的
 */
function getCanStealfriend(handImg) {
    
    let img = getScreenImg();
    let pList = images.matchTemplate(img, handImg, {
     threshold: 0.8, region: [deviceWidth * 0.9, deviceHeight * 0.16], max: 9 });
    if (pList != null) {
    
        console.log("找到的做标记", pList.matches);
        return pList.matches;
    }
}

/**
 * 获取屏幕图片
 */
function getScreenImg() {
    
    let screenPic = captureScreen();
    console.log(screenPic);
    sleep(100);
    if (screenPic == null || typeof (screenPic) == "undifined") {
    
        toastLog("截图失败,退出脚本");
        exit();
    } else {
    
        return screenPic;
    }
}

function getNeedGetAliScore(need) {
    
    //如果需要领取积分
    if (need) {
    
        let inMine = id("tab_description").text("我的").findOnce();
        click(inMine.bounds().centerX(), inMine.bounds().centerY());
        sleep(1000);
        //判断当前有没有积分可以领取
        let hasScore = textContains("个积分待领取").findOnce();
        if (hasScore != null) {
    
            let backCount = 0;
            let memeberAli = id("item_left_text").text("支付宝会员").findOnce();
            if (memeberAli != null) {
    
                click(memeberAli.bounds().centerX(), memeberAli.bounds().centerY());
                backCount++;
                sleep(2000);
                let getScoreV = className("android.view.View").text("领积分").findOnce();
                if (getScoreV != null) {
    
                    click(getScoreV.bounds().centerX(), getScoreV.bounds().centerY());
                    sleep(2000);
                    backCount++;
                    let clickGetScore = className("android.view.View").text("点击领取").findOnce();
                    while (clickGetScore != null) {
    
                        click(clickGetScore.bounds().centerX(), clickGetScore.bounds().centerY());
                        sleep(300);
                        clickGetScore = className("android.view.View").text("点击领取").findOnce();
                    }
                }
            }

            for (let i = 0; i < backCount; i++) {
    
                back();
                sleep(500);
            }
        } else {
    
            toastLog("没有积分可领取")
        }
        let inHome = id("tab_description").text("首页").findOnce();
        click(inHome.bounds().centerX(), inHome.bounds().centerY());
        sleep(500);
    }
}
// collectEnergy();
module.exports = startAntForest;

最新请到Github下载;
还有其他功能正在完善中,有什么好的需要薅的,可以留言,人多妥妥的!!!

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/SummerCloudXT/article/details/103591536

智能推荐

Docker 快速上手学习入门教程_docker菜鸟教程-程序员宅基地

文章浏览阅读2.5w次,点赞6次,收藏50次。官方解释是,docker 容器是机器上的沙盒进程,它与主机上的所有其他进程隔离。所以容器只是操作系统中被隔离开来的一个进程,所谓的容器化,其实也只是对操作系统进行欺骗的一种语法糖。_docker菜鸟教程

电脑技巧:Windows系统原版纯净软件必备的两个网站_msdn我告诉你-程序员宅基地

文章浏览阅读5.7k次,点赞3次,收藏14次。该如何避免的,今天小编给大家推荐两个下载Windows系统官方软件的资源网站,可以杜绝软件捆绑等行为。该站提供了丰富的Windows官方技术资源,比较重要的有MSDN技术资源文档库、官方工具和资源、应用程序、开发人员工具(Visual Studio 、SQLServer等等)、系统镜像、设计人员工具等。总的来说,这两个都是非常优秀的Windows系统镜像资源站,提供了丰富的Windows系统镜像资源,并且保证了资源的纯净和安全性,有需要的朋友可以去了解一下。这个非常实用的资源网站的创建者是国内的一个网友。_msdn我告诉你

vue2封装对话框el-dialog组件_<el-dialog 封装成组件 vue2-程序员宅基地

文章浏览阅读1.2k次。vue2封装对话框el-dialog组件_

MFC 文本框换行_c++ mfc同一框内输入二行怎么换行-程序员宅基地

文章浏览阅读4.7k次,点赞5次,收藏6次。MFC 文本框换行 标签: it mfc 文本框1.将Multiline属性设置为True2.换行是使用"\r\n" (宽字符串为L"\r\n")3.如果需要编辑并且按Enter键换行,还要将 Want Return 设置为 True4.如果需要垂直滚动条的话将Vertical Scroll属性设置为True,需要水平滚动条的话将Horizontal Scroll属性设_c++ mfc同一框内输入二行怎么换行

redis-desktop-manager无法连接redis-server的解决方法_redis-server doesn't support auth command or ismis-程序员宅基地

文章浏览阅读832次。检查Linux是否是否开启所需端口,默认为6379,若未打开,将其开启:以root用户执行iptables -I INPUT -p tcp --dport 6379 -j ACCEPT如果还是未能解决,修改redis.conf,修改主机地址:bind 192.168.85.**;然后使用该配置文件,重新启动Redis服务./redis-server redis.conf..._redis-server doesn't support auth command or ismisconfigured. try

实验四 数据选择器及其应用-程序员宅基地

文章浏览阅读4.9k次。济大数电实验报告_数据选择器及其应用

随便推点

灰色预测模型matlab_MATLAB实战|基于灰色预测河南省社会消费品零售总额预测-程序员宅基地

文章浏览阅读236次。1研究内容消费在生产中占据十分重要的地位,是生产的最终目的和动力,是保持省内经济稳定快速发展的核心要素。预测河南省社会消费品零售总额,是进行宏观经济调控和消费体制改变创新的基础,是河南省内人民对美好的全面和谐社会的追求的要求,保持河南省经济稳定和可持续发展具有重要意义。本文建立灰色预测模型,利用MATLAB软件,预测出2019年~2023年河南省社会消费品零售总额预测值分别为21881...._灰色预测模型用什么软件

log4qt-程序员宅基地

文章浏览阅读1.2k次。12.4-在Qt中使用Log4Qt输出Log文件,看这一篇就足够了一、为啥要使用第三方Log库,而不用平台自带的Log库二、Log4j系列库的功能介绍与基本概念三、Log4Qt库的基本介绍四、将Log4qt组装成为一个单独模块五、使用配置文件的方式配置Log4Qt六、使用代码的方式配置Log4Qt七、在Qt工程中引入Log4Qt库模块的方法八、获取示例中的源代码一、为啥要使用第三方Log库,而不用平台自带的Log库首先要说明的是,在平时开发和调试中开发平台自带的“打印输出”已经足够了。但_log4qt

100种思维模型之全局观思维模型-67_计算机中对于全局观的-程序员宅基地

文章浏览阅读786次。全局观思维模型,一个教我们由点到线,由线到面,再由面到体,不断的放大格局去思考问题的思维模型。_计算机中对于全局观的

线程间控制之CountDownLatch和CyclicBarrier使用介绍_countdownluach于cyclicbarrier的用法-程序员宅基地

文章浏览阅读330次。一、CountDownLatch介绍CountDownLatch采用减法计算;是一个同步辅助工具类和CyclicBarrier类功能类似,允许一个或多个线程等待,直到在其他线程中执行的一组操作完成。二、CountDownLatch俩种应用场景: 场景一:所有线程在等待开始信号(startSignal.await()),主流程发出开始信号通知,既执行startSignal.countDown()方法后;所有线程才开始执行;每个线程执行完发出做完信号,既执行do..._countdownluach于cyclicbarrier的用法

自动化监控系统Prometheus&Grafana_-自动化监控系统prometheus&grafana实战-程序员宅基地

文章浏览阅读508次。Prometheus 算是一个全能型选手,原生支持容器监控,当然监控传统应用也不是吃干饭的,所以就是容器和非容器他都支持,所有的监控系统都具备这个流程,_-自动化监控系统prometheus&grafana实战

React 组件封装之 Search 搜索_react search-程序员宅基地

文章浏览阅读4.7k次。输入关键字,可以通过键盘的搜索按钮完成搜索功能。_react search