AmorousApe

Newbie
May 16, 2018
48
38
I am bit confuse by what you mean tweaks I found the file but I don't know how to edit it do you delete certain lines or add certain lines or is their a guide some where ?
Notepad++ can be used to view the code properly. Then you could just look for the line of code you need to replace with find. Start off simple until you get a good feel of everything, and always remember to backup if you are going to do any modding!
 
  • Like
Reactions: kailius

mamaboiii

Active Member
Oct 13, 2018
519
1,515
I will add most of my own tweaks and those, that were made in the past in this forum in the next days.
I appreciate any feedback regarding the explanation (if anything is unclear) or structure of this collection. (Drop me a pm or post it here)
PLACEHOLDER

Code Tweak Collection

A collection of tweaks for the game, that mostly change small things. This post contains an overview about each tweak, further details are in the README in the collection itself.
I will try to keep it up to date with updates of the game and add new tweaks when they come up here. A general introduction to modding the game (limited to the plugin files that can be edited with a text editor) can be found here on the next page.
You don't have permission to view the spoiler content. Log in or register now.
 
Last edited:
  • Like
Reactions: exaltu

mamaboiii

Active Member
Oct 13, 2018
519
1,515
This is a placeholder for the modding FAQ.
I'll edit these two posts, but this way they are next to each other (or not due to new page -.-)
I'm still not sure about the structure so it may change...

PLACEHOLDER/WIP

Modding Guide

Modding this game, at least as far as I will cover here, is extremely easy for anyone with some coding experience and quite doable for almost anybody else.
While this is a collection of individual tweaks, this post is meant to be a place collecting more general information about modding this game.
  • The introduction is for anybody without any prior knowledge to lay down the foundation.
  • The basics will probably be expanded over time as more questions come up and I find that stuff important generally. It will cover the fundamental structure of the (probably) most interesting parts of the code structure. This should help cover most of the general questions that come up.
  • The guides itself will go more into detail about certain parts for example passives. For the specific stuff, have look into the tweak collection.
  • The 'knowledge dump' will contain rather specific topics that may go further into detail than generally needed, will be less structured and generally just records of past experiences.

You don't have permission to view the spoiler content. Log in or register now.




Modding F.A.Q.

This probably intersects with parts from the guide and thus I'll put both in one post.

You don't have permission to view the spoiler content. Log in or register now.
 
Last edited:

mamaboiii

Active Member
Oct 13, 2018
519
1,515
it worked for me, I went to the file, clicked the right button, pressed edit, opened it in the notepad, pressed ctrl f, wrote as it was taught and just saved.
I'm looking now for a file to edit and try to start the game with the sexual skills already activated, or to get them in an easier way.
You find the conditions for the sex skills in the RemtairyKarrynSex.js file starting line 418 (v0.4u). Look for the functions starting with showEval_, they determine if the skill can be chosen. The sex skills are unlocked with the passives. Which passives you need is mostly stated in the first line of the function:
JavaScript:
Game_Actor.prototype.showEval_karrynKissSkill = function() {
    let hasPassive = this.hasPassive(PASSIVE_KISS_PEOPLE_TWO_ID);
    if(!hasPassive) return false;
    
    let bodySlotAvailable = this.canGetKissed(KISS_LVL_ONE);
    let isThereValidTarget = this.isThereValidTargetForKiss();
    let meetDesireReq = this.canGetKissed(KISS_LVL_ONE);
    
    return isThereValidTarget && bodySlotAvailable && meetDesireReq;
};
Here you need the PASSIVE_KISS_PEOPLE_TWO_ID passive. You can then go to the file RemtairyNewPassives.js and search for that passive. You can then edit the requirements to obtain that passive to get it easier. For example you could change the values for unlocking the kissing passive to >= 0 and get the passive after any battle instantly in the following line:
JavaScript:
else if(!this.hasPassive(PASSIVE_KISS_PEOPLE_TWO_ID) && this._recordKissedPeople >= 20 && this._recordMaxReachedMouthDesireCount >= 2) {
        this.learnNewPassive(PASSIVE_KISS_PEOPLE_TWO_ID)
    }
 
  • Like
Reactions: vt57 and marmlade

kailius

Member
Apr 21, 2017
440
217
Dunno, if that's the right word, but I call my little changes in the code 'tweaks' because they are so small, they don't deserve the title 'mod' ;)
But yeah, you open the files I mention with any text editor. You can use the standard one, but I recommend something more advanced like Notepad++ or VSCode if only for syntax highlighting. But the choice is yours..
Most of my tweaks only consist of changing/deleting/adding a few lines. I try to find the simplest way for you guys to replicate, not the most efficient way. So in the first tweak of the post you are referring to, the easiest way to see what you have to do is read the instruction (duh :D) and compare it to the code you see. The code I pasted contains two lines which are different to the code you will see in your file. They contain a '//' in front (also notice the colour change). Change your lines so they look like the code I posted and it should work. Instead of commenting out you can always delete those lines if you wish.
yeah that's why I did but I miss those lines you put on your my bad >_<
 

SimoB

New Member
Jun 7, 2017
5
2
Wanting to check this; I looked at this games page on Remtairy's website ( ). Two images on the page show scenes that I have never seen. One is Karryn in the toilet up against the urinal and the other is Karryn in bed. I believe that the toilet one is a planned scene that just isn't in the game yet, will probably come with the next main version (0.5). However I am not aware of the second scene of Karryn in a bed. Does anybody know what this is?
 

blackiron1

Newbie
May 16, 2019
26
50
Wanting to check this; I looked at this games page on Remtairy's website ( ). Two images on the page show scenes that I have never seen. One is Karryn in the toilet up against the urinal and the other is Karryn in bed. I believe that the toilet one is a planned scene that just isn't in the game yet, will probably come with the next main version (0.5). However I am not aware of the second scene of Karryn in a bed. Does anybody know what this is?
Both have been there for a while I believe. The toilet one I'm pretty certain is the defeat DP gangbang scene for floor 2 that'll be added with the update. The other one I'm not sure if they commented about it being in the update too or not.
 

HoneyTentacle

Newbie
Dec 8, 2019
37
30
Has anyone managed to change the code so that Karryn stays in a battle until all the enemies have `$gameTroop.isAllOutOfEjaculationStock()` when she's out of stamina and energy? I cannot for the life of me figure out what to change. I swear it's hidden in the weird HTML-esque tags in the JSON files or something. I just want sex battles to last longer like they should!
 

TessSadist

Well-Known Member
Donor
Game Developer
Aug 4, 2019
1,298
5,524
I can tell this isn't my kind of game, but I still want to say that's it's really well done and interesting! I love the role playing style stat building and overall design!
 

pafu pafu rabu

New Member
Apr 27, 2018
8
9
Is there any way to undo an edict? I thought you'd be able to pick the Bait the Goblins trait alongside something like Demean the Goblins, and I eventually got the Goblin-sexual trait, but turns out you can't. What value would I have to edit to undo it if able?
 
  • Like
Reactions: rockon123

blackiron1

Newbie
May 16, 2019
26
50
Damn, I hope the weekly update is late cause we get update. I will have a nice weekend if so. Let's hope for the best!
Same. I was expecting next week would probably be the update release, but it'd be awesome if we got surprised with it this week.
 

yudas51

Member
Dec 25, 2019
210
271
There is no inconsistency anywhere and if you do not like "rape" scenes then i can recommend you one simple trick as they say on the internet - do not play this game, case solved.
It is annoying that there is no struggle mechanic at all. And I wonder how you even force a trained woman with a halberd to give you a rimjob without knocking her down first.
Also it is hardly rape if you have to up her desire for that particular scene first. Maybe a good design would be for her to become dominant and change stances herself.
 
Jun 25, 2018
301
409
It is annoying that there is no struggle mechanic at all. And I wonder how you even force a trained woman with a halberd to give you a rimjob without knocking her down first.
Also it is hardly rape if you have to up her desire for that particular scene first. Maybe a good design would be for her to become dominant and change stances herself.
You can think of desire as more the body's reactions to the stimulus. Body's Reaction vs. Willpower/Choice are two different things.
 

zhailzur

Newbie
Feb 20, 2018
29
94
Damn, I hope the weekly update is late cause we get update. I will have a nice weekend if so. Let's hope for the best!
Hopefully! Although it does seem that Remtairy posts updates on either Mondays or Wednesdays typically, so it might just be a Wednesday update week.
 
4.60 star(s) 390 Votes