No Timer For Brofist.io 2PL Another Code $("#startTime").remove();
< 脚本 Delete Timer Brofist.io 的反馈
I remember now that when u told me that this was the older hacks, I now realize that my script isn't gonna work.
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址
I need help with some code
Okay, so I have a script that I'm SURE has to do with Tampermonkey, but I can't get it and I can't use it in console because it doesn't work. I'm hoping you can maybe make fix it for Tampermonkey users and make another version for console users. Thanks for helping me the best you can and reading this! Now here's the code.
// ==UserScript== // @name Brofist.io Hacks // @namespace Brofist.io Hacks // @include http://brofist.io/modes/twoPlayer/c/index.html // @version 1 // @description Enjoy! (You may need Tampermonkey for this. Try and see if it works in console. If not, download Tampermonkey. It's free.) // @grant none // ==/UserScript==
var isCheat = false; document.getElementsByTagName('body')[0].onkeypress = function(e){ var which = e.which; if(which == 51){ isCheat = !isCheat; if (isCheat){ console.log('cheat on'); } else{ console.log('cheat off'); } } }; document.getElementsByTagName('body')[0].onkeydown = function(e) {
};