EDIT: Use a file editor like Notepad++
You must be registered to see the links
. Then make sure the setting
replace with space is set (super easy to do):
You must be registered to see the links
.. That's it, now you're ready to edit any RENPY files in the future. A good long term investment if you play a lot of renpy games.
HOW TO MODIFY THE GAME TO LESSEN THE GRIND.
Earn more money from work.
Earn more allure from sexual tension.
Earn more opinion & interest.
it ups the value a little bit, so you can still play the game as intended, but it all should be faster.
1. First get Unren, which allows you to unpack the games files. Unpack using option 1. Then option 2.
https://f95zone.to/threads/unren-ba...compiler-console-developer-menu-enabler.3083/
2. Edit the following files values:
Add more energy when rest in hotel bed
file: ch_p.rpy
add the underlined line:
Player.Energy.Add(50)
def PlayerRest():
Player.State = States.Sleeping
GData.ProgressTime()
Player.State = 0
Player.Energy.Add(50)
Earn more money from work (I added an extra 10 dollars as you can see)
File: BehaviorClass.rpy
Replace this:
earn += Work.CurPosition.Wage
With This:
earn += Work.CurPosition.Wage + 10
Earn more Allure from each successful sexual tension gain
File: GameObject.rpy
Replace this:
With this:
Earn more Interest points, but THIS IS UNTESTED. I think interests help opinion go up faster. I'm not sure yet. But it should work.
File: PersonClass.rpy
Replace This:
define InterestModifier = 25.0
With This:
define InterestModifier = 50.0
This is the code where opinion is gained for reference, you don't have to do anything here, it's just reference. As you can see it takes Interest into account, so modifying Interests up above should help opinion go up.
File: PersonClass.rpy
Relations[self.ObjName].opinion.Add(react * InterestModifier)
Figuring out how to cheat in code was much easier than trying to figure out the game, jesus.