Greasy Fork

Diep EZ Build

Make quick builds with this script!

当前为 2021-06-04 提交的版本,查看 最新版本

// ==UserScript==
// @name         Diep EZ Build
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Make quick builds with this script!
// @author       You
// @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")
        break
        case "0":
        input.execute("game_stats_build 111111122222223333333666666677777")
        break
        default:
        return
        break
    }
    }
    window.addEventListener("keydown",myEvent)
})();