Diep.io Deep Theme

Deep Theme.. It makes everything... Deeper... You'll see once you try it out.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        Diep.io Deep Theme
// @version      010
// @description  Deep Theme.. It makes everything... Deeper... You'll see once you try it out.
// @author       By me, AKA ThePaster24 on PasteBin, FPS counter made by /u/haykam821, everything else by me.
// @require  http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @match        http://diep.io/
// @run-at         document-end
// @namespace  
// ==/UserScript==
$(window).load(function () {
    input.execute("net_replace_color 0 0x000000");
    input.execute("net_replace_color 1 0x000000");
    input.execute("net_replace_color 2 0x99FF99");
    input.execute("net_replace_color 3 0x0000FF");
    input.execute("net_replace_color 4 0xFF0000");
    input.execute("net_replace_color 5 0x990099");
    input.execute("net_replace_color 6 0x00FF00");
    input.execute("net_replace_color 7 0xFFFFFF");
    input.execute("net_replace_color 8 0xFFFF00");
    input.execute("net_replace_color 9 0xFFBBBB");
    input.execute("net_replace_color 10 0xCCCCFF");
    input.execute("net_replace_color 11 0xFF69B4");
    input.execute("net_replace_color 12 0xFFFF00");
    input.execute("net_replace_color 13 0xFFFFFF");
    input.execute("net_replace_color 14 0x888888");
    input.execute("net_replace_color 15 0x0000FF");
    input.execute("net_replace_color 16 0xBBBB00");
    input.execute("net_replace_color 17 0x777777");
    document.addEventListener('keydown',function(event){
        if(event.keyCode==70){
            input.set_convar('ren_fps',true);
        }
    });

    document.addEventListener('keyup',function(event){
        if(event.keyCode==70){
            input.set_convar('ren_fps',false); 
        }
    });
    document.addEventListener('keydown',function(event){
        if(event.keyCode==82){
            input.set_convar('ren_background_color',0x111111);
            input.execute("net_replace_color 0 0xFFFFFF");
            input.execute("net_replace_color 1 0xFFFFFF");
        }
    });

    document.addEventListener('keydown',function(event){
        if(event.keyCode==90){
            input.set_convar('ren_background_color',0xEEEEEE);
            input.execute("net_replace_color 0 0x000000");
            input.execute("net_replace_color 1 0x000000");  
        }
    });
    document.addEventListener('keydown',function(event){
        if(event.keyCode==80){
            input.set_convar('ren_background_color',0x888888); 
        }
    });

});