tetrayrok

Member
Apr 2, 2021
118
118
Is it possible to tweak the code so the order will never be 0?
Yes. The file is RemtairyPrison.js.
Code:
Game_Party.prototype.setOrderChangePerDay = function(value) {

    this._orderChangePerDay = value;

    $gameVariables.setValue(VARIABLE_CONTROL_ID, this.orderChangeValue());

 

    $gameScreen.setMapInfoRefreshNeeded();

};
this function.

Code:
Game_Party.prototype.setOrderChangePerDay = function(value) {

    this._orderChangePerDay = 100;

    $gameVariables.setValue(VARIABLE_CONTROL_ID, this.orderChangeValue());

 

    $gameScreen.setMapInfoRefreshNeeded();

};
change it into this and this should set your order to 100. I haven't tested it yet though.

Edit: I just tested it and it works. Enjoy.
 
Last edited:

Hyperkid00

Newbie
May 20, 2018
54
18
Yes. The file is RemtairyPrison.js.

Game_Party.prototype.setOrderChangePerDay = function(value) {
this._orderChangePerDay = value;
$gameVariables.setValue(VARIABLE_CONTROL_ID, this.orderChangeValue());

$gameScreen.setMapInfoRefreshNeeded();
};

this function.

Game_Party.prototype.setOrderChangePerDay = function(value) {
this._orderChangePerDay = 100;
$gameVariables.setValue(VARIABLE_CONTROL_ID, this.orderChangeValue());

$gameScreen.setMapInfoRefreshNeeded();
};

change it into this and this should set your order to 100. I haven't tested it yet though.
Is it possible to halt the order in the low order section for max subsidies?
 

ArchDevilCro

Newbie
Aug 26, 2018
53
27
There is bug with Charm and items to equip, i have currently 25 charm, (only boost is well rested stats +6%) and i can not equip ANY item, thou it says requarement are charm 18, anybody have same problem?
 

OffPathGames

Member
Game Developer
Apr 23, 2020
212
184
i meant like how do i edit the script for how much pleasure damage the enemies take
I would just use the RPG Maker cheat engine to update your charm stat. You can also use CC Mod to increase some stats. If you want to get into the code go to the RemtairyKarrynSex.js file and look for the section:

///////////////////
// Damage formula
//////////////////////

You can edit whatever you want in there. There are comments to explain most of the sections.

You can also just edit the base damage numbers for the cock petting or vaginal skills at the top. ex:
const BASEDMG_PETTING_COCK = 4;
 
4.60 star(s) 439 Votes