You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "Autofrenzy ON" option does not enable autoclicking the big cookie during frenzies. I checked with both x7 and x777 frenzies, it didn't trigger in either case.
The text was updated successfully, but these errors were encountered:
I worked out the root cause of this issue: the clicking upgrades aren't taken into consideration.
To determine if a frenzy is active, the clickBuffBonus() function looks at the multClick attribute of the currently active buffs. However, most regular frenzies only have a multCpS attribute, buffing the overall CpS. If you have no Clicking Upgrades, these multCpS frenzies do absolutely nothing to boost your cookies per click. Conversely, if you do have Clicking Upgrades then the buff to your overall CpS increases your cookies per click.
My rough suggestion would be making hasClickBuff into something like this:
function hasMouseUpgrades() {
// TODO
}
function hasClickBuff() {
return Game.hasBuff("Cursed finger") || clickBuffBonus() > 1 || (cpsBonus() > 1 && hasMouseUpgrades());
}
I'll open a PR for this in a few days unless the author has a more robust solution in mind.
The "Autofrenzy ON" option does not enable autoclicking the big cookie during frenzies. I checked with both x7 and x777 frenzies, it didn't trigger in either case.
The text was updated successfully, but these errors were encountered: