Diep Tools

Make quick builds with this script (and more soon)!

< Feedback on Diep Tools

Question/comment

§
Posted: 05 Desember 2021

Pls add this builds, 0/2/3/7/7/7/0/7

§
Posted: 20 Maret 2022

// ==UserScript==
// @name Diep Tools
// @namespace http://ggforgaming.ml/
// @version 1.6
// @license MIT
// @description Make quick builds with this script (and more soon)!
// @author GGforGaming
// @match https://*.diep.io/*
// @icon https://www.google.com/s2/favicons?domain=diep.io
// @grant none
// ==/UserScript==

'use strict';
const HTML = `

BuildApply
Build For Most TankApply
Build For Ram DamageApply
Build For FactoryApply
Build For Dragon Fighter, BoosterApply
ConsoleSend
Console outputUse above console to get result here!

`
const styles = `
div#dt-menu > table, th, td {
border: 1px solid green;
padding-left:10px;
padding-right:10px;
border-collapse: collapse;
overflow-y:auto;
word-wrap:break-all;
}
div#dt-menu > button {
font-family: inherit;
font-size: 1em;
}

`
const menuStyles = {
position: "absolute",
top: "25%",
width:"50vw",
height:"50vh",
left: "25%",
display: "none",
"background-color": "rgba(255,255,255,0.5)",
"font-family":'"Montserrat","Verdana"'
}
//

const menu = document.createElement("div")
for (var prop in menuStyles) {
menu.style[prop] = menuStyles[prop]
}
menu.innerHTML = HTML
menu.id = "dt-menu"
const styleElement = document.createElement("style")
const font = document.createElement("link")
font.rel = "stylesheet"
font.href = "https://fonts.googleapis.com/css?family=Montserrat"
styleElement.innerHTML = styles
document.head.appendChild(styleElement)
document.head.appendChild(font)
document.body.appendChild(menu)
const myEvent = function(event) {
switch (event.key) {
case "Escape":
if (menu.style.display == "none") {
menu.style.display = "block"
console.log("Menu Enabled!")
}
else {
menu.style.display = "none"
console.log("Menu Disabled!")
}
break
case "9":
input.execute("game_stats_build 555566666444556644454888888823323");
console.log("Build [Key 9] Applied!");
break
case "0":
input.execute("game_stats_build 233238888232388823231277777117171");
console.log("Build [Key 0] Applied!");
break
case "8":
input.execute("game_stats_build 555566666444556644454888888877777");
console.log("Build [Key 8] Applied!");
break
case "7":
input.execute("game_stats_build 566565656777888877756568885744444");
console.log("Build [Key 7] Applied!")
break
default:
return
break
}
}
window.addEventListener("keydown",myEvent)
console.log("DiepTools Loaded!")

*Delete all and paste this, i edit something to help this script better :)! My discord: Thành Công#4020

Post reply

Sign in to post a reply.