Answers for "cookie clicker cheat"

107

cookie clicker

#Hacks:
# Type these in your console which you can open by 
# pressing STRG + SHIFT + J (Chrome) or STRG + SHIFT + K (Firefox)

	# changes the amount of cookies
	Game.cookies = amount in int
    
    # unlimted cookies
    Game.cookies = Infinity
    
    # If you want to get out of Infinity cookies
    Game.cookiesd = 0
    
    # set up the CookiesPerSecond Rate by the number you want
    Game.cookiesPS= amount in int
    
    # clicks on cookie forever without moving your mouse in the highest speed
	var autoclicker = setInterval(function() { Game.ClickCookie(); }, 10);
    
    # stoping autoclicker
    clearInterval(autoClicker)

	# clicks on golden cookie without moving your mouse
    setInterval(Game.goldenCookie.click, 500)
    
    # Get the achievement you want by changing it to the achievement name you want
    # Game.Win(‚ACHIEVEMENT‘)
Posted by: Guest on January-10-2021
2

cookie clicker

//To remove the ads 
// Copy/Paste the following in console (CTRL + SHIFT + J)

var removingAdPermission = confirm("Remove the Ads?");
if (removingAdPermission == true) {
	removeAds();
}
function removeAds() {
	document.getElementById("smallSupport").remove();
    document.getElementById("support").remove();
    document.getElementById("topBar").remove();
}
Posted by: Guest on November-02-2021
9

cookie clicker

edit : you have to use Game.cookiesPs not Game.cookiesPS
Posted by: Guest on January-10-2021
8

cookie clicker

edit : getting out of infinity cookies doesnt work lol
Posted by: Guest on January-10-2021
1

cookie clicker

// Automatically buys the product you want repeatitivly
/* NOTE: You have to have enough cookies for this to work */
// Copy/Paste the following into Console (CTRL + SHIFT + J).

var productIdNum = prompt("Enter product number. (For Example, n Cursor = 0, n Grandma = 1, n Farm = 2, n (e.t.c.)) n Click on the Cookie to Stop");
function buy() {
    document.getElementById("product" + productIdNum).click();
}

var buyLoop = setInterval(buy, 250);

document.getElementById("bigCookie").addEventListener("click", function() {
clearInterval(buyLoop);
alert("Auto Buyer has Stopped Buying Product" + productIdNum);
});
Posted by: Guest on November-02-2021

Browse Popular Code Answers by Language