Skip to content

60 FPS userscript for Cookie Clicker. Still in development

Notifications You must be signed in to change notification settings

TheEeveeLovers/60-fps-CC

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

60 FPS (in) Cookie Clicker

This script sets the game's internal FPS value to 60, making it 60 FPS with the side effect of making it sped-up

You can use it in a userscript extension like Greasemonkey or Tampermonkey with the following userscript:

// ==UserScript==
// @name         60 FPS
// @namespace    https://tampermonkey.net/
// @version      0.1
// @description  Sets the game's internal FPS to 60
// @author       TheEeveeLovers
// @match        https://orteil.dashnet.org/cookieclicker/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=dashnet.org
// @run-at       document-idle
// @grant unsafeWindow
// ==/UserScript==
(function() {
    var checkReady = setInterval(function() {
        if (typeof Game.ready !== 'undefined' && Game.ready) {
            Game.LoadMod('https://theeeveelovers.github.io/60-fps-CC/60FPS.js');
            clearInterval(checkReady);
        }
    }, 1000);
})();

Comparison videos (GitHub Pages only)

Normal Speed

x2 Speed


Planned changes

  • Change name to 'Sped Up Cookie Clicker'
  • Ability to customize overriden FPS value
  • Better GitHub Pages page
  • Seperate (adjective) FPS for different game things

About

60 FPS userscript for Cookie Clicker. Still in development

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published