Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
If you're referring to the time shown on the item, it's the amount of time you have to wait until you have enough cookies to buy, which can be quite long, especially in the later stages of the game; you'll be relying on Combos to get the cookies you need!
perhaps it needs an update for the new version of the game?
100% respect that shit.
### Fix
- Fix broken Sort Grandmapocalypse switch
The only problem I've run into is that the "Sort Grandmapocalypse" doesn't work as I expect - I was expecting it to not sort the upgrades that triggered/escalated the Grandmapocalypse, like Communal Brainsweep, but it still seems to sort them regardless.
Design Detail for Payback Rate Mod (Slide) [docs.google.com]
# first get frenzy, which makes cookiesPs * 7
else if (choice == 'frenzy') {
buff = Game.gainBuff('frenzy', Math.ceil(77 * effectDurMod), 7);
}
# second get Lucky! base on buffed cookiesPs
else if (choice == 'multiply cookies') {
var moni = mult * Math.min(Game.cookies * 0.15, Game.cookiesPs * 60 * 15) + 13;//add 15% to cookies owned (+13), or 15 minutes of cookie production - whichever is lowest
Game.Earn(moni);
popup = loc("Lucky!") + '<br><small>' + loc("+%1!", loc("%1 cookie", LBeautify(moni))) + '</small>';
}
However using cookiesPs it not a stable way to banking the target number, i get it, i will update this later to use cookiesPsRaw
In game's source code around Cookie Clicker\resources\app\src\main.js Line 5597:
var maxPayout = Math.min(Game.cookiesPs * 60 * 60 * 6, Game.cookies * 0.5) * mult;
in order to get max payout from cookie chain, cookies need to be larger than(Game.cookiesPs * 60 * 60 * 6) * 2, which is Game.cookiesPs * 43200
Also, shouldn't the text next to the banking feature suggest 42,000 with the Get Lucky upgrade, not 43,200?
but it does have a building sorting function
Cookie monster uses Payback Period, but I think it is important in Cookie Clicker to increase CPS (Delta CPS) as soon as possible, plus consider the shorter Payback Period the better, so this MOD uses the parameter "Delta CPS / Payback Period".
In addition, cookie monster does not take into account tiered upgrades and does not provide building sorting function.