Cookie Clicker!

Doctor

User is banned.
Reputation
0
I might start playing that if I like it.
 
Its just a fun game to play for a little and see how far you go! lol
 
1IbYwLN.jpg

1.Open the CookieClicker page
2.(Chrome) Right click, inspect element, console
3.Paste the following code in and hit enter.


Code:
var interval = 0; // how long in milliseconds between each click
function auto(){
document.getElementById("bigCookie").click()
setTimeout('auto()', interval);
}
setTimeout('auto()', interval);


Have fun FK
 
Frost said:
1IbYwLN.jpg

1.Open the CookieClicker page
2.(Chrome) Right click, inspect element, console
3.Paste the following code in and hit enter.


Code:
var interval = 0; // how long in milliseconds between each click
function auto(){
document.getElementById("bigCookie").click()
setTimeout('auto()', interval);
}
setTimeout('auto()', interval);


Have fun FK
How do I paste it there? I never knew how too.. :/
 
Aight I got you.

Right click anywhere on the page, it should bring up something like this
16ad387029b7cda246f396a20fa97084.png
Next hit the button that says console, (top far right)
ca183d2028c2914e50cfcae5c5b18827.png
Paste this code in there
var interval = 0; // how long in milliseconds between each click
function auto(){
document.getElementById("bigCookie").click()
setTimeout('auto()', interval);
}
setTimeout('auto()', interval);
2582195b61c4556f5b544e8dd8891500.png
Hit enter.
Enjoy
 
Frost said:
Aight I got you.

Right click anywhere on the page, it should bring up something like this
16ad387029b7cda246f396a20fa97084.png
Next hit the button that says console, (top far right)
ca183d2028c2914e50cfcae5c5b18827.png
Paste this code in there
var interval = 0; // how long in milliseconds between each click
function auto(){
document.getElementById("bigCookie").click()
setTimeout('auto()', interval);
}
setTimeout('auto()', interval);
2582195b61c4556f5b544e8dd8891500.png
Hit enter.
Enjoy

I'm going to sound dumb, but, when you enter that code, do you leave the 'how long in milliseconds between each click' there, or, do you replace it with a number?
 
Prepare said:
I'm going to sound dumb, but, when you enter that code, do you leave the 'how long in milliseconds between each click' there, or, do you replace it with a number?

Nah if you just paste it and hit enter you should be good.
 
I have played this game for a few hours straight. It is just so addicting!
 
Back
Top