Best Brofist.io Hacks 2018 (Hide and Seek)

FINALLY WORKS ! :D But the script is tiny. Don't laugh at it because it took a while for me to get it working. Enjoy and thanks for installing my script! Tampermonkey, Greasemonkey, and Violentmonkey are not required.

当前为 2018-09-29 提交的版本,查看 最新版本

// ==UserScript==
// @name        Best Brofist.io Hacks 2018 (Hide and Seek)
// @namespace   Best Brofist.io Hacks 2018 (Hide and Seek)
// @include     http://brofist.io/modes/hideAndSeek/c/index.html
// @version     1.4
// @description FINALLY WORKS ! :D But the script is tiny. Don't laugh at it because it took a while for me to get it working. Enjoy and thanks for installing my script! Tampermonkey, Greasemonkey, and Violentmonkey are not required.
// @grant       none
// ==/UserScript==
var oldName = client.name;
var oldSkin = client.skin;
document.onkeydown = function(event){
    if (event.keyCode == 49)
client.start();
};