Created
June 6, 2022 00:02
-
-
Save maxencefrenette/5041a6f93b58043305a24c01dddff68e to your computer and use it in GitHub Desktop.
Increlution Speedup Hack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Insert this at the start of app/gniller.min.js | |
// This needs to be redone after any update | |
// Known issue: needs a game restart after restarting a new game+ | |
const oldNow = Date.now; | |
const timestamp = Date.now(); | |
Date.now = () => { | |
return timestamp + 1000 * (oldNow.call(Date) - timestamp); | |
} |
idk. the game usually reloads when you speed it up too much, like if you put + 2000 that will cause nearly constant reloads on my machine, try reducing the number you are adding to time would be my guess.
Dropping it to 600 seemed to work, anything above and it just reloads.
Thanks for the tip.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Am I missing something?

Pressing "o" just gives me this window then the game reloads with no change.
Edit: Using the original code the game won't even get past the loading screen, I'm probably doing something incorrectly.
Using Notepad++ to edit the file, pasting the code to the entry line.
I'm no coder, all hardware and networking here lol, any help appreciated.