Basic Cookie CheatEdit Press Ctrl+Shift+I and simply type... (F12 for IE or Ctrl+Shift+K for Firefox ) Game.cookies=however many you want. This gives you "Cheated cookies taste awful" if the number you put is bigger than the total number of cookies baked. If you don't want "Cheated cookies taste awful" whatever you type use Game.Earn(however many you want) Easy methodEdit Create a new bookmark and where it says URL copy and paste the 'code' below. Now when you're on the Cookie Clicker page, click the bookmark and it'll open a menu in the top right of your browser. javascript: (function () { var jsCode = document.createElement('script'); jsCode.setAttribute('src', 'https://gist.github.com/pBun/6394697/raw'); document.body.appendChild(jsCode); }()); Browser-specific console instruction[1]Edit These are instructions to bring up the console in different browsers. The console is where you put your codes into effect. Chrome Press CTRL + SHIFT + J to open the "Console" tab of the Developer Tools. Alternative method: Press either CTRL + SHIFT + I or F12 to open the Developer Tools. Press ESC (or click on "Show console" in the bottom right corner) to slide the console up. Note: In Chrome's dev tools, there is a "Console" tab. However, a smaller "slide-up" console can be opened while any of the other tabs is active. Safari Press CTRL + ALT + I to open the Web Inspector. See Chrome's step 2. (Chrome and Safari have pretty much identical dev tools.) Note: Step 1 only works if the "Show Develop menu in menu bar" check box in the Advanced tab of the Preferences menu is checked! IE9 Press F12 to open the developer tools. Click the "Console" tab. Firefox Press CTRL + SHIFT + K to open the Web console. Or, if Firebug is installed (recommended): Press F12 to open Firebug. Click on the "Console" tab. Opera Press CTRL + SHIFT + I to open Dragonfly. Click on the "Console" tab. End Cheats To end any active cheats, simply refresh the page. Unlock every achievement in the game (including the Cheated cookies taste awful achievement) javascript:(function(){for(var i=0;i 0)Game.goldenCookie.click();}, 100); Automatically click Red Cookies without Some Special Effect Only work when you can get Red Cookies. Same as "Automatically click Golden Cookies", but no Clot, Cookie Chain, Elder Frenzy and Clicking Frenzy anymore. setInterval(function() {if(Game.goldenCookie.life > 0){Game.goldenCookie.wrath=0;Game.goldenCookie.click()}}, 100); Automatically buy upgrades and shop items Buys best object and upgrades first, loops. setInterval(function() { for(i=Game.UpgradesInStore.length-1; i >= 0; i--){ Game.UpgradesInStore[i].buy(); } for(i=Game.ObjectsById.length-1; i >= 0; i--){ Game.ObjectsById[i].buy(); } }, 100); Auto-click cookie Replace "time" with a number in milliseconds (1/1000 second). 60000 = 60 seconds (for those who aren't into numbers) setInterval(function() {Game.ClickCookie();}, time); Infinity Golden Cookie Clicker setInterval(function(){Game.goldenCookie.click();}, 10); Auto-click cookie Variant The difference between this and the auto-clickers above, is that this JS script clicks the HTML object, instead of using the game's click function setTimeout(heartbeat,1); function heartbeat(){ eventFire(document.querySelector('#bigCookie'),'click'); setTimeout(heartbeat,1); } function eventFire(el, etype){ if (el.fireEvent) { (el.fireEvent('on' + etype)); } else { var evObj = document.createEvent('Events'); evObj.initEvent(etype, true, false); el.dispatchEvent(evObj); } } Infinite Golden Cookie Clicker Variant The difference between this and the auto-clickers above, is that this JS script clicks the HTML object, instead of using the game's click function. setTimeout(heartbeat,1); function heartbeat(){ eventFire(document.querySelector('#goldenCookie'),'click'); setTimeout(heartbeat,1); } function eventFire(el, etype){ if (el.fireEvent) { (el.fireEvent('on' + etype)); } else { var evObj = document.createEvent('Events'); evObj.initEvent(etype, true, false); el.dispatchEvent(evObj); } } Show Golden Cookie delay in Title bar setInterval(function() { document.title='(' + Math.floor(Game.goldenCookie.delay / Game.fps) + ' s) '+Beautify(Game.cookies)+' '+(Game.cookies==1?'cookie':'cookies'); }, Math.floor(500/Game.fps)); Infinity Golden Cookie Spawns This will spawn and click one golden cookie per second. setInterval(function() {if(Game.goldenCookie.life === 0) {Game.goldenCookie.spawn();Game.goldenCookie.wrath=0;Game.goldenCookie.click()}}, 1000); Alternative CheatEdit There exists a alternative method to hacking in cookies. First of all you need to export your save. Now, let's cheat. Go to Base64 decode and enter the save there. It will say something like: 1.03||1377793875789|11111|0;0;0;0;0;0;-1;-1;0|0,0,0;0,0,0;0,0,0;0,0,0;0,0,0;0,0,0;0,0,0;0,0,0;0,0,0;|0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;0,0;|0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0; =� You can edit all the numbers EXCEPT "1.03" and the symbols. 1.03 is the current version of the game. After you've modified the save go to Base64 encoder, encode it and import your save to the game. Optimal Building Buyer ScriptEdit // Tommi Kurki et al's Cookie Clicker Optimal Building Buyer Script! // This script calculates which building has the best income for it's current price // and buys it automatically. All bought upgrades etc are accounted for. The script displays the // prices and the buildings it buys in the news ticker ingame. Buying interval is 500ms on default. var interval = 500; var cookieBot = setInterval(function() { Game.ObjectsById[optimalBuilding()].buy(); }, interval); function optimalBuilding() { cpc = Number.MAX_VALUE; var x = 0; for(i = Game.ObjectsById.length-1; i >= 0; i--){ var me = Game.ObjectsById[i]; var cpc2 = me.price *(Game.cookiesPs + me.storedCps) / me.storedCps; //this addition will make items with worse cost/CpS be bought first if buying them will earn you the cookies needed for better items faster; proven optimal cookie-buying strategy. if (cpc2 < cpc) { cpc = cpc2; x = i; } } var txt = "Buying " + Game.ObjectsById[x].name + " at " + Math.round(Game.ObjectsById[x].price / Game.ObjectsById[x].storedCps) + " cookies for each CPS!"; Game.Ticker = txt; return x; }