Diep.io Console Commands list

command list

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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);
    }
})();