看到这个大佬的帖子https://www.52pojie.cn/thread-1391583-1-1.html 我就想起来网页版的抓猫, 搞一下
网页版抓猫地点 https://www.52pojie.cn/404.html
发现点击重置就是触发了这个reset
[JavaScript] 纯文本查看 复制代码 e.prototype.reset = function() { this.cat.reset(), this.resetBlocks(), this.randomWall(), this.state = i.PLAYING, this.setStatusText(f.default("点击小圆点,围住小猫")) }
进一步看到随机创建墙体的代码
[JavaScript] 纯文本查看 复制代码 e.prototype.randomWall = function() { for (var t = 0; t < 8; t++) { var e = Math.floor(this.w * Math.random()) , n = Math.floor(this.h * Math.random()); e === this.cat.i && n === this.cat.j || (this.getBlock(e, n).isWall = !0) } }
按F12打开控制台, 复制以下代码到控制台并执行
[JavaScript] 纯文本查看 复制代码game.mainScene.randomWall= function(){ this.getBlock(4,5).isWall=!0; this.getBlock(5,4).isWall=!0; this.getBlock(6,4).isWall=!0; this.getBlock(2,5).isWall=!0; this.getBlock(5,2).isWall=!0; this.getBlock(6,6).isWall=!0; this.getBlock(6,5).isWall=!0; this.getBlock(2,4).isWall=!0;}
然后点击"重置"按钮 然后就可以一步抓到了
想一步也不点? 复制这个到控制台 执行后点重置
[JavaScript] 纯文本查看 复制代码game.mainScene.randomWall = function(){ this.getBlock(4,5).isWall=!0; this.getBlock(5,4).isWall=!0; this.getBlock(6,4).isWall=!0; this.getBlock(2,5).isWall=!0; this.getBlock(5,2).isWall=!0; this.getBlock(6,6).isWall=!0; this.getBlock(6,5).isWall=!0; setTimeout(()=>{ this.playerClick(5,6); },0)};
来源:http://www.12558.net
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作! |