Greasy Fork is available in English.

kirka gun fire rate increase

work in progress if you get into a game without people just wait up to 30 seconds and youll see ppl joing

< Feedback on kirka gun fire rate increase

Question/comment

§
Posted: 29.1.2024
Edited: 29.1.2024

this script allows you to toggle it via pressing g the button can be changed via changing if (event.key === 'g'), to change it, change the 'g' to the keybind you want. And you might want to change return window.original() * 21; to a diffrent value then 21 and you might want/have to change the spacing of the script cause I dont think its spaced like it should be in this comment. Take care

window.isActive = false; window.original = null;

function toggleFunction() { if (window.isActive) { // Restore the original function Date.now = window.original; } else { // Store the original function window.original = Date.now; // Replace the function with our modified version Date.now = function() { return window.original() * 21; }; } // Flip the active state window.isActive = !window.isActive; }

// Listen for the keydown event window.addEventListener('keydown', function(event) { // Check if the 'G' key was pressed if (event.key === 'g') { // Call the toggle function toggleFunction(); } });

Post reply

Sign in to post a reply.