Last active
February 2, 2019 00:39
-
-
Save desandro/5498482 to your computer and use it in GitHub Desktop.
candy box cheats
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// http://candies.aniwey.net/ | |
// enter in console | |
candies.nbrOwned = Number.POSITIVE_INFINITY; | |
lollipops.nbrOwned = Number.POSITIVE_INFINITY; | |
quest.setMaxLandOrder( 20 ); | |
chocolateBars.nbrOwned = 10; | |
sword.specialPower = 100; | |
for ( var potionName in potions.list ) { | |
var potion = potions.list[ potionName ]; | |
potion.nbrOwned = Number.POSITIVE_INFINITY; | |
potion.shown = true; | |
} |
I have chosen not to cheat with anything except my own mortality. It can give problems when you are fighting yourself though:
// enter in console OUTSIDE of a quest:
land.load = function(){
quest.invulnerability = true;
quest.invulnerabilityCountdown = '☺';
quest.berserk = true;
quest.berserkCountdown = '☺';
quest.speed = quest.getSpeed();
return this.list[quest.currentLandIndex].loadFunction();
}
(This makes you invincible as well as putting you in berserk mode for every quest you go on!)
wana make this into a javascript bookmarklet for me?
@CDawg34540 Literally copy and paste the JavaScript into a bookmark. JavaScript runs from the URL bar.
what use the cheat?
I need cheats to win.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Oh yeah, I was all about the cheats, although mine was basically just rolling on
candies.setNbrOwned(10000);
just to fast-forward that process without cheating TOO much.Garrett Miller: An Honorable Cheater