Greasy Fork is available in English.

Diep.io Console Commands list

command list

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Diep.io  Console Commands list
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  command list
// @author       Lost.#3609
// @match        https://*diep.io/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

window.alert("Script Made By Lost.#3609");

var mbtn = document.createElement("button");
  document.body.appendChild(mbtn);
  mbtn.innerHTML = "Script Made By Lost!";
  mbtn.style.backgroundColor = "aqua";
  mbtn.style.position = "absolute";
  mbtn.style.left = "0px";
  mbtn.style.height = "36px";
  mbtn.style.width = "105px";
  mbtn.style.top = "54px";


  var renScoreBoard = true;
  var btn1 = document.createElement("button");
  document.body.appendChild(btn1);
  btn1.innerHTML = "render LeaderBoard";
  btn1.style.backgroundColor = "yellow";
  btn1.style.position = "absolute";
  btn1.style.top = "90px";
  btn1.style.left = "0px";
  btn1.style.height = "36px";
  btn1.style.width = "105px";
  btn1.onclick = function() {
  renScoreBoard = !renScoreBoard;
    input.set_convar("ren_scoreboard", renScoreBoard);
    }

var renUpgrades = true;
var btn3 = document.createElement("button");
  document.body.appendChild(btn3);
  btn3.innerHTML = "render upgrades table";
  btn3.style.backgroundColor = "lightgreen";
  btn3.style.position = "absolute";
  btn3.style.top = "122px";
  btn3.style.left = "0px";
  btn3.style.height = "36px";
  btn3.style.width = "105px";
  btn3.onclick = function() {
  renUpgrades = !renUpgrades;
    input.set_convar("ren_upgrades", renUpgrades);
    }

var renStats = true;
var btn4 = document.createElement("button");
  document.body.appendChild(btn4);
  btn4.innerHTML = "render stats table";
  btn4.style.backgroundColor = "red";
  btn4.style.position = "absolute";
  btn4.style.top = "156px";
  btn4.style.left = "0px";
  btn4.style.height = "36px";
  btn4.style.width = "105px";
  btn4.onclick = function() {
  renStats = !renStats;
    input.set_convar("ren_stats", renStats);
    }
})();