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://deeeep.io/*
  6. // @run-at document-start
  7. // @grant none
  8. // @license MIT
  9. // @namespace https://greasyfork.org/users/1058472
  10. // ==/UserScript==
  11.  
  12. // Disable damage and death
  13. window.setInterval(function(){
  14. window.death = false;
  15. window.inkTime = 0;
  16. window.swimVelocity = 4.4;
  17. window.hurt = function(){};
  18. }, 100);