Cookie Clicker

Cookie Clicker

Not enough ratings
How to cheat in cookie clicker (No mods)
By Drannel
How to cheat in cookie clicker using the JS console.
   
Award
Favorite
Favorited
Unfavorite
How to cheat
This guide will show you how to cheat by using the JS console.
However, you could also just Import a save string like this one (GitHub)[github.com]. To do that, just click options in the top left, click "Import save", and enter the string found in the url.
How to back up your save data (optional)
If your data is important to you, you can back it up like this before cheating

In Game
  • click options in the top left
  • click "Export save"
  • you'll see a long string, which represents your save data.
  • store it in a text file, you can gain your data back later by clicking "Import save", and pasting the string.
Modifying the game files
Finding "start.js"
  • Right click cookie clicker >> Browse local Files.
  • Head to resources/app
  • Open "start.js" with notepad or another text editor.
  • Look for the line where it says "let DEV=0".
  • change the 0 to a 1. This will enable developer mode.
In game
    In game, press ctrl+shift+i to open the developer console. Here you can execute javascript code to manipulate / read some in game values.
    Some Commands
    • "Game.Earn(amount)" replace amount with any number. for maximum cookies use "10**303", or alternatively, "Infinity"
    • "Game.Spend(amount)" This will withdraw cookies from you

    • Game.cookies are just your cookies, you can modify this value instead of using "Game.Earn" and "Game.Spend". Manipulate it by using the "=" operator. e.g "Game.cookies = 2"
    • "Game.cookiesEarned" This is a variable that contains the amount of cookies you've earned. The game uses this value to see how much you've progressed in game.

    • "Game.lumps" This contains your sugar lumps. can also be manipulated.
    These are just some examples, you can look for more commands by typing "Game." and scroll trough the intellisense (the box with all the commands) to try out some commands.