妖火论坛自动抢吹牛脚本

@zgcwkj  2019年01月09日

分类:

网站 爬虫 代码 

最近的一个活动,可能会用得到

需要谷歌浏览器,其它的自行摸索吧(部分浏览器本身是可以注入 js 代码)

单击进入安装插件:脚本管理器

单击进入安装脚本界面:GreasyFork

代码:

// ==UserScript==
// @name         妖火自动抢吹牛
// @namespace    http://blog.zgcwkj.cn
// @version      1.9.0.1.15.14.55
// @description  zh-cn
// @author       zgcwkj
// @match        *://yaohuo.me/games/chuiniu*
// @match        *://yaohw.com/games/chuiniu*
// @grant        none
// ==/UserScript==

(function () {
    'use strict';

    if (document.title.indexOf("密码") == -1) {
        if (document.title.indexOf("公开挑战") == -1) {
            var toHtml_a = document.getElementsByTagName("a");
            console.log(toHtml_a.length);
            if (toHtml_a.length == 2) {//被抢了
                toHtml_a[0].click();
            } else if (toHtml_a.length == 3 || toHtml_a.length == 4) {//抢到了
                var toHtml_input = document.getElementsByTagName("input");
                console.log(toHtml_input.length);
                if (toHtml_input.length != 0) {
                    //==>随机答案(删掉的话,那么默认就是答案一)
                    var toHtml_select = document.getElementsByTagName("select");
                    toHtml_select[0].value = Math.ceil(Math.random() * 2);
                    //==>随机答案(删掉的话,那么默认就是答案一)
                    toHtml_input[5].click();//确定按钮
                } else {
                    toHtml_a[toHtml_a.length - 2].click();//返回上级
                }
            } else {//开始抢
                for (let i = 0; i < toHtml_a.length; i++) {
                    var toHtml_a1 = (toHtml_a[i].innerHTML + "").match(/(?<=\().+?(?=妖晶\))/);
                    if (toHtml_a1 != null) {
                        console.log(toHtml_a1);
                        if (toHtml_a1 <= 500) {//某个范围抢
                            console.log("正在抢占吹牛");
                            toHtml_a[i].click();
                        }
                    }
                }
                console.log("不符合条件,跳过");
                setTimeout(function () {
                    window.location.href = '/games/chuiniu/index.aspx';
                }, '2000');
            }
        } else {
            console.log("防止和另一个插件冲突");
        }
    } else {
        console.log("输入密码");
    }
})();



评论已关闭

Top