Page 2 of 22

Re: REQUEST Idling to Rule the Gods (Steam version)

Posted: Sat Mar 20, 2021 8:17 pm
by dasmau89
I might be do to the Just In Time compiler. I build the table in a way that is not very ressiliant to updates, but on the other hand it shouldn't break the game. All scripts test if the bytes that I want to change are the bytes that are expected, otherwise the script fails to activate.

I have no Idea why you got the message about the challenge, the script should skip over all checks in the function ..

Re: REQUEST Idling to Rule the Gods (Steam version)

Posted: Sun Mar 28, 2021 9:35 am
by Damaskox
There's one additional thing I'd love to manipulate: the upgrade levels of monuments.

Normally you can build only five levels until you have killed Baal.
Can the limit value be changed to a bigger number, or unlimited?

Re: REQUEST Idling to Rule the Gods (Steam version)

Posted: Sun Mar 28, 2021 1:55 pm
by dasmau89
As far as I know there is no such limity you should be able to upgrade monuments after defeating Freya.

I'll add a new table version to my first post with scripts for monument creation and some start on the divinity generator. Sadly there is no "no creation cost for monument upgrades" script because I can't figure out how to properly deal with method overloading, but that should not be a problem since I added a "zero buy cost" script for creations

Re: REQUEST Idling to Rule the Gods (Steam version)

Posted: Sun Mar 28, 2021 7:39 pm
by Damaskox
Oh! I mean that the EFFECTS stop after five levels.
Killing Baal II gives another five levels and so on. Yeah you can build them undefinitely, but the version of Baal killed limits their effect.

Re: REQUEST Idling to Rule the Gods (Steam version)

Posted: Sun Mar 28, 2021 9:03 pm
by dasmau89
I haven't looked at the code, but the tooltip suggests that the five level cap that you mention, is the multi that you carry over after a rebirth.
Everything upgrade should count for your current run regardless of level

Re: REQUEST Idling to Rule the Gods (Steam version)

Posted: Mon Mar 29, 2021 5:33 am
by Damaskox
Hmm. Yes.
After 24 upgrade levels and only Baal I killed, I don't see any change to multis anymore.
I wonder, can that rebirth multiplier been raised higher with CE.

Re: REQUEST Idling to Rule the Gods (Steam version)

Posted: Mon Mar 29, 2021 6:34 pm
by dasmau89
There is no such thing as a cap, I looked at the code.
This is the code that calculates the current multiplier of a monument upgrade

Code: Select all

if (this.Level == 0)
{
	return 1;
}
return 5 * (this.Level * this.Level) + 10 * this.Level;
Also my multiplier is ever increasing, I created this two screenshots after each other (at around 200k upgrade levels)
ImageImage

Re: REQUEST Idling to Rule the Gods (Steam version)

Posted: Tue Mar 30, 2021 11:16 am
by Damaskox
(rebirth) 11.44 (maxed at 11.44)
What does that mean then?

Re: REQUEST Idling to Rule the Gods (Steam version)

Posted: Tue Mar 30, 2021 3:39 pm
by dasmau89
It means that the current bonus (that you take with you to the next rebirth) from this uprade would be 11.44. Maxed at 11.44 means that you currently can't take more bonus than 11.44 to your next rebirth, so any upgrade that you build after that only benefits your current reincarnation.
The big number with now in parenthesis is the bonus that I have right now

Re: REQUEST Idling to Rule the Gods (Steam version)

Posted: Wed Mar 31, 2021 5:41 pm
by Damaskox
Can the mentioned bonus cap (taken to the next rebirth) be raised without a rebirth, with CE?

Re: REQUEST Idling to Rule the Gods (Steam version)

Posted: Tue Apr 13, 2021 8:03 pm
by dasmau89
Yes it can be modified. I uploaded a new table with two new options: one to raise the cap and one to ignore the cap

Re: REQUEST Idling to Rule the Gods (Steam version)

Posted: Sun Apr 18, 2021 11:04 pm
by Damaskox
dasmau89 wrote:
Tue Apr 13, 2021 8:03 pm
Yes it can be modified. I uploaded a new table with two new options: one to raise the cap and one to ignore the cap
Does CE need to be open at all times when playing the game in order to get the cap ignorance?

Re: REQUEST Idling to Rule the Gods (Steam version)

Posted: Mon Apr 19, 2021 7:53 pm
by dasmau89
It should be sufficient to activate the codes and close CE without deactivating the codes. If you restart the game you need to reapply the codes though

Re: REQUEST Idling to Rule the Gods (Steam version)

Posted: Sat May 01, 2021 9:43 pm
by cckilla1337
Hey, ty for the awesome hack! Is it possible to also make dungeon team CDs instant like in campaigns?

Re: REQUEST Idling to Rule the Gods (Steam version)

Posted: Mon May 03, 2021 12:43 pm
by Rankled Ram
Any chance of instant dungeon completion? KH Trainer has one, but it's either outdated or just doesn't work for the steam version.

Thanks for the great work you've already done.