// ==UserScript== // @name Diep.io Working AUTOBUILD/Upgrader! // @namespace http://tampermonkey.net/ // @version 3.1 // @description I make custom AutoBuilds just ask me for a custom AutoBuilds in the feedback! This is a work in progress! You can change the scripts to what you want. Also, try my XandY mod! Try to take over the diep.io! How to use: You should see a menu bar on the right side of the screen, hover over it and the menu will slide out! When out click on the buttons shown! This should upgrade your tank automatically! If you don't know what the upgrades do, press [T] twice/once. // @author -{Abyss⌬}-ora // @match https://diep.io/ // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; //-------------------------------------[AUTOBUILD BUTTON]------------------------------------\\ var textG = document.createElement('div'); document.getElementsByTagName('body')[0].appendChild(textG); textG.innerHTML = `

-{Abyss⌬}-ora's modmenu















` var tgl = document.createElement('div'); document.getElementsByTagName('body')[0].appendChild(tgl); tgl.style = "position:absolute; pointer-events: none; top:10px; right:200px; font-family: 'Monoton', cursive; color: #FFFFFF; font-size: 20px; text-shadow: black 0px 1px, purple 0px 2px, pink 0px 3px"; tgl.innerHTML = `

Press     (R)     to  

toggle   Menu

` var imgfh = document.createElement('div'); document.getElementsByTagName('body')[0].appendChild(imgfh); imgfh.style = "position:absolute; pointer-events: none; top:10px; left:10px; font-family: 'Monoton', cursive; color: #FFFFFF; font-size: 20px; text-shadow: black 0px 1px, purple 0px 2px, pink 0px 3px"; imgfh.innerHTML = `
⌬Destroyer
⌬Dms/ speed
⌬Dms/ Health
⌬Tri- angle
⌬Trapper
⌬Stacker
⌬Semi/ Ram/ Booster
⌬Smasher Speed
⌬Smasher/ Dms
` function hmm() { var xp = document.getElementById("imgdiv"); if (xp.style.display === "none") { xp.style.display = "block"; } else { xp.style.display = "none"; } } function mmh() { var xp = document.getElementById("imgdivtwo"); if (xp.style.display === "none") { xp.style.display = "block"; } else { xp.style.display = "none"; } } function keydownFunction() { var x = document.getElementById("myhover"); if (x.style.display === "none") { x.style.display = "block"; } else { x.style.display = "none"; } } document.body.onkeyup = function(ep) { if (ep.keyCode === 84) { hmm(); mmh(); } if (ep.keyCode === 82) { keydownFunction(); } } var tglinfo = document.createElement('div'); document.getElementsByTagName('body')[0].appendChild(tglinfo); tglinfo.style = "position:absolute; pointer-events: none; top:10px; right:400px; font-family: 'Monoton', cursive; color: #FFFFFF; font-size: 20px; text-shadow: black 0px 1px, purple 0px 2px, pink 0px 3px"; tglinfo.innerHTML = `

Press     (T)     to  

toggle   info

` //-------------------------------------[TESTING IDEA AREA]----------------------------------------\\ })();