Greasy Fork is available in English.
No Timer For Brofist.io 2PL Another Code $("#startTime").remove();
< Spätná väzba na 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.
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) {
};