Unlimited Jump Hack

take over any game with unlimited jumps!

  1. // ==UserScript==
  2. // @name Unlimited Jump Hack
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description take over any game with unlimited jumps!
  6. // @author noob 292
  7. // @match *://*/*
  8. // @icon https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.freeiconspng.com%2Fimages%2Fbinary-icon&psig=AOvVaw2wctA0HhLYiYq0gf4KMTtN&ust=1630608966642000&source=images&cd=vfe&ved=0CAsQjRxqFwoTCJivvve53vICFQAAAAAdAAAAABAE
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function(Phaser) {
  13.  
  14. const Game = function() {};
  15.  
  16. Game.prototype = {
  17. jump() {
  18. this.player.body.velocity.y = -450;
  19. },
  20. checkDoubleJump() {
  21. if (this.jumpCount < this.jumpMax) {
  22. this.jump();
  23. this.jumpCount++;
  24. }
  25. },
  26. create() {
  27. this.jumpMax = 999999999;
  28. this.jumpCount = 0;
  29. this.spacebar = this.input.keyboard.addKey(Phaser.Keyboard.SPACEBAR);
  30. this.spacebar.onDown(this.checkDoubleJump, this);
  31. }
  32. };
  33. })(window.Phaser);

QingJ © 2025

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