Dark diep

Lights off in diep

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Dark diep
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Lights off in diep
// @author       iiiiop
// @match        diep.io
// @grant        none
// ==/UserScript==

var setColor=setInterval(()=>{
    if(document.getElementById("loading").innerText===""){
        input.execute("ren_solid_background true");
        input.execute("ren_health_background_color 0x8c8c8c");
        input.execute("ren_minimap_background_color 0x333333");
        input.execute("ren_background_color 0x0d0d0d");
        input.execute("ren_border_color 0xffffff");
        input.execute("ren_bar_background_color 0x8c8c8c");
        input.execute("net_replace_color 14 0x595959");
        input.execute("ren_stroke_solid_color 0x404040");
        clearInterval(setColor);
    }
},1000);