你是我的小苹果 判定破解

随便点哪都能接住苹果,飙手速的时候到了!

安装此脚本?
作者推荐脚本

您可能也喜欢键盘暴打小苹果

安装此脚本
  1. /* eslint-disable no-multi-spaces */
  2.  
  3. // ==UserScript==
  4. // @name game.hg0355.com hack
  5. // @name:zh-CN 你是我的小苹果 判定破解
  6. // @namespace game.hg0355.com-hack
  7. // @version 0.1
  8. // @description Hack: feel free to touch anywhere, no fail!
  9. // @description:zh-CN 随便点哪都能接住苹果,飙手速的时候到了!
  10. // @author PY-DNG
  11. // @license MIT
  12. // @match http*://game.hg0355.com/game/xpg/
  13. // @icon https://api.iowen.cn/favicon/get.php?url=game.hg0355.com
  14. // @grant none
  15. // @run-at document-end
  16. // ==/UserScript==
  17.  
  18.  
  19. (function main() {
  20. if (typeof (GameLayerBG) != 'object') {
  21. setTimeout(main, 100);
  22. return false;
  23. }
  24. GameLayerBG.ontouchstart && (GameLayerBG.ontouchstart = _gameTapEvent);
  25. GameLayerBG.onmousedown && (GameLayerBG.onmousedown = _gameTapEvent);
  26.  
  27. function _gameTapEvent(e) {
  28. if (_gameOver) {
  29. return false;
  30. }
  31. var tar = e.target;
  32. var y = e.clientY || e.targetTouches[0].clientY,
  33. x = (e.clientX || e.targetTouches[0].clientX) - body.offsetLeft,
  34. p = _gameBBList[_gameBBListIndex];
  35. if (y > touchArea[0] || y < touchArea[1]) {
  36. return false;
  37. }
  38. if (!_gameStart) {
  39. gameStart();
  40. }
  41. createjs.Sound.play("tap");
  42. tar = document.getElementById(p.id);
  43. tar.className = tar.className.replace(_ttreg, ' tt$1');
  44. _gameBBListIndex++;
  45. _gameScore++;
  46. gameLayerMoveNextRow();
  47. return false;
  48. }
  49. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址