http://dacu.tmall.com/,登录天猫账号 网页右侧开抢红包
使用方法如下:
1.先加载完游戏
2.复制代码
3.firefox按ctrl+shift+k,chrome按ctrl+shift+j,调出控制台,粘帖代码
4回车,你就能看到自动猜拳了
代码如下:全自动,随机出拳,输赢看运气
jQuery=$;
function doit()
{
//关闭
if (jQuery('#worldCupAlert')!=null&&jQuery('#worldCupAlert').style.display != 'none')
{
jQuery('.closeBtn') .click();
}
//开始
if (jQuery("[data='matching']")!=null&&jQuery("[data='matching']").style.display != 'none')
{
jQuery("[data='matching']").click();
}
//穿衣再战
if (jQuery("[data='refight']")!=null&&jQuery("[data='refight']").style.display != 'none')
{
jQuery("[data='refight']").click();
}
//换人
if (jQuery("[data='getOther']")!=null&&jQuery("[data='getOther']").style.display != 'none')
{
jQuery("[data='getOther']").click();
}
//出拳
if (jQuery('#worldcup-game-puzzle')!=null&&jQuery('#worldcup-game-puzzle').class != 'start')
{
myi = parseInt(Math.random() * 3 + 1);
jQuery('.hand' + myi).click();
}
}
i=setInterval("doit()",1000);
//执行下句结束
//clearInterval(i)
本文来自投稿,不代表重蔚自留地立场,如若转载,请注明出处https://www.cwhello.com/9274.html
如有侵犯您的合法权益请发邮件951076433@qq.com联系删除