cookie clicker hacks 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 The Game.Earn code doesn't work and will end up with you have to refresh the page and maybe lose a little bit of progress Using an autoclicker http://www.softpedia.com/progDownload/Random-Mouse-Clicker-Download-170028.html Generating yourself a single golden cookie Game.goldenCookie.spawn(); Automatically generating a clicking a large number of golden cookies 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); 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); Optimal Build Script Automatically buys the most effective item in terms of cookies per second and price. Also tells you how long it'll take until it buys, based on your CPS. (Doesn't take manual clicks into consideration) var interval = 250; 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; if (cpc2 < cpc) { cpc = cpc2; x = i; } } var time = (Math.round(Game.ObjectsById[x].price) - Game.cookies) / Game.cookiesPs; time = time < 0 ? 0 : Beautify(time); var txt = "Buying " + Game.ObjectsById[x].name + " for " + Beautify(Math.round(Game.ObjectsById[x].price)) + " at " + Beautify(Math.round(Game.ObjectsById[x].price / Game.ObjectsById[x].storedCps)) + " cookies per CPS!" + "
This will take " + time + " seconds without manually clicking."; Game.Ticker = txt; return x; } 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); 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 the current version number ex: 1.03 and dont edit the symbols. After you've modified the save go to Base64 encoder, encode it and import your save to the game CookieClickerPrice userscript (another optimal building order script)Edit CookieClickerPrice is a userscript that shows the amortisation of procucts. ReferencesEdit ↑ Instructions copied from StackExchange. Base64 decoder and Base64 encoder Achievement Table: ID Name 0 Wake and bake 1 Making some dough 2 So baked right now 3 Fledgling bakery 4 Affluent bakery 5 World-famous bakery 6 Cosmic bakery 7 Galactic bakery 8 Universal bakery 9 Timeless bakery 10 Infinite bakery 11 Immortal bakery 12 You can stop now 13 Cookies all the way down 14 Overdose 15 How? 16 Casual baking 17 Hardcore baking 18 Steady tasty stream 19 Cookie monster 20 Mass producer 21 Cookie vortex 22 Cookie pulsar 23 Cookie quasar 24 A world filled with cookies 25 Let's never bake again 26 Sacrifice 27 Oblivion 28 From scratch 29 Neverclick 30 Clicktastic 31 Clickathlon 32 Clickolympics 33 Clickorama 34 Click 35 Double-click 36 Mouse wheel 37 Of Mise and Men 38 The Digital 39 Just wrong 40 Grandma's cookies 41 Sloppy kisses 42 Retirement home 43 My first farm 44 Reap what you sow 45 Farm ill 46 Production chain 47 Industrial revolution 48 Global warming 49 You know the drill 50 Excavation site 51 Hollow the planet 52 Expedition 53 Galactic highway 54 Far far away 55 Transmutation 56 Transmogrification 57 Gold member 58 A whole new world 59 Now you're thinking 60 Dimensional shift 61 Time warp 62 Alternate timeline 63 Rewriting history 64 One with everything 65 Mathematician 66 Base 10 67 Golden cookie 68 Lucky cookie 69 A stroke of luck 70 Cheated cookies taste awful 71 Uncanny clicker 72 Builder 73 Architect 74 Enhancer 75 Augmenter 76 Cookie-dunker 77 Leprechaun 78 True Neverclick 79 Elder nap 80 Elder slumber 81 Elder 82 Elder calm Categories: Add category Showing 25 most recent 286 comments Anonymous User Log in? 123456Next If you make it so you have NaN (or infinite) cookies it seems you can't go back. Just a warning. 7 hours ago by A Wikia contributor Reply Yes I have the same problem. I don't want infinite cookies anymore but it won't go away. I tried refreshing the page but it doesn't work. :/ 6 hours ago by A Wikia contributor not even if you use Game.cookies=0 4 hours ago by A Wikia contributor Your precious cheats have been saved. But they won't be able to stop the grandmapocalypse. 7 hours ago by A Wikia contributor Reply setInterval(function () {Game.elderWrath=0;}, 1000) U mad? 7 hours ago by A Wikia contributor Wow, someone really does not like cheating... 7 hours ago by A Wikia contributor Reply This is pretty much why I save all the scripts in a txt file on my computer due to all the twats deleting everything off this page. It would be a good idea for the rest of you to do the same. 8 hours ago by A Wikia contributor Reply instead just undo the changes, the history is here for that kinda things 7 hours ago by A Wikia contributor Anyone can contribute to a wikia, just click "undo" when you see a griefed page and you'll be the hero of the day. 7 hours ago by Fegazeus reminder that destroying information is worse than cheating 8 hours ago by A Wikia contributor Reply OMG.. http://cookieclicker.wikia.com/wiki/Cheating?action=history 8 hours ago by A Wikia contributor Reply thanks man 8 hours ago by A Wikia contributor Fixed it for you... 8 hours ago by A Wikia contributor I want to reset the prices of all buildings without selling everything. How do I do so? 8 hours ago by Racecarlock Reply Wat Happend it says LOL WRONG IDEA 8 hours ago by A Wikia contributor Reply I fixed it by undoing the change that deleted everything. 8 hours ago by A Wikia contributor Where did the infinite cookie script go? Had to reset, and it'd be useful as hell. 9 hours ago by A Wikia contributor Reply very nice :) I added the IDs of all achievements, if anyone knows how to add them to a spoiler tag, please do so. 10 hours ago by A Wikia contributor Reply ....so basically just exactly their names then? lol 4 hours ago by A Wikia contributor Added a visual timer on the optimal building script. :D 10 hours ago by A Wikia contributor Reply 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); Seriously? Is there no moderator in this wiki... 13 hours ago by RhodoKnight Reply ^That. 10 hours ago by ItsBloonTasty wuzzit doo? 4 hours ago by A Wikia contributor http://pastebin.com/kzmMa7kf Original script for the autoclicker, that I created. 13 hours ago by A Wikia contributor Reply is there a way to get rid of the milk that is slowly taking over my screen? O-O 14 hours ago by A Wikia contributor Reply yes. go to settings and turn off milk is there a way to add only a specific upgrade with cheats rather than all of them? 13 hours ago by A Wikia contributor @2nd guy no, quit asking. or start trying to guess the upgrade's id @ first guy you can't reverse the milk tide, only hide it. and you'll still accrue it. 4 hours ago by A Wikia contributor Is there a way to remove the Infinity Golden Cookie Spawns? 14 hours ago by A Wikia contributor Reply I typed Game.Earn(10000000000) and I get 10000000000 cookies added to my current amount of cookies (even if it said undefined in the console) I tried Game.cookies=1000000000 and my cookies had been set to 1000000000 if you don't type numbers it won't work, geez guys... 16 hours ago by A Wikia contributor Reply I tried and i went from 600,000,000,000 cookies to fucking 0 -_- be more specific, Game.cookiesPs=(a higher number than your own) if you do Game.cookies=whatever, you lose all your cookies. 19 hours ago by A Wikia contributor Reply I'm on Chrome and everytime I go into the console to cheat, it says whatever I type is not defined. For example typing Game.Earn(1000000) says Game not defined. Is there any way to get around this. 23 hours ago by A Wikia contributor Reply Maybe it's case-sensitive... 10 hours ago by ItsBloonTasty I want to change the time machine price to 1. Which command would do so? 1 day ago by Racecarlock Reply Game.priceincrease=0 1 hour ago by A Wikia contributor Is there a way of getting rid of the RuinTheGame cheat by exporting/importing the save? Which "1" do I turn to "0" after decoding? 1 day ago by A Wikia contributor Reply The RuinTheFun cheat is not really reversible, since it gives you all achivements and upgrades and maxes your cookies. You could manually go about reversing the upgrades but that's probably counter-intuitive. 1 day ago by A Wikia contributor well how to manually reverse upgrades? 13 hours ago by A Wikia contributor It's a shame that cleaning up the vandalism removed my little modification to the autobuy script; it works much better if you account for that buying worse cost/CpS items might get you enough cookies to buy the better items sooner than you could have otherwise. I mean, why would you wait six months with a single cursor to buy a portal when buying two cursors instead of one would make it take only three months? An extreme example, sure, but the fix is simple. I'm only worried that it would get lost in the mess, or that it'd get attributed to this Tommi character. 1 day ago by A Wikia contributor Reply That shouldn't be hard to find. Wait a tick - I'll try to re-add it. 1 day ago by A Wikia contributor Annnd done! :) 1 day ago by A Wikia contributor Thanks. I actually did a little algebra and figured out that it'd be pretty easy to rank them such that items would be bought first if it'd speed up the buying of the second item more than the cost of the first item. And I don't really care who it's attributed to. :P 1 day ago by A Wikia contributor awwww....its gone? but I kinda liked that demented rant about religion being the source of cheating in videogames 1 day ago by A Wikia contributor Reply I've just asked the admin of the site, Betaclay to put a lock on this page. I'm sorry everyone, if you want to make an edit; you'll have to put it in the Cheating:Suggestions Page. Thank You. 1 day ago by RaisusTheFlammie Reply how to get one specific upgrade and not ALL of them? 1 day ago by A Wikia contributor Reply for instance I may want to play with golden hoard without giving myself grandma's grandma 1 day ago by A Wikia contributor seems like some cheats are gone (e.g. Ruin the fun end game cheat), anyone do a check? 1 day ago by A Wikia contributor Reply That one's simply Game.RuinTheFun(); in console. :P 1 day ago by A Wikia contributor 123456Next Advertisement | Your ad here Photos Add a Photo 307PHOTOS ON THIS WIKI See all photos See all photos > Recent Wiki Activity 1.0 Update edited by A Wikia contributor 1 hour ago Update History edited by CubeS 1 hour ago Wiki Content edited by Grandma9to9to9to9andahalf 1 hour ago Farm edited by Grandma9to9to9to9andahalf 1 hour ago See more >