Greasy Fork is available in English.
Press shift + Q to toggle death screen/UI on and off.
当前为
// ==UserScript==
// @name clear UI
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Press shift + Q to toggle death screen/UI on and off.
// @author Me
// @match diep.io
// @grant none
// ==/UserScript==
var renUI = true;
document.addEventListener('keydown', function(event) {
if (event.shiftKey == true){
if (event.key == 'Q'){
renUI = !renUI;
input.set_convar("ren_ui", renUI);
}
}
});