I did though, there isn't anything that specifically mentions giving yourself more money, unless I somehow read-over it. I've looked a couple of times too
my appoligies, the link was dead. quoted from discord pin in modding-general.
To mod Daily Income or Mod Gold
1. Goto \www\js\plugins
2. Open RemtairyPrison.js (Use notepad++ for best results.)
3. Search for Game_Actor.prototype.additionalIncome = function()
(currently line 1919as of Release 1.0.5f)
4. Goto the line under it that says let value = 0;
5. Change this value to how much extra you want to get each day. (it will be modified by edicts.) I don't suggest anything to high, as i do not know what will happen if you go over the 99,999,999 limit Game_Party.prototype.additionalIncome = function() {
return $gameActors.actor(ACTOR_KARRYN_ID).additionalIncome();
};
Game_Actor.prototype.additionalIncome = function() {
let value = 0; //YOU WANT TO CHANGE THIS LINE
value += this.titlesFlatIncome();
value += this.variablePrisonIncome();
return value;
};