Venge.io HACKS NEW 2020 UNLIMTIED AMMO INF JUMP

Venge.io HACKS

  1. // ==UserScript==
  2. // @name Venge.io HACKS NEW 2020 UNLIMTIED AMMO INF JUMP
  3. // @version 0.2
  4. // @description Venge.io HACKS
  5. // @author Llama
  6. // @match https://venge.io/
  7. // @grant none
  8. // @run-at document-end
  9. // @namespace https://greasyfork.org/users/662323
  10. // ==/UserScript==
  11.  
  12. (async() => {
  13. while(!window.hasOwnProperty("Movement"))
  14. await new Promise(resolve => setTimeout(resolve, 1000));
  15.  
  16. const update = Movement.prototype.update;
  17. Movement.prototype.update = function (t) {
  18. update.apply(this, [t]);
  19. this.setAmmoFull()
  20. this.player.throwCooldown = 0;
  21. this.lastThrowDate = 0;
  22. this.currentWeapon.spread = 0;
  23. this.currentWeapon.recoil = 0;
  24. this.currentWeapon.shootTime = .1;
  25. this.currentWeapon.isAutomatic = true;
  26. this.isLanded = true;
  27. this.bounceJumpTime = 0;
  28. this.isJumping = false;
  29. this.isHitting = false;
  30. };
  31. })();