PSTP was a really good game. How many people are going to play "Paizuri Slave Training Program" and say "wow there sure wasn't enough paizuri in this game" ?
However, there were some quality of life issues that bothered the crap out of me. I hated the 'game' portion of this game - there was no need to turn this into a slogging grindfest with all the carpal-inducing clicking and waiting on stupid timers, so I have some tips to fix that which include:
keep auto going even after skipping, increasing resource storage/gain rate.
================
1) KEEP AUTO EVEN AFTER SKIPPING
Go to [base game directory]/js/plugins/
This is where all the game code is. Thankfully it's fully intact and even has the Japanese comments still there if you are interested in reading those sorts of things.
By default, the game cancels auto whenever you press the skip button (CTRL). Stupid, how the fuck are you supposed to fap when it keeps doing that.
Open MessageSkip.js. Go to line 551 and comment out the if statement: if (this._skipFlg) this._autoFlg = false;
(image)
View attachment 4443039
2a) INCREASE COMPOUND GAIN RATE and MAX COMPOUND STORAGE (step 1 of 2)
Open Game_Train.js. Near the top of the file, change maxValues from 50, 30, 20 to 1000, 1000, 1000 (or whatever high number you want to set the max storage to).
A few lines under that, change efficiencyValues from 5, 20, 60 to 1, 1, 1.
(image)
View attachment 4443048
These fun new values will be overwritten if you research the greater storage and greater efficiency recipes, hence why there is a second step in 2b.
2b) INCREASE COMPOUND GAIN RATE and MAX COMPOUND STORAGE (step 2 of 2)
Go to [base game directory]/data/
Open ResearchMeta.json.
On the last 6 lines, change the values to 1, 1, 1 and 1000, 1000, 1000 (or whatever you want your max storage to be after researching those upgraded recipes).
It will look like: (image)
View attachment 4443072