Deeeep.io Immortality Script

Makes you immortal in Deeeep.io

  1. // ==UserScript==
  2. // @name Deeeep.io Immortality Script
  3. // @version 1.0
  4. // @description Makes you immortal in Deeeep.io
  5. // @match https://beta.deeeep.io/
  6. // @run-at document-start
  7. // @grant none
  8. // @license MIT
  9. // @namespace https://greasyfork.org/users/1058472
  10. // ==/UserScript==
  11. // Disable damage and death
  12. window.setInterval(function(){
  13. window.death = false;
  14. window.inkTime = 0;
  15. window.swimVelocity = 4.4;
  16. window.hurt = function(){};
  17. }, 100);