Greasy Fork is available in English.
Make quick builds with this script!
当前为
// ==UserScript==
// @name Diep EZ Build
// @namespace http://ggforgaming.ml/
// @version 1.2
// @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
// ==/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");
default:
return
break
}
}
window.addEventListener("keydown",myEvent)
})();