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
Yeah sorry for not specifying, but that's exactly how the other mod i mentioned worked, the F2 key was only used to disable the mod, and to enable it you had to go in the options (like yours)
I will have a look into it, I didn't actually know that you could detect input events inside a mod, although it does make sense. I might have a look into it and update the mod with something like that. Although it would probably be a 'disable only' hotkey, and you would still need to enable it manually in the mods tab. Thank you for the suggestion!
If you find line 142 in the file, it should be something along the lines of:
'if (Game.ascendMeterLevel > 0 && timeSinceAscent >= 8000) {'
And then modify the value that is checked against for the 'timeSinceAscent' to something like 40000, that would give you 40 seconds instead of 8 between ascensions.
Open the mod's main.js. (C:\Program Files (x86)\Steamapps\steamapps\common\Cookie Clicker\resources\app\mods\workshop\AscensionHelper1)
if (Game.ascendMeterLevel > 0 && timeSinceAscent >= 20000)
Change the number of "ascendMeterLevel" to whatever you want.
I have no problem with 20000 -> 8000
I'll check and fix it if it no longer works, as well as taking a look at implementing some of the requested features.
I suspect it has something to do with resource management in the game. I haven't checked, but is there any sort of 'sleep mode' in the game options? If so, turn it off.
Since the game is tied to fps (everything gets calculated between frames being redrawn), if there are less frames being drawn per second, your game will effectively run slower.
If there is no sleep option, my best suggestion is keep the window small in a corner of your screen (but make sure it has focus on the screen).
Hope that helps!
Yes that should be possible, I'll have a look into it.
As for the cookie storm, in my (fairly limited) testing, if the auto-clicker is turned on during a cookie storm, it goes a bit overboard, and has actually crashed my game once, so I thought it is probably better to disable it for that scenario. I'm not sure why it is, but I decided it best to just disable the automatic golden cookie clicker for the duration of the cookie-storm. It still clicks all of the visible cookies on screen after the cookie storm is over though.
Не за что, спасибо!
Obrigada!
i'm also curious why it's specifically set to not click on golden cookies during a cookie storm
I've just updated the mod today, it seems to be working fine on my end. I have re-uploaded the mod. Can you try loading it up again to see if it works? Let me know if it doesn't.
The mod initially clicked all types (including wrath and golden), however, I have now added a toggle-able option next to the Auto-Click Gold button, which lets you select whether you want the mod to auto-click wrath cookies or not!
By default, the mod will not no longer click wrath cookies, unless the 'click Wrath' button is toggled on.
Thank you for the question!