Candy Box Cheats

just drop this cose inside browser’s developer console 😛

//give 10000 per second
candies.candiesPerSecond = 10000;

//set how many lollipos have been planted
farm.lollipopsPlanted = 100000000;

//set max lollipos per day limit
farm.maxLollipopsPerDay = 100000000;

//add 1000000 candies
candies.setNbrOwned(candies.nbrOwned+1000000);
//add 1000000 lollipops
lollipops.setNbrOwned(lollipops.nbrOwned+1000000);

//show potions buttons (each kind)
potions.list.health.shown = 1;
potions.list.escape.shown = 1;
potions.list.berserk.shown = 1;
potions.list.fireScroll.shown = 1;
potions.list.acidRainScroll.shown = 1;
potions.list.teleportScroll.shown = 1;
potions.list.earthquakeScroll.shown = 1;
potions.list.impInvocationScroll.shown = 1;
potions.list.majorHealth.shown = 1;
potions.list.invulnerability.shown = 1;
potions.list.turtle.shown = 1;
potions.list.jelly.shown = 1;
potions.list.seed.shown = 1;
potions.list.cloning.shown = 1;
potions.list.superman.shown = 1;
potions.list.gmooh.shown = 1;
potions.updateOnPage();

//set 999 potions (each kind)
potions.list.health.nbrOwned = 999;
potions.list.escape.nbrOwned = 999;
potions.list.berserk.nbrOwned = 999;
potions.list.fireScroll.nbrOwned = 999;
potions.list.acidRainScroll.nbrOwned = 999;
potions.list.teleportScroll.nbrOwned = 999;
potions.list.earthquakeScroll.nbrOwned = 999;
potions.list.impInvocationScroll.nbrOwned = 999;
potions.list.majorHealth.nbrOwned = 999;
potions.list.invulnerability.nbrOwned = 999;
potions.list.turtle.nbrOwned = 999;
potions.list.jelly.nbrOwned = 999;
potions.list.seed.nbrOwned = 999;
potions.list.cloning.nbrOwned = 999;
potions.list.superman.nbrOwned = 999;
potions.list.gmooh.nbrOwned = 999;
potions.updateOnPage();

//hack assign "almost infinite" invulnerability potions
quest.beginInvulnerability = function(){
	this.invulnerability = true;
	this.invulnerabilityCountdown = 99999999999999999999999999;
	this.things[this.getCharacterIndex()].text = "G0D";
};

//hack assign "almost infinite" berserk potions
quest.beginBerserk = function(){
	this.berserk = true;
	this.berserkCountdown = 99999999999999999999999999;
	this.speed = this.getSpeed();
	this.things[this.getCharacterIndex()].text = "@_@";
};

5 thoughts on “Candy Box Cheats

  1. Sean

    I tried your add candies code and this is what I got.

    ReferenceError: candies is not defined

    I’m using firefox, is there another code I can use?

  2. gabe

    Reply to Sean: Make sure you are using candy box 1 because i tried it on candy box 2 and it doesn’t work.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.