// ==UserScript== // @name Diep EZ Build // @namespace http://ggforgaming.ml/ // @version 1.3 // @description Make quick builds with this script! // @author GGforGaming // @match https://*.diep.io/* // @icon https://www.google.com/s2/favicons?domain=diep.io // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; function myEvent(event){ switch (event.key) { case "9": input.execute("game_stats_build 111224567456745674567456745674567"); console.log("Build [Key 9] Applied!"); break case "0": input.execute("game_stats_build 123123123123123123123676767676766"); console.log("Build [Key 0] Applied!"); break case "/": input.execute("game_stats_build 0"); console.log("Stopped upgrading!") break default: return break } } window.addEventListener("keydown",myEvent) })();