- Jul 19, 2022
- 14
- 7
I didn't touch anything in the cheat menu, I didn't know this was emenuDid the option to view hints get removed from the cheats menu?
I didn't touch anything in the cheat menu, I didn't know this was emenuDid the option to view hints get removed from the cheats menu?
What did you set the auto save interval to?Started the game and it never autosaved even after day 5, only 2 save slots ever worked at all, and now neither of them will save anything either.
Will do.Can you ping me your save? Like upload the save file to mega and then message me the link? I'll get this resolved.
Since this game and mods tries to turn the MC into free use slut, i do not see it in the possible future development any time soon.Does anyone know if I can make it so that, when I am a woman and I am pregnant, I can marry the father or something like that?
Thanks. I have now used your save file to fix the issue so it will patch the skill into old saves. Fix will be out with 0.21.1Will do.
YesDid the option to view hints get removed from the cheats menu?
You may want also to review/check the passagesdata with names:Thanks. I have now used your save file to fix the issue so it will patch the skill into old saves. Fix will be out with 0.21.1
(set:$score_multiplier to $score_multiplier + _hidden_ach_bonus)
(set: _level_cap_adjustment to $stats_unobtainable * 0.03)
(set: _level_cap_adjustment to $stats_unobtainable * (1 / 3))
Yeah that is a bug - it has been resolved in 0.21.1.If you skip the intro you can't select your dick stats. I don't think that's intended.
Hi, I will do my best to explain what you are experiencing and the key points of the base game system:@
You may want also to review/check the passagesdata with names:
name="hidden achievements score multiplier"
and
name="score multiplier calc"
it seems that they conflict with each other
(set: _score_multiplier_temp to _a + _b * (log: $total_stats - _c))
(set: _level_cap_adjustment to $stats_unobtainable * 0.03)
(set: $score_multiplier to (round: (100 * $score_multiplier * (1 + _level_cap_adjustment))) / 100)
(set:_hidden_ach_bonus to $hidden_achievement_count * 0.03)
(set:$score_multiplier to $score_multiplier + _hidden_ach_bonus)
Its working as intended...from the start and that is an example to others to not delay the process(cause most do and degrade their own game over time)I feel like the current way EXP multipliers and curves are set up is brilliant. Its hard to stay patient and avoid the game between updates because its already so good.
Thanks for the answer, I had already understood points 1 2 3Hi, I will do my best to explain what you are experiencing and the key points of the base game system:
The XP multiplier system is designed to balance gameplay and provide subtle advantages for different character builds.
1. Base Multiplier Calculation:
The base multiplier uses a logarithmic function based on total stats:
This ensures that as your total stats increase, the multiplier changes at a decreasing rate, preventing exponential growth.Code:(set: _score_multiplier_temp to _a + _b * (log: $total_stats - _c))
2. Level Cap Adjustment:
The 3% adjustment per unobtainable stat point compensates for self-imposed limitations:
This is multiplicative, not additive. In your first screenshot, with a total of 11 stats and a max of 10 per stat, you have 19 unobtainable points (30 - 11). This results in a 57% increase (19 * 3%), explaining the 1.26x multiplier.Code:(set: _level_cap_adjustment to $stats_unobtainable * 0.03) (set: $score_multiplier to (round: (100 * $score_multiplier * (1 + _level_cap_adjustment))) / 100)
3. Hidden Achievements Bonus:
This bonus is applied separately and additively:
Code:(set:_hidden_ach_bonus to $hidden_achievement_count * 0.03) (set:$score_multiplier to $score_multiplier + _hidden_ach_bonus)
This bonus is applied after the level cap adjustment, which is why you might not see it directly reflected in the numbers you mentioned.
The reason your modification (changing 0.03 to 1/3 - 3% to 33%) resulted in a lower multiplier is that it drastically increased the level cap adjustment, which interacts with the logarithmic base calculation
The system aims to reward self-imposed limitations while still allowing players free to choose various stat setups. If you find it too grindy, modding is definitely encouraged, as you know it is very easy to do. All I can do is explain why I have set it up this way in the base game, as far as I can tell things are working as intended.
It happens in code that is rewritten multiple times... not that it maters much...Thanks for the answer, I had already understood points 1 2 3
What I do not get (and the reason I reported it as bug) is how the level cap adjustment can result in a lower multiplier, but it happens only after a achievement is unlocked.
with the 33% modification enabled:
a) before unlocking an achievement
The level cap adjustment interacts with the logarithmic base calculation => gives the expected multiplier score (1.26)
b) after unlocking an achievement
step (a) should still stand / remains the same? correct? It should still be (1.26)
then the bonus should be triggered and the new value should be (1.26) + bonus
But from what I see it ignores the level cap adjustment (all together) and gives
a result of the default initial multiplier only (logarithmic base calculation), ignoring the level cap adjustment setting, and the bonus compensates to bring the value back to the initial setting.
----------------------------
If no modifications are done to the game:
no achievement triggered
level cap + base calculation = results to a value (A)
achievement triggered
level cap + base calculation + bonus = results to a value (B)
(A) should be different than (B) if a bonus is really applied correct?
But in reality, what I get is that (A) is equal to (B)
So either the bonus is not applied (I don't think is the case)... or the multiplier ignores the level cap and applies only the bonus.
edit: it could be related to the export/import saves
edit 2: never mind I found the conflicting code
It's inside passagedata pid="3321" name="score multiplier calc"
(set: $score_multiplier to (round: (100 * _score_multiplier_temp)) / 100)
conflicts with
(set: $score_multiplier to (round: (100 * $score_multiplier * (1 + _level_cap_adjustment))) / 100)
During the setup is used
(set: $score_multiplier to (round: (100 * $score_multiplier * (1 + _level_cap_adjustment))) / 100)
and then during the game play is ovewritten again from
(set: $score_multiplier to (round: (100 * _score_multiplier_temp)) / 100)
No, it is working for me. I did the exact same setup and got 1.26x, and then it went up to 1.38x due to 4 hidden achievements.Thanks for the answer, I had already understood points 1 2 3
What I do not get (and the reason I reported it as bug) is how the level cap adjustment can result in a lower multiplier, but it happens only after a achievement is unlocked.
with the 33% modification enabled:
a) before unlocking an achievement
The level cap adjustment interacts with the logarithmic base calculation => gives the expected multiplier score (1.26)
b) after unlocking an achievement
step (a) should still stand / remains the same? correct? It should still be (1.26)
then the bonus should be triggered and the new value should be (1.26) + bonus
But from what I see it ignores the level cap adjustment (all together) and gives
a result of the default initial multiplier only (logarithmic base calculation), ignoring the level cap adjustment setting, and the bonus compensates to bring the value back to the initial setting.
----------------------------
If no modifications are done to the game:
no achievement triggered
level cap + base calculation = results to a value (A)
achievement triggered
level cap + base calculation + bonus = results to a value (B)
(A) should be different than (B) if a bonus is really applied correct?
But in reality, what I get is that (A) is equal to (B)
So either the bonus is not applied (I don't think is the case)... or the multiplier ignores the level cap and applies only the bonus.
edit: it could be related to the export/import saves
edit 2: never mind I found the conflicting code
It's inside passagedata pid="3321" name="score multiplier calc"
(set: $score_multiplier to (round: (100 * _score_multiplier_temp)) / 100)
conflicts with
(set: $score_multiplier to (round: (100 * $score_multiplier * (1 + _level_cap_adjustment))) / 100)
During the setup is used
(set: $score_multiplier to (round: (100 * $score_multiplier * (1 + _level_cap_adjustment))) / 100)
and then during the game play is ovewritten again from
(set: $score_multiplier to (round: (100 * _score_multiplier_temp)) / 100)
Don't really care if you want to fix the bugs in your code (lost enough time already...), but in case you want to fix the conflicting code...No, it is working for me. I did the exact same setup and got 1.26x, and then it went up to 1.38x due to 4 hidden achievements.
You started by telling me the whole system is bad, and then you modified the game code, and then now you are getting some unexpected values, and now you are telling me things are reverted, but I have no way to verify the state of your game, so I'm not going to spend anymore time investigating this unless more people report it.
(set: _a to 5.5772, _b to -1.4407, _c to -8.9769)
(set: _score_multiplier_temp to _a + _b * (log: $total_stats - _c))
(set: $score_multiplier to (round: (100 * _score_multiplier_temp)) / 100)
(if:$club_timer > 0)[(set:$score_multiplier to $score_multiplier + 0.25)]
(if:$potion_shop_max_action_point_purchased is "true")[(set:$score_multiplier to $score_multiplier - 0.05)]
(if:(a:"cherry pop","swirlin surprise") contains $current_zipple)[(set:$score_multiplier to $score_multiplier + 0.25)]
(if:(is_fem:) and not ($handbag is 0))[(set:$score_multiplier to $score_multiplier + ($handbag_xp_bonus / 100))]
(if: (pill:"Resistance") and (checkdm:$resistance_effect,"side effects","contains","xp penalty"))[
(set: _xp_penalty_count to (count: $resistance_effect's "side effects", "xp penalty"))
(set: $score_multiplier to (max:0,$score_multiplier - (_xp_penalty_count * 0.15)))
]
(set: _level_cap_adjustment to $stats_unobtainable * 0.03)
(set: $score_multiplier to (round: (100 * $score_multiplier * (1 + _level_cap_adjustment))) / 100)
(set: _a to 5.5772, _b to -1.4407, _c to -8.9769)
(set: _score_multiplier_temp to _a + _b * (log: $total_stats - _c))
(set: _level_cap_adjustment to $stats_unobtainable * 0.03)
(set: $score_multiplier to (round: (100 * _score_multiplier_temp * (1 + _level_cap_adjustment))) / 100)
(if:$club_timer > 0)[(set:$score_multiplier to $score_multiplier + 0.25)]
(if:$potion_shop_max_action_point_purchased is "true")[(set:$score_multiplier to $score_multiplier - 0.05)]
(if:(a:"cherry pop","swirlin surprise") contains $current_zipple)[(set:$score_multiplier to $score_multiplier + 0.25)]
(if:(is_fem:) and not ($handbag is 0))[(set:$score_multiplier to $score_multiplier + ($handbag_xp_bonus / 100))]
(if: (pill:"Resistance") and (checkdm:$resistance_effect,"side effects","contains","xp penalty"))[
(set: _xp_penalty_count to (count: $resistance_effect's "side effects", "xp penalty"))
(set: $score_multiplier to (max:0,$score_multiplier - (_xp_penalty_count * 0.15)))
]