This file contains hidden or 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
| //controlling functions | |
| function istrue(temp) { | |
| if (temp == "true" | |
| || temp == 1 | |
| || temp == true) | |
| return true; | |
| else return false; | |
| } | |
| function ls(v) {//get var from localstorage |
This file contains hidden or 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
| /* | |
| CookieCheat - By Ninetainedo | |
| */ | |
| /* | |
| Colors for upgrades : | |
| - Cyan : You should buy it now ! It's better than any building ! | |
| - Green : This is the best upgrade to buy. | |
| - Yellow : This upgrade is not the best but not the worst. | |
| - Red : You shouldn't buy this upgrade at all ! |
This file contains hidden or 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
| /* mousetrap v1.4.6 craig.is/killing/mice */ | |
| (function (J, r, f) { | |
| function s(a, b, d) { | |
| a.addEventListener ? a.addEventListener(b, d, !1) : a.attachEvent("on" + b, d) | |
| } | |
| function A(a) { | |
| if ("keypress" == a.type) { | |
| var b = String.fromCharCode(a.which); | |
| a.shiftKey || (b = b.toLowerCase()); |
This file contains hidden or 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
| var __VERSION__ = "1.8", | |
| __DEBUG__ = false; | |
| if (typeof CookieCheat === "undefined") { | |
| var CookieCheat = { | |
| models: {}, | |
| views: {}, | |
| currentTab: "tools", | |
| collections: {}, | |
| cookieToKeep: 0, |