// ==UserScript== // @name DOGEWARE KRUNKER.IO RAPID FIRE & SPEED // @namespace http://tampermonkey.net/ // @version 0.1 // @description KRUNKER.IO RAPID FIRE, SPEED, RELOAD, AND NO DISCONNECT BY DOGEWARE // @author DOGEWARE // @match *://krunker.io/* // @match *://browserfps.com/* // @icon https://media.giphy.com/media/CxYGmxv0Oyz4I/giphy.gif // @grant none // @downloadURL none // ==/UserScript== const amount = 1.113 //USE THE RECOMMENDED SETTINGS FOR MAXIMUM ANONYMITY, BUT CONSIDER REDUCING THEM IF YOU EXPERIENCE LAG. ANYTHING ABOVE A VALUE OF 2 WILL BE DETECTED INSTANTLY const originalNow = Date.now.bind(Date); let options = { SpeedHack: true } class KrunkerScript { constructor(author) { this.div = document.createElement('div'); this.div.innerHTML = ``; this.isVisible = true; document.body.appendChild(this.div); this.storage("DG"); document.addEventListener('keydown', (event) => { if (event.key === 'h' || event.key === 'H') { this.toggleSpeedHack(); } }); document.addEventListener('keydown', (event) => { if (event.key === 'o' || event.key === 'O') { this.togglePopup(); } }); } storage(name) { if (localStorage.getItem(name) === null) { localStorage.setItem(name, JSON.stringify(options)); } else { options = JSON.parse(localStorage.getItem(name)); } const speedHackText = document.getElementById('speedHackText'); const uinfoyText = document.getElementById('uinfoy'); if (options.SpeedHack) { speedHackText.innerHTML = '[H]Speed

[ON]

'; setTimeout(function(){ Date.now = () => originalNow() * amount; },5000) } else { speedHackText.innerHTML = '[H]Speed

[OFF]

'; } } toggleSpeedHack() { options.SpeedHack = !options.SpeedHack; const speedHackText = document.getElementById('speedHackText'); const uinfoyText = document.getElementById('uinfoy'); if (options.SpeedHack) { speedHackText.innerHTML = '[H]Speed

[ON]

'; Date.now = () => originalNow() * amount; } else { speedHackText.innerHTML = '[H]Speed

[OFF]

'; alert("[OFF]REQUIRES RELOAD") location.href = `https://${location.hostname}/` } localStorage.setItem("DG", JSON.stringify(options)); } togglePopup() { if (this.isVisible) { this.hidePopup(); } else { this.showPopup(); } } hidePopup() { this.div.style.display = 'none'; this.isVisible = false; } showPopup() { this.div.style.display = 'block'; this.isVisible = true; } } const Krunker = new KrunkerScript("DOGEWARE");