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

智能推荐

元素选择器之排除特定元素_input排他选择器-程序员宅基地

文章浏览阅读2.1k次。 需求如下:该搜索框是对整个页面的input检索 ,但与弹出层中的input冲突 博主几经辗转 简单处理 解决问题,思路如下:排除掉特定class的input。代码如下:$('input:not(.pop)', this.footer()).on('keyup change', function () { if (that.search() !== th..._input排他选择器

使用JAXB进行XML与JavaBean的转换(支持泛型)_jaxb 泛型-程序员宅基地

文章浏览阅读5.6k次,点赞6次,收藏20次。看到别人有个1024的勋章,特意留了一篇在今年的10.24日,看看会不会获得。在日常开发中可能涉及接口之间的相互调用,虽然在现在微服务的理念推广下,很多公司都采用轻量级的JSON格式做为序列化的格式,但是不乏有些公司还是有一些XML格式的报文,最近就在对接某个合作方的时候遇到了XML报文。在JSON报文爽快的转换下很难试用一个一个的拿报文参数,还是希望能直接将报文转换成Bean。接下来就了解到..._jaxb 泛型

python numpy学习笔记_ndarray的位置-程序员宅基地

文章浏览阅读1.2k次。numpy的主要数据对象是多维数组,其中包含相同类型的元素,通常是数字类型,每个元素都有一个索引。使用numpy前通常要导入包。import numpy as np目录类型维度创建运算索引和切片类型numpy的数组被称为ndarray。numpy.array只处理一维数组,而ndarray对象才提供更多功能。a = np.array([[1, 2, 3], [4, 5, 6]])type(a) # <class 'numpy.ndarray'>dtype属性可以获得元素的数_ndarray的位置

我的世界java版gamemode指令_《我的世界》Java版常用指令代码大全!你想要的都在这里了!...-程序员宅基地

文章浏览阅读1.6w次。还在苦于网上找到的一些指令已经不适用了吗?还在苦于有些地方的指令有误吗?还在苦于有些地方整理的指令不够全面吗?那么你来对地方了!小编为大家整理了《我的世界》原版游戏常用的指令,这些基本足以满足各位的基本需求了!大家来一起看看吧!注:表示的是必须输入的部分,[方括号]表示的是可选择性输入的部分基本命令列表命令描述/?/help的替代命令,提供命令使用帮助。/ban + 玩家名字将玩家加入封禁列表。/..._gamemode指令java

Spring Boot 结合shiro做第三方登录验证_shiro 第三方token登录-程序员宅基地

文章浏览阅读1.5w次,点赞3次,收藏3次。Spring Boot 结合shiro做第三方登录验证1、首先,说一下我的具体实现思路。在做spring boot拦截器的过程中,开始我准备用spring security来实现,但是研究了一段时间之后发现spring security的集成度太高,需要修改的东西比较多,而且对它本身的使用方法不是很了解,后来转而使用Apache shiro。由于是第三方登录,是不需要我来验证密码的。最开始,我陷入了_shiro 第三方token登录

labelme UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 0xaf in position 227: illegal mult_file "c:\rgzn\labelme-main\setup.py", line 91, in -程序员宅基地

文章浏览阅读1.9k次,点赞4次,收藏4次。[INFO ] __init__:get_config:71 - Loading config file from:C:\Users\xxx\.labelmercTraceback (most recent call last): File .... line 191, in <module> main() File ...., line 145, in main config = get_config(config_file_or_yaml, config_fro_file "c:\rgzn\labelme-main\setup.py", line 91, in main if sys.argv[1] == "re

随便推点

代码报错原因和处理方法-程序员宅基地

文章浏览阅读8.7k次。代码错误的原因和调试方法_代码报错

深度解析Java游戏服务器开发-程序员宅基地

文章浏览阅读5.2k次,点赞9次,收藏40次。---恢复内容开始---1.认识游戏  1.1什么是游戏    1.1.1游戏的定义              任何人类正常生理需求之外的活动均可称为游戏    1.1.2游戏的分类      RPG角色扮演游戏、ACT动作游戏、AVG冒险游戏、FPS第一人称视角射击游戏、TPS第三人称视角射击游戏、FTG格斗游戏、SPT体育游戏、RAC竞速游戏、RTS即时战略游戏、STG..._深度解析java游戏服务器开发

【ThinkPHP5初体验(二)1】CSRF防范原理(thinkphp5 CSRF ajax令牌)_tp5 开启csrf令牌-程序员宅基地

文章浏览阅读4k次。CSRF是什么我就不解释了,百度一搜全是,比波姐的片源还要多,千篇一律都他么是复制粘贴。那为什么这个令牌(token)操作可以防范CSRF呢?下面我就随便说说说错了大家不要介意。首先我们要知道令牌是存储在session里面的,这个很重要 php代码如下&lt;?php namespace app\index\controller; //我直接允许跨域,因为伪装..._tp5 开启csrf令牌

市盈率、市净率、净资产收益率股息率介绍-程序员宅基地

文章浏览阅读1.7k次,点赞2次,收藏6次。市盈率PE市盈率 = 市值/净利润概念解析:买入一家公司,几年回本,年化收益率:净利润/市值(市盈率的倒数)举例:砖头10万买个砖头,每年拍人带来1万利润,需要10年回本市盈率:10/1 = 10年化收益率:1/10 = 10%市净率PB市净率 = 市值/净资产净资产 = 总资产 - 负债举例:张三便利店,净资产:120万市值:1..._净资产收益率和股息率

墨器杯垫 文创商品设计特优_杯垫文创设计说明-程序员宅基地

文章浏览阅读737次。教育部昨举行「102年国立馆所文创商品设计比赛」颁奖典礼,台北科技大学创新设计研究所硕士生谢镇宇,为TW艺术教育馆设计「墨器」杯垫,取「默契」谐音,用5片压克力板,展现水墨画层层渲染效果,增加立体视觉感受,并在杯架后方加入LED光源,获评审肯定夺特优奖和奖金10万元。台南应用科技大学商品设计系学生高郁翔,为国立自然科学博物馆设计「恐龙化石钉书机」,他认为小朋友把钉书机钉下去的那一刻,会觉得像暴龙準_杯垫文创设计说明

C#中关于XML与对象,集合的相互转换-程序员宅基地

文章浏览阅读404次。XML与对象,集合的相互转化  今天小伙伴在群里问了一下关于XML与对象之间的相互转换,作为菜鸟的我正好趁着闲着的时间学习了一波,直接上代码了,有疑问或者有错误的地方还请大家指正,谢谢。。。。 1 using System; 2 using System.Collections.Generic; 3 using System.IO; 4 using System...._c# xml转集合