返回首頁 

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-01-2024
Edited: 29-01-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 functionDate.now = window.original;} else {// Store the original functionwindow.original = Date.now;// Replace the function with our modified versionDate.now = function() {return window.original() * 21;};}// Flip the active statewindow.isActive = !window.isActive;}

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

Post reply

Sign in to post a reply.